]> _ Git - psq.git/commitdiff
flowpaper licence
authorLouis Jeckel <louis.jeckel@outlook.cm>
Thu, 27 Aug 2020 11:33:25 +0000 (13:33 +0200)
committerLouis Jeckel <louis.jeckel@outlook.cm>
Thu, 27 Aug 2020 11:33:25 +0000 (13:33 +0200)
config/flowpaper.php [new file with mode: 0644]
public/js/flowpaper/FlowPaperViewer.js
public/js/flowpaper/flowpaper.js
public/js/flowpaper/flowpaper_handlers.js
public/js/flowpaper/flowpaper_handlers_debug.js
public/js/flowpaper/jquery.extensions.min.js
public/js/flowpaper/jquery.min.js
resources/views/flowpaper/view.blade.php
routes/web.php

diff --git a/config/flowpaper.php b/config/flowpaper.php
new file mode 100644 (file)
index 0000000..246d7c7
--- /dev/null
@@ -0,0 +1,5 @@
+<?php
+
+return [
+    'key' => '$082fff6605b1f490caa',
+];
index d7797993417477343ea1c5cb7f2c24f211c222fc..daf9f8910d1c8b404de6b6111d923f8f165789e6 100644 (file)
@@ -1 +1 @@
-var Mouse={x:0,y:0,refresh:function(e){if(e&&!this.down&&!jQuery(e.target).hasClass("flowpaper_zoomSlider")){return;}var posx=0,posy=0;if(!e){e=window.event;}if(e.pageX||e.pageY){posx=e.pageX;posy=e.pageY;}else{if(e.clientX||e.clientY){posx=e.clientX+document.body.scrollLeft+document.documentElement.scrollLeft;posy=e.clientY+document.body.scrollTop+document.documentElement.scrollTop;}}this.x=posx;this.y=posy;}};var mouseMoveHandler=document.onmousemove||function(){};document.onmousemove=function(e){if(!e){e=window.event;}if(e&&e.which==1){Mouse.down=true;}Mouse.refresh(e);};var MPosition={get:function(obj){var curleft=curtop=0;if(obj.offsetParent){do{curleft+=obj.offsetLeft;curtop+=obj.offsetTop;}while(obj=obj.offsetParent);}return[curleft,curtop];}};var Slider=function(wrapper,options){if(typeof wrapper=="string"){wrapper=document.getElementById(wrapper);}if(!wrapper){return;}var handle=wrapper.getElementsByTagName("div")[0];if(!handle||handle.className.search(/(^|\s)flowpaper_handle(\s|$)/)==-1){return;}this.init(wrapper,handle,options||{});this.setup();};Slider.prototype={init:function(wrapper,handle,options){this.wrapper=wrapper;this.handle=handle;this.options=options;this.value={current:options.value||0,target:options.value||0,prev:-1};this.disabled=options.disabled||false;this.steps=options.steps||0;this.snapping=options.snapping||false;this.speed=options.speed||5;this.callback=options.callback||null;this.animation_callback=options.animation_callback||null;this.bounds={pleft:options.pleft||0,left:0,pright:-(options.pright||0),right:0,width:0,diff:0};this.offset={wrapper:0,mouse:0,target:0,current:0,prev:-9999};this.dragging=false;this.tapping=false;},setup:function(){var self=this;this.wrapper.onselectstart=function(){return false;};this.handle.onmousedown=function(e){self.preventDefaults(e,true);this.focus();self.handleMouseDownHandler(e);};this.wrapper.onmousedown=function(e){self.preventDefaults(e);self.wrapperMouseDownHandler(e);};var mouseUpHandler=document.onmouseup||function(){};if(document.addEventListener){document.addEventListener("mouseup",function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}});}else{document.onmouseup=function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}};}var resizeHandler=document.onresize||function(){};window.onresize=function(e){resizeHandler(e);self.setWrapperOffset();self.setBounds();};this.setWrapperOffset();if(!this.bounds.pleft&&!this.bounds.pright){this.bounds.pleft=MPosition.get(this.handle)[0]-this.offset.wrapper;this.bounds.pright=-this.bounds.pleft;}this.setBounds();this.setSteps();this.interval=setInterval(function(){self.animate();},100);self.animate(false,true);},setWrapperOffset:function(){this.offset.wrapper=MPosition.get(this.wrapper)[0];},setBounds:function(){this.bounds.left=this.bounds.pleft;this.bounds.right=this.bounds.pright+this.wrapper.offsetWidth;this.bounds.width=this.bounds.right-this.bounds.left;this.bounds.diff=this.bounds.width-this.handle.offsetWidth;},setSteps:function(){if(this.steps>1){this.stepsRatio=[];for(var i=0;i<=this.steps-1;i++){this.stepsRatio[i]=i/(this.steps-1);}}},disable:function(){this.disabled=true;this.handle.className+=" disabled";},enable:function(){this.disabled=false;this.handle.className=this.handle.className.replace(/\s?disabled/g,"");},handleMouseDownHandler:function(e){if(Mouse){Mouse.down=true;Mouse.refresh(e);}var self=this;this.startDrag(e);this.cancelEvent(e);},wrapperMouseDownHandler:function(e){this.startTap();},documentMouseUpHandler:function(e){this.stopDrag();this.stopTap();if(Mouse){Mouse.down=false;}},startTap:function(target){if(this.disabled){return;}if(target===undefined){target=Mouse.x-this.offset.wrapper-this.handle.offsetWidth/2;}this.setOffsetTarget(target);this.tapping=true;},stopTap:function(){if(this.disabled||!this.tapping){return;}this.setOffsetTarget(this.offset.current);this.tapping=false;this.result();},startDrag:function(e){if(!e){e=window.event;}if(this.disabled){return;}this.offset.mouse=Mouse.x-MPosition.get(this.handle)[0];this.dragging=true;if(e.preventDefault){e.preventDefault();}},stopDrag:function(){if(this.disabled||!this.dragging){return;}this.dragging=false;this.result();},feedback:function(){var value=this.value.current;if(this.steps>1&&this.snapping){value=this.getClosestStep(value);}if(value!=this.value.prev){if(typeof this.animation_callback=="function"){this.animation_callback(value);}this.value.prev=value;}},result:function(){var value=this.value.target;if(this.steps>1){value=this.getClosestStep(value);}if(typeof this.callback=="function"){this.callback(value);}},animate:function(onMove,first){if(onMove&&!this.dragging){return;}if(this.dragging){this.setOffsetTarget(Mouse.x-this.offset.mouse-this.offset.wrapper);}this.value.target=Math.max(this.value.target,0);this.value.target=Math.min(this.value.target,1);this.offset.target=this.getOffsetByRatio(this.value.target);if(!this.dragging&&!this.tapping||this.snapping){if(this.steps>1){this.setValueTarget(this.getClosestStep(this.value.target));}}if(this.dragging||first){this.value.current=this.value.target;}this.slide();this.show();this.feedback();},slide:function(){if(this.value.target>this.value.current){this.value.current+=Math.min(this.value.target-this.value.current,this.speed/100);}else{if(this.value.target<this.value.current){this.value.current-=Math.min(this.value.current-this.value.target,this.speed/100);}}if(!this.snapping){this.offset.current=this.getOffsetByRatio(this.value.current);}else{this.offset.current=this.getOffsetByRatio(this.getClosestStep(this.value.current));}},show:function(){if(this.offset.current!=this.offset.prev){this.handle.style.left=String(this.offset.current)+"px";this.offset.prev=this.offset.current;}},setValue:function(value,snap){this.setValueTarget(value);if(snap){this.value.current=this.value.target;}},setValueTarget:function(value){this.value.target=value;this.offset.target=this.getOffsetByRatio(value);},setOffsetTarget:function(value){this.offset.target=value;this.value.target=this.getRatioByOffset(value);},getRatioByOffset:function(offset){return(offset-this.bounds.left)/this.bounds.diff;},getOffsetByRatio:function(ratio){return Math.round(ratio*this.bounds.diff)+this.bounds.left;},getClosestStep:function(value){var k=0;var min=1;for(var i=0;i<=this.steps-1;i++){if(Math.abs(this.stepsRatio[i]-value)<min){min=Math.abs(this.stepsRatio[i]-value);k=i;}}return this.stepsRatio[k];},preventDefaults:function(e,selection){if(!e){e=window.event;}if(e.preventDefault){e.preventDefault();}if(selection&&document.selection){document.selection.empty();}},cancelEvent:function(e){if(!e){e=window.event;}if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;}}};var J,FLOWPAPER=window.FLOWPAPER?window.FLOWPAPER:window.FLOWPAPER={};FLOWPAPER.Oj=function(){var f=[];return{Vq:function(c){f.push(c);},notify:function(c,d){for(var e=0,g=f.length;e<g;e++){var h=f[e];if(h[c]){h[c](d);}}}};}();function M(f){FLOWPAPER.Oj.notify("warn",f);}function O(f,c,d,e){try{throw Error();}catch(g){}FLOWPAPER.Oj.notify("error",f);d&&c&&(e?jQuery("#"+d).trigger(c,e):jQuery("#"+d).trigger(c));throw Error(f);}FLOWPAPER.Lk={init:function(){"undefined"!=typeof eb&&eb||(eb={});var f=navigator.userAgent.toLowerCase(),c=location.hash.substr(1),d=!1,e="";0<=c.indexOf("mobilepreview=")&&(d=!0,e=c.substr(c.indexOf("mobilepreview=")).split("&")[0].split("=")[1]);var g;try{g="ontouchstart" in document.documentElement;}catch(p){g=!1;}!g&&(f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i))&&(d=!0);c=eb;g=/win/.test(f);var h=/mac/.test(f),m;if(!(m=d)){try{m="ontouchstart" in document.documentElement;}catch(p){m=!1;}}c.platform={win:g,mac:h,touchdevice:m||f.match(/touch/i)||navigator.Cb||navigator.msPointerEnabled,ios:d&&("ipad"==e||"iphone"==e)||f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i),android:d&&"android"==e||-1<f.indexOf("android"),Kd:d&&("ipad"==e||"iphone"==e)||navigator.userAgent.match(/(iPad|iPhone);.*CPU.*OS 6_\d/i),iphone:d&&"iphone"==e||f.match(/iphone/i)||f.match(/ipod/i),ipad:d&&"ipad"==e||f.match(/ipad/i),winphone:f.match(/Windows Phone/i)||f.match(/iemobile/i)||f.match(/WPDesktop/i),hq:f.match(/Windows NT/i)&&f.match(/ARM/i)&&f.match(/touch/i),km:navigator.Cb||navigator.msPointerEnabled,blackberry:f.match(/BlackBerry/i)||f.match(/BB10/i),webos:f.match(/webOS/i),jn:-1<f.indexOf("android")&&!(jQuery(window).height()<jQuery(window).width()),mobilepreview:d,Ya:window.devicePixelRatio?window.devicePixelRatio:1,Yn:"undefined"!==typeof document&&!!document.fonts};d=eb;e=document.createElement("div");e.innerHTML="000102030405060708090a0b0c0d0e0f";d.be=e;eb.platform.touchonlydevice=eb.platform.touchdevice&&(eb.platform.android||eb.platform.ios||eb.platform.blackberry||eb.platform.webos)||eb.platform.winphone||eb.platform.hq;eb.platform.lb=eb.platform.touchonlydevice&&(eb.platform.iphone||eb.platform.jn||eb.platform.blackberry);eb.platform.ios&&(d=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/),null!=d&&1<d.length?(eb.platform.iosversion=parseInt(d[1],10),eb.platform.Kd=6<=eb.platform.iosversion):eb.platform.Kd=!0);eb.browser={version:(f.match(/.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],Kb:(f.match(/.+?(?:version|chrome|firefox|opera|msie|OPR)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],safari:(/webkit/.test(f)||/applewebkit/.test(f))&&!/chrome/.test(f),opera:/opera/.test(f),msie:/msie/.test(f)&&!/opera/.test(f)&&!/applewebkit/.test(f),ef:("Netscape"==navigator.appName&&null!=/Trident\/.*rv:([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)||0<f.indexOf("edge/"))&&!/opera/.test(f),mozilla:/mozilla/.test(f)&&!/(compatible|webkit)/.test(f),chrome:/chrome/.test(f),lh:window.innerHeight>window.innerWidth};eb.browser.detected=eb.browser.safari||eb.browser.opera||eb.browser.msie||eb.browser.mozilla||eb.browser.seamonkey||eb.browser.chrome||eb.browser.ef;eb.browser.detected&&eb.browser.version||(eb.browser.chrome=!0,eb.browser.version="500.00");if(eb.browser.msie){var f=eb.browser,l;try{l=!!new ActiveXObject("htmlfile");}catch(p){l=!1;}f.Gr=l&&"Win64"==navigator.platform&&document.documentElement.clientWidth==screen.width;}eb.browser.version&&1<eb.browser.version.match(/\./g).length&&(eb.browser.version=eb.browser.version.substr(0,eb.browser.version.indexOf(".",eb.browser.version.indexOf("."))));eb.browser.Kb&&1<eb.browser.Kb.match(/\./g).length&&(eb.browser.Kb=eb.browser.Kb.substr(0,eb.browser.Kb.indexOf(".",eb.browser.Kb.indexOf("."))));l=eb.browser;var f=!eb.platform.touchonlydevice||eb.platform.android&&!window.annotations||eb.platform.Kd&&!window.annotations||eb.platform.ios&&6.99<=eb.platform.iosversion&&!window.annotations,d=eb.browser.mozilla&&4<=eb.browser.version.split(".")[0]||eb.browser.chrome&&535<=eb.browser.version.split(".")[0]||eb.browser.msie&&10<=eb.browser.version.split(".")[0]||eb.browser.safari&&534<=eb.browser.version.split(".")[0],e=document.documentElement.requestFullScreen||document.documentElement.mozRequestFullScreen||document.documentElement.webkitRequestFullScreen,k;try{k=!!window.WebGLRenderingContext&&!!document.createElement("canvas").getContext("experimental-webgl");}catch(p){k=!1;}l.capabilities={yb:f,gq:d,ps:e,wq:k};if(eb.browser.msie){k=eb.browser;var n;try{null!=/MSIE ([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)&&(rv=parseFloat(RegExp.$1)),n=rv;}catch(p){n=-1;}k.version=n;}}};function P(f){f.getContext("2d").clearRect(0,0,f.width,f.height);}function Q(){for(var f=eb.Sg.innerHTML,c=[],d=0;"\n"!=f.charAt(d)&&d<f.length;){for(var e=0,g=6;0<=g;g--){" "==f.charAt(d)&&(e|=Math.pow(2,g)),d++;}c.push(String.fromCharCode(e));}return c.join("");}function aa(f,c,d){this.F=f;this.Gd=c;this.containerId=d;this.scroll=function(){var c=this;jQuery(this.Gd).bind("mousedown",function(d){if(c.F.Xc||f.ni&&f.ni()||jQuery("*:focus").hasClass("flowpaper_textarea_contenteditable")||jQuery("*:focus").hasClass("flowpaper_note_textarea")){return d.returnValue=!1,!0;}if(c.F.mc){return !0;}c.Mp(c.Gd);c.oj=d.pageY;c.nj=d.pageX;return !1;});jQuery(this.Gd).bind("mousemove",function(d){return c.Kn(d);});this.F.Am||(jQuery(this.containerId).bind("mouseout",function(d){c.no(d);}),jQuery(this.containerId).bind("mouseup",function(){c.Wl();}),this.F.Am=!0);};this.Kn=function(c){if(!this.F.Pi){return !0;}this.F.rk!=this.Gd&&(this.oj=c.pageY,this.nj=c.pageX,this.F.rk=this.Gd);this.scrollTo(this.nj-c.pageX,this.oj-c.pageY);this.oj=c.pageY;this.nj=c.pageX;return !1;};this.Mp=function(c){this.F.Pi=!0;this.F.rk=c;jQuery(this.Gd).removeClass("flowpaper_grab");jQuery(this.Gd).addClass("flowpaper_grabbing");};this.no=function(c){0==jQuery(this.F.L).has(c.target).length&&this.Wl();};this.Wl=function(){this.F.Pi=!1;jQuery(this.Gd).removeClass("flowpaper_grabbing");jQuery(this.Gd).addClass("flowpaper_grab");};this.scrollTo=function(c,d){var h=jQuery(this.containerId).scrollLeft()+c,m=jQuery(this.containerId).scrollTop()+d;jQuery(this.containerId).scrollLeft(h);jQuery(this.containerId).scrollTop(m);};}function ba(f){f=f.split(",").map(function(c){a:if(/^-?\d+$/.test(c)){c=parseInt(c,10);}else{var d;if(d=c.match(/^(-?\d+)(-|\.\.\.?|\u2025|\u2026|\u22EF)(-?\d+)$/)){c=d[1];var e=d[2];d=d[3];if(c&&d){c=parseInt(c);d=parseInt(d);var g=[],h=c<d?1:-1;if("-"==e||".."==e||"\u2025"==e){d+=h;}for(;c!=d;c+=h){g.push(c);}c=g;break a;}}c=[];}return c;});return 0===f.length?[]:1===f.length?Array.isArray(f[0])?f[0]:f:f.reduce(function(c,d){Array.isArray(c)||(c=[c]);Array.isArray(d)||(d=[d]);return c.concat(d);});}function ca(f,c,d,e){var g=f.createElement("node");g.setAttribute("pageNumber",da(c,e));g.setAttribute("title",ea(c.title));d.appendChild(g);if(c.items&&c.items.length){for(d=0;d<c.items.length;d++){ca(f,c.items[d],g,e);}}}function da(f,c){destRef="string"===typeof f.dest?c.destinations[f.dest][0]:null!=f&&null!=f.dest?f.dest[0]:null;return destRef instanceof Object?c.yg[destRef.num+" "+destRef.gen+" R"]+1:destRef+1;}function fa(f,c){if(eb.platform.Yn){var d=new FontFace(f,"url(data:"+c+")",{});document.fonts.add(d);}else{d='@font-face { font-family:"'+f+'";src:'+("url("+c+");")+"}";if(window.styleElement){e=window.styleElement;}else{var e=window.styleElement=document.createElement("style");e.id="FLOWPAPER_FONT_STYLE_TAG";document.documentElement.getElementsByTagName("head")[0].appendChild(e);}e=e.sheet;e.insertRule(d,e.cssRules.length);}}function ha(f,c){var d=new XMLHttpRequest;d.onreadystatechange=function(){if(4==d.readyState&&200==d.status){var e=URL.createObjectURL(this.response);new Image;c(e);}};d.open("GET",f,!0);d.responseType="blob";d.send();}String.format=function(){for(var f=arguments[0],c=0;c<arguments.length-1;c++){f=f.replace(new RegExp("\\{"+c+"\\}","gm"),arguments[c+1]);}return f;};String.prototype.endsWith=function(f){return this.substr(this.length-f.length)===f;};String.prototype.startsWith=function(f){return this.substr(0,f.length)===f;};jQuery.fn.mr=function(f,c){return this.each(function(){jQuery(this).fadeIn(f,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(c)?eval(c)():"";});});};jQuery.fn.Qn=function(f){this.each(function(){eb.browser.msie?eval(f)():jQuery(this).fadeOut(400,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(f)?eval(f)():"";});});};jQuery.fn.yh=function(f){this.each(function(){jQuery(this).data("retry")?jQuery(this).data("retry",parseInt(jQuery(this).data("retry"))+1):jQuery(this).data("retry",1);3>=jQuery(this).data("retry")?this.src=this.src+(-1<this.src.indexOf("?")?"&":"?")+"t="+(new Date).getTime():f();});};jQuery.fn.Jr=function(f,c){if(0<=jQuery.fn.jquery.indexOf("1.8")){try{if(void 0===jQuery._data(this[0],"events")){return !1;}}catch(g){return !1;}var d=jQuery._data(this[0],"events")[f];if(void 0===d||0===d.length){return !1;}var e=0;}else{if(void 0===this.data("events")){return !1;}d=this.data("events")[f];if(void 0===d||0===d.length){return !1;}e=0;}for(;e<d.length;e++){if(d[e].handler==c){return !0;}}return !1;};jQuery.fn.qs=function(f){if(void 0===this.data("events")){return !1;}var c=this.data("events")[f];if(void 0===c||0===c.length){return !1;}for(var d=0;d<c.length;d++){jQuery(this).unbind(f,c[d].handler);}return !1;};jQuery.fn.Sr=function(){eb.browser.capabilities.yb?this.scrollTo(ce,0,{axis:"xy",offset:-30}):this.data("jsp").scrollToElement(ce,!1);};function ea(f){return f.split("").map(function(c){var d=c.charCodeAt(0);if(127<d){return c=d.toString(16),"\\u"+(Array(5-c.length).join("0")+c);}31>=d&&(c="");"\n"==c&&(c="");"\r"==c&&(c="");"\b"==c&&(c="");"\t"==c&&(c="");"\f"==c&&(c="");"\b"==c&&(c="");return c;}).join("");}jQuery.fn.we=function(f,c){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-right":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.unbind("mouseover");this.unbind("mouseout");eb.platform.touchonlydevice||(this.on("mouseover",function(c){jQuery(c.target).css({"border-right":String.format("{0}px solid {1}",f,"#DEDEDE")});}),this.on("mouseout",function(d){jQuery(d.target).css({"border-right":String.format("{0}px solid {1}",f,c)});}));};jQuery.fn.fj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-left":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-left":String.format("1px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-left":String.format("1px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.vd=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-left":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});d&&this.css({opacity:0.5});this.unbind("mouseover");this.unbind("mouseout");this.on("mouseover",function(c){d?jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#FFFFFF"),opacity:0.85}):jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(e.target).css({"border-left":String.format("{0}px solid {1}",f,c)});d&&jQuery(e.target).css({opacity:0.5});});};jQuery.fn.gj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-right":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-right":String.format("1px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-right":String.format("1px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.addClass5=function(f){return this[0].classList?(this[0].classList.add(f),this):this.addClass(f);};jQuery.fn.removeClass5=function(f){return this[0].classList?(this[0].classList.remove(f),this):this.addClass(f);};jQuery.fn.rc=function(){this.css({display:"none"});};jQuery.fn.xd=function(){this.css({display:"block"});};window.requestAnim=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(f){window.setTimeout(f,1000/60);};jQuery.fn.Hf=function(){var f=this.css("transform");return !f||"none"==f||"0px,0px"==f.translate&&1==parseFloat(f.scale)?!1:!0;};function ia(f,c){var d="0",e=f=f+"";if(null==d||1>d.length){d=" ";}if(f.length<c){for(var e="",g=0;g<c-f.length;g++){e+=d;}e+=f;}return e;}jQuery.fn.spin=function(f){this.each(function(){var c=jQuery(this),d=c.data();d.tj&&(d.tj.stop(),delete d.tj);!1!==f&&(d.tj=(new Spinner(jQuery.extend({color:c.css("color")},f))).spin(this));});return this;};jQuery.fn.zo=function(){var f=jQuery.extend({qk:"cur",kl:!1,speed:300},{kl:!1,speed:100});this.each(function(){var c=jQuery(this).addClass("harmonica"),d=jQuery("ul",c).prev("a");c.children(":last").addClass("last");jQuery("ul",c).each(function(){jQuery(this).children(":last").addClass("last");});jQuery("ul",c).prev("a").addClass("harFull");c.find("."+f.qk).parents("ul").show().prev("a").addClass(f.qk).addClass("harOpen");d.on("click",function(){jQuery(this).next("ul").is(":hidden")?jQuery(this).addClass("harOpen"):jQuery(this).removeClass("harOpen");f.kl?(jQuery(this).closest("ul").closest("ul").find("ul").not(jQuery(this).next("ul")).slideUp(f.speed).prev("a").removeClass("harOpen"),jQuery(this).next("ul").slideToggle(f.speed)):jQuery(this).next("ul").stop(!0).slideToggle(f.speed);return !1;});});};function ja(f){f=f.replace(/\\u([\d\w]{4})/gi,function(c,d){return String.fromCharCode(parseInt(d,16));});return f=unescape(f);}function ka(f,c){var d=jQuery("<ul>");jQuery.each(c,function(c,g){var h=jQuery("<li>").appendTo(d),m=jQuery(g).children("node");jQuery('<a class="flowpaper_accordionLabel flowpaper-tocitem" data-pageNumber="'+g.getAttribute("pageNumber")+'">').text(ja(g.getAttribute("title"))).appendTo(h);0<m.length&&ka(f,m).appendTo(h);});return d;}function R(f){f=parseInt(0==f.indexOf("#")?f.substr(1):f,16);return{r:f>>16,g:f>>8&255,b:f&255};}jQuery.Gf=function(f,c,d){f=f.offset();return{x:Math.floor(c-f.left),y:Math.floor(d-f.top)};};jQuery.fn.Gf=function(f,c){return jQuery.Gf(this.first(),f,c);};(function(f){f.fn.moveTo=function(c){return this.each(function(){var d=f(this).clone();f(d).appendTo(c);f(this).remove();});};})(jQuery);function la(f){return f.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,"").replace(/\s+/g," ");}function S(f){window.Lh||(window.Lh=1);if(!window.vk){var c=window,d=document.createElement("div");document.body.appendChild(d);d.style.position="absolute";d.style.width="1in";var e=d.offsetWidth;d.style.display="none";c.vk=e;}return f/(72/window.vk)*window.Lh;}function T(f){f=f.replace(/-/g,"-\x00").split(/(?=-| )|\0/);for(var c=[],d=0;d<f.length;d++){"-"==f[d]&&d+1<=f.length?(c[c.length]=-1*parseFloat(la(f[d+1].toString())),d++):c[c.length]=parseFloat(la(f[d].toString()));}return c;}function ma(f){this.source=f;this.volume=100;this.loop=!1;this.Vd=void 0;this.finish=!1;this.stop=function(){document.body.removeChild(this.Vd);};this.start=function(){if(this.finish){return !1;}this.Vd=document.createElement("embed");this.Vd.setAttribute("src",this.source);this.Vd.setAttribute("hidden","true");this.Vd.setAttribute("volume",this.volume);this.Vd.setAttribute("autostart","true");this.Vd.setAttribute("loop",this.loop);document.body.appendChild(this.Vd);};this.remove=function(){document.body.removeChild(this.Vd);this.finish=!0;};this.init=function(c,d){this.finish=!1;this.volume=c;this.loop=d;};}function na(f,c){jQuery("#"+f).hasClass("activeElement")||(jQuery(".activeElement:not(#"+f+")").removeClass("activeElement").find(".activeElement-label").remove(),jQuery("#"+f).hasClass("activeElement")||(jQuery("#"+f).addClass("activeElement").prepend('<span contenteditable="false" class="activeElement-label"><i class="activeElement-drag fa fa-arrows"></i><span class="activeElement-labeltext">Click to Zoom in and out. Double click to edit this page.</span><i style="margin-left:5px;" class="fa fa-cog activeElement-label-settingsCog"></i></span>'),jQuery("#"+f).data("hint-pageNumber",c)));}FLOWPAPER.Bj=function(f,c){if(0<f.indexOf("[*,2]")||0<f.indexOf("[*,1]")){var d=f.substr(f.indexOf("[*,"),f.indexOf("]")-f.indexOf("[*,")+1);return f.replace(d,ia(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}return 0<f.indexOf("[*,2,true]")?f.replace("_[*,2,true]",""):0<f.indexOf("[*,1,true]")?f.replace("_[*,1,true]",""):0<f.indexOf("[*,0,true]")?f.replace("_[*,0,true]",""):f;};FLOWPAPER.$n=function(){for(var f="",c=0;10>c;c++){f+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".charAt(Math.floor(62*Math.random()));}return f;};FLOWPAPER.Kr=function(f){return"#"!=f.charAt(0)&&"/"!=f.charAt(0)&&(-1==f.indexOf("//")||f.indexOf("//")>f.indexOf("#")||f.indexOf("//")>f.indexOf("?"));};FLOWPAPER.Zq=function(f,c,d,e,g,h,m){if(e<c){var l=c;c=e;e=l;l=d;d=g;g=l;}l=document.createElement("div");l.id=f+"_line";l.className="flowpaper_cssline flowpaper_annotation_"+m+" flowpaper_interactiveobject_"+m;f=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));l.style.width=f+"px";l.style.marginLeft=h;e=Math.atan((g-d)/(e-c));l.style.top=d+0.5*f*Math.sin(e)+"px";l.style.left=c-0.5*f*(1-Math.cos(e))+"px";l.style.MozTransform=l.style.WebkitTransform=l.style.msTransform=l.style.Cb="rotate("+e+"rad)";return l;};FLOWPAPER.$r=function(f,c,d,e,g,h){if(e<c){var m=c;c=e;e=m;m=d;d=g;g=m;}f=jQuery("#"+f+"_line");m=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));f.css("width",m+"px");e=Math.atan((g-d)/(e-c));f.css("top",d+0.5*m*Math.sin(e)+"px");f.css("left",c-0.5*m*(1-Math.cos(e))+"px");f.css("margin-left",h);f.css("-moz-transform","rotate("+e+"rad)");f.css("-webkit-transform","rotate("+e+"rad)");f.css("-o-transform","rotate("+e+"rad)");f.css("-ms-transform","rotate("+e+"rad)");};FLOWPAPER.jr=function(){eb.browser.mozilla?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_moz"):eb.browser.msie||eb.browser.ef?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_ie"):jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing");};FLOWPAPER.dr=function(){jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_moz");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_ie");};"use strict";function oa(){try{return new window.XMLHttpRequest;}catch(f){}}var pa="undefined"!==typeof window&&window.ActiveXObject?function(){var f;if(!(f=oa())){a:{try{f=new window.ActiveXObject("Microsoft.XMLHTTP");break a;}catch(c){}f=void 0;}}return f;}:oa;function qa(f,c){try{var d=pa();d.open("GET",f,!0);"responseType" in d&&(d.responseType="arraybuffer");d.overrideMimeType&&d.overrideMimeType("text/plain; charset=x-user-defined");d.onreadystatechange=function(){var e,g;if(4===d.readyState){if(200===d.status||0===d.status){g=e=null;try{e=d.response||d.responseText;}catch(h){g=Error(h);}c(g,e);}else{c(Error("Ajax error for "+f+" : "+this.status+" "+this.statusText),null);}}};d.send();}catch(e){c(Error(e),null);}}var ImagePageRenderer=window.ImagePageRenderer=function(){function f(c,d,e){this.P=c;this.config=d;this.Ld=d.jsonfile;this.jsDirectory=e;this.pageImagePattern=d.pageImagePattern;this.pageThumbImagePattern=d.pageThumbImagePattern;this.pageSVGImagePattern=d.pageSVGImagePattern;this.aj=d.pageHighResImagePattern;this.Ck=d.FontsToLoad;this.Ne=d.DisableOverflow;this.JSONPageDataFormat=this.ya=this.dimensions=null;this.Fa=null!=d.compressedJSONFormat?d.compressedJSONFormat:!0;this.S=null;this.Xb="pageLoader_[pageNumber]";this.fa="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Le=-1;this.xa=null;this.If=!1;this.he=this.sb=!0;this.zb=d.SVGMode;this.loadTestFont=atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==");}f.prototype={Ff:function(){return"ImagePageRenderer";},Ka:function(c){return c.F.I?c.F.I.W:"";},ub:function(c){return c.F.I.ro;},dispose:function(){jQuery(this.xa).unbind();this.xa.dispose();delete this.fc;this.fc=null;delete this.dimensions;this.dimensions=null;delete this.xa;this.xa=null;delete this.S;this.S=null;},initialize:function(c){var d=this;d.fc=c;d.Ya=eb.platform.Ya;d.Fa?d.JSONPageDataFormat={jf:"width",hf:"height",ze:"text",qb:"d",Bg:"f",lc:"l",Ab:"t",zd:"w",yd:"h"}:d.JSONPageDataFormat={jf:d.config.JSONPageDataFormat.pageWidth,hf:d.config.JSONPageDataFormat.pageHeight,ze:d.config.JSONPageDataFormat.textCollection,qb:d.config.JSONPageDataFormat.textFragment,Bg:d.config.JSONPageDataFormat.textFont,lc:d.config.JSONPageDataFormat.textLeft,Ab:d.config.JSONPageDataFormat.textTop,zd:d.config.JSONPageDataFormat.textWidth,yd:d.config.JSONPageDataFormat.textHeight};d.xa=new ra(d.P,d.Fa,d.JSONPageDataFormat,!0);jQuery.ajaxPrefilter(function(c,d,e){if(c.onreadystatechange){var f=c.xhr;c.xhr=function(){function d(){c.onreadystatechange(h,e);}var h=f.apply(this,arguments);h.addEventListener?h.addEventListener("readystatechange",d,!1):setTimeout(function(){var c=h.onreadystatechange;c&&(h.onreadystatechange=function(){d();c.apply(this,arguments);});},0);return h;};}});if(!eb.browser.msie&&!eb.browser.safari&&6>eb.browser.Kb){var e=jQuery.ajaxSettings.xhr;jQuery.ajaxSettings.xhr=function(){var c=e();c instanceof window.XMLHttpRequest&&c.addEventListener("progress",function(c){c.lengthComputable&&(c=c.loaded/c.total,jQuery("#toolbar").trigger("onProgressChanged",c));},!1);return c;};}jQuery("#"+d.P).trigger("onDocumentLoading");c=document.createElement("a");c.href=d.Ld;c.search+=0<c.search.length?"&":"?";c.search+="callback=?";d.Xq=!1;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.3});0<d.Ld.indexOf("{page}")?(d.va=!0,d.Qe({url:d.yf(null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10),dataType:d.config.JSONDataType,success:function(c){var e;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});if(c.e){var m=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML));c=jQuery.parseJSON(m.toString(CryptoJS.qc.cg));d.sf=!0;}if(0<c.length){d.S=Array(c[0].pages);d.qa=c[0].detailed;for(m=0;m<c.length;m++){d.S[m]=c[m],d.S[m].loaded=!0;}for(m=0;m<d.S.length;m++){null==d.S[m]&&(d.S[m]=[],d.S[m].loaded=!1);}0<d.S.length&&(d.fb=d.S[0].twofold,d.fb&&(d.Ya=1));if(d.qa){if(d.Ck&&0<d.Ck.length){d.Kc||(d.Kc={});m=5>c.length?c.length:5;d.gf=[];for(var f=0;f<m;f++){if(c[f].fonts&&0<c[f].fonts.length){for(e=0;e<c[f].fonts.length;e++){d.Kc[c[f].fonts[e].name]||(fa(c[f].fonts[e].name,c[f].fonts[e].data),d.gf.push(c[f].fonts[e].name));}}else{var k=c[f].text;if(k&&0<k.length){for(e=0;e<k.length;e++){k[e][7]&&!d.Kc[k[e][7]]&&-1==d.gf.indexOf(k[e][7])&&0==k[e][7].indexOf("g_font")&&k[e][7]&&d.gf.push(k[e][7]);}}}}d.dh=0;0<d.gf.length?WebFont.load({custom:{families:d.gf},fontactive:function(c){d.dh++;d.Kc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.dh/d.gf.length});},fontinactive:function(c){d.dh++;d.Kc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.dh/d.gf.length});},inactive:function(){d.fc();d.xa.xc(c);},active:function(){d.fc();d.xa.xc(c);},timeout:5000}):(d.fc(),d.xa.xc(c));}else{d.fc(),d.xa.xc(c);}}else{d.fc(),d.xa.xc(c);}}},error:function(c,e,m){O("Error loading JSON file ("+c.statusText+","+m+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}})):d.Qe({url:d.Ld,dataType:d.config.JSONDataType,success:function(c){jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});c.e&&(c=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.cg)),d.sf=!0);d.S=c;for(var e=0;e<c.length;e++){c[e].loaded=!0;}d.fc();d.xa.xc(c);},onreadystatechange:function(){},error:function(c,e,m){O("Error loading JSON file ("+c.statusText+","+m+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}});},getDimensions:function(c,d){var e=this.S.length,e=10>this.S.length?this.S.length:10;null==c&&(c=0);null==d&&(d=e);if(null==this.dimensions||d&&c){for(null==this.dimensions&&(this.dimensions=[],this.ya=[]),e=c;e<d;e++){this.S[e].loaded?(this.dimensions[e]=[],this.Gl(e),null==this.pc&&(this.pc=this.dimensions[e])):null!=this.pc&&(this.dimensions[e]=[],this.dimensions[e].page=e,this.dimensions[e].loaded=!1,this.dimensions[e].width=this.pc.width,this.dimensions[e].height=this.pc.height,this.dimensions[e].ma=this.pc.ma,this.dimensions[e].za=this.pc.za);}}return this.dimensions;},Gl:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.dimensions[c].width=this.S[c][this.JSONPageDataFormat.jf];this.dimensions[c].height=this.S[c][this.JSONPageDataFormat.hf];this.dimensions[c].ma=this.dimensions[c].width;this.dimensions[c].za=this.dimensions[c].height;this.ya[c]=[];this.ya[c]="";900<this.dimensions[c].width&&(this.dimensions[c].width=918,this.dimensions[c].height=1188);for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.ze][e++];){this.Fa?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<Number(g[2].toString())&&!isNaN(g[3].toString())&&0<Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.ya[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.ya[c].endsWith(" ")&&(this.ya[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.ya[c]+=d):!isNaN(g[this.JSONPageDataFormat.lc].toString())&&0<=Number(g[this.JSONPageDataFormat.lc].toString())&&!isNaN(g[this.JSONPageDataFormat.Ab].toString())&&0<=Number(g[this.JSONPageDataFormat.Ab].toString())&&!isNaN(g[this.JSONPageDataFormat.zd].toString())&&0<Number(g[this.JSONPageDataFormat.zd].toString())&&!isNaN(g[this.JSONPageDataFormat.yd].toString())&&0<Number(g[this.JSONPageDataFormat.yd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Ab])!=Math.round(g[this.JSONPageDataFormat.Ab])&&Math.round(d[this.JSONPageDataFormat.lc])==Math.round(prev[this.JSONPageDataFormat.lc])&&(this.ya[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Ab])!=Math.round(g[this.JSONPageDataFormat.Ab])&&!this.ya[c].endsWith(" ")&&(this.ya[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.qb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.ya[c]+=d),d=g;}this.ya[c]=this.ya[c].toLowerCase();}},Jd:function(c){this.mb=!1;if("Portrait"==c.H||"SinglePage"==c.H){"Portrait"==c.H&&c.M(c.V).addClass("flowpaper_hidden"),this.zb?c.M(c.ta).append("<object data='"+this.fa+"' type='image/svg+xml' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+"' /></div>"):this.qa?c.M(c.ta).append("<canvas id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"):c.M(c.ta).append("<img alt='' src='"+this.fa+"' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"),"SinglePage"==c.H&&0==c.pageNumber&&this.kh(c,c.V);}"ThumbView"==c.H&&jQuery(c.V).append("<img src='"+this.fa+"' alt='"+this.ja(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_hidden' style='"+c.getDimensions()+"'/>");c.H==this.Ka(c)&&this.ub(c).Jd(this,c);if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.V+"_1").append("<img id='"+c.Xb+"_1' class='flowpaper_pageLoader' src='"+c.df+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.V+"_1").append("<img src='"+this.fa+"' alt='"+this.ja(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;background-size:cover;'/>"),jQuery(c.V+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;'></div>")),1==c.pageNumber&&(jQuery(c.V+"_2").append("<img id='"+c.Xb+"_2' class='flowpaper_pageLoader' src='"+c.df+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.V+"_2").append("<img src='"+this.fa+"' alt='"+this.ja(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;left:0px;top:0px;background-size:cover;'/>"),jQuery(c.V+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;'></div>"));}},Qe:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){qa(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.Sb||(d.Sb={});d.Sb[c.url]=c;d.af||(d.af=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.af.addEventListener("message",function(c){d.Sb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.Sb[c.data.url].success(e);d.Sb[c.data.url]=null;}):(d.Sb[c.data.url].success(JSON.parse(c.data.JSON)),d.Sb[c.data.url]=null));},!1));d.af.postMessage(c.url);}}else{return jQuery.ajax(c);}},yf:function(c){return this.Ld.replace("{page}",c);},ja:function(c,d,e){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.sf&&(c=CryptoJS.De.encrypt(c.toString(),CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)).toString());return !e||e&&!this.pageSVGImagePattern?d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?0<this.pageThumbImagePattern.indexOf("?")?this.pageThumbImagePattern.replace("{page}",c)+"&resolution="+d:this.pageThumbImagePattern.replace("{page}",c)+"?resolution="+d:0<this.pageImagePattern.indexOf("?")?this.pageImagePattern.replace("{page}",c)+"&resolution="+d:this.pageImagePattern.replace("{page}",c)+"?resolution="+d:this.pageImagePattern.replace("{page}",c):d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?this.pageThumbImagePattern.replace("{page}",c):0<this.pageSVGImagePattern.indexOf("?")?this.pageSVGImagePattern.replace("{page}",c)+"&resolution="+d:this.pageSVGImagePattern.replace("{page}",c)+"?resolution="+d:this.pageSVGImagePattern.replace("{page}",c);},Hb:function(c,d){return this.aj.replace("{page}",c).replace("{sector}",d);},Df:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},tc:function(c,d,e){var g=this;g.nd!=g.Df(c)&&(g.nd=g.Df(c),g.Qe({url:g.yf(g.nd),dataType:g.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.cg)),g.sf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var f=parseInt(c[d].number)-1;g.S[f]=c[d];g.S[f].loaded=!0;g.Gl(f);}g.xa.xc(g.S);jQuery(g).trigger("onTextDataUpdated",c[0].number);null!=e&&e();}g.nd=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",g.P);g.nd=null;}}));},Ca:function(c){return c.Le;},Ia:function(c,d){c.Le=d;},$b:function(c,d,e){var g=this;if(c.H!=g.Ka(c)&&-1<g.Ca(c)){window.clearTimeout(c.kc),c.kc=setTimeout(function(){g.$b(c,d,e);},250);}else{if(g.qa&&c.H!=g.Ka(c)&&(!g.Ne&&c.Mk!=c.scale||g.Ne&&!c.Nk||"SinglePage"==c.H)&&("Portrait"==c.H||"SinglePage"==c.H)){"SinglePage"!=c.H?g.Ia(c,c.pageNumber):0<=g.Ca(c)&&jQuery(c.na).css("background-image","url('"+g.ja(c.pages.R+1)+"')");var h=jQuery(c.na).get(0),m=1.5<g.Ya?g.Ya:1.5;g.Ne&&(m=2);h.width=jQuery(h).width()*m;h.height=jQuery(h).height()*m;c.Mk=c.scale;jQuery(h).data("needs-overlay",1);c.Nk||(c.Nk=!0);g.Ne?(c.U=new Image,jQuery(c.U).bind("load",function(){var d=jQuery(c.na).get(0);d.getContext("2d").drawImage(c.U,0,0,d.width,d.height);c.Td(d).then(function(){jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);},function(){});}),jQuery(c.U).attr("src",g.ja(c.pageNumber+1,"ThumbView"==c.H?200:null))):c.Td(h).then(function(){},function(){});}if(!c.oa||c.H==g.Ka(c)){m=c.xg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ka(c)){var f=c.wa(),k=c.Ha(),h=c.Vb();0==jQuery("#"+m).length?(m="<div id='"+m+"' class='flowpaper_textLayer' style='width:"+f+"px;height:"+k+"px;margin-left:"+h+"px;'></div>","Portrait"==c.H||g.Ka(c)||"SinglePage"==c.H?jQuery(c.ta).append(m):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.ta+"_"+(c.pageNumber%2+1)).append(m)):jQuery("#"+m).css({width:f,height:k,"margin-left":h});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.xb).css({"z-index":11,"margin-left":h}),jQuery(c.xb).transition({rotate:c.rotation,translate:"-"+h+"px, 0px"},0);}}if("Portrait"==c.H||"ThumbView"==c.H){c.oa||jQuery(c.na).attr("src")!=g.fa&&!g.zb&&!g.qa||c.We||(g.Ia(c,c.pageNumber),c.dimensions.loaded||g.tc(c.pageNumber+1,!0,function(){g.Dc(c);}),c.Qc(),g.U=new Image,jQuery(g.U).bind("load",function(){c.We=!0;c.Xe=this.height;c.Ye=this.width;g.Pc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.za,"Portrait"!=c.H&&"SinglePage"!=c.H||c.Oa());}).bind("error",function(){O("Error loading image ("+this.src+")","onErrorLoadingPage",g.P,c.pageNumber);}),jQuery(g.U).bind("error",function(){g.Ia(c,-1);}),jQuery(g.U).attr("src",g.ja(c.pageNumber+1,"ThumbView"==c.H?200:null))),!c.oa&&jQuery(c.na).attr("src")==g.fa&&c.We&&g.Pc(c),null!=e&&e();}c.H==g.Ka(c)&&(c.dimensions.loaded||g.dimensions[c.pageNumber-1].loaded&&(g.getNumPages()!=c.pageNumber+1||0!=g.getNumPages()%2)||g.tc(c.pageNumber+1,!0,function(){g.Dc(c);}),g.ub(c).$b(g,c,d,e));"SinglePage"==c.H&&(c.uc||(c.Qc(),c.uc=!0),0==c.pageNumber&&(g.Ia(c,c.pages.R),g.getDimensions()[g.Ca(c)].loaded||g.tc(g.Ca(c)+1,!0,function(){g.Dc(c);}),g.U=new Image,jQuery(g.U).bind("load",function(){c.We=!0;c.Xe=this.height;c.Ye=this.width;c.Jb();g.Pc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.za,c.Oa());c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ia(c,-1);}),jQuery(g.U).bind("error",function(){c.Jb();g.Ia(c,-1);}),jQuery(g.U).attr("src",g.ja(c.pages.R+1)),jQuery(c.V+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()));if("TwoPage"==c.H||"BookView"==c.H){c.uc||(c.Qc(),c.uc=!0),0==c.pageNumber?(jQuery(c.na),"BookView"==c.H?g.Ia(c,0!=c.pages.R?c.pages.R:c.pages.R+1):"TwoPage"==c.H&&g.Ia(c,c.pages.R),g.getDimensions()[g.Ca(c)-1]&&!g.getDimensions()[g.Ca(c)-1].loaded&&g.tc(g.Ca(c)+1,!0,function(){g.Dc(c);}),g.U=new Image,jQuery(g.U).bind("load",function(){c.We=!0;c.Xe=this.height;c.Ye=this.width;c.Jb();g.Pc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.za,c.Oa());c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ia(c,-1);}),jQuery(g.U).bind("error",function(){c.Jb();g.Ia(c,-1);}),"BookView"==c.H&&jQuery(g.U).attr("src",g.ja(0!=c.pages.R?c.pages.R:c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.U).attr("src",g.ja(c.pages.R+1)),jQuery(c.V+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()):1==c.pageNumber&&(h=jQuery(c.na),c.pages.R+1>c.pages.getTotalPages()?h.attr("src",""):(0!=c.pages.R||"TwoPage"==c.H?(g.Ia(c,c.pages.R+1),g.U=new Image,jQuery(g.U).bind("load",function(){c.Jb();g.Pc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.za);c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ia(c,-1);}),jQuery(g.U).bind("error",function(){g.Ia(c,-1);c.Jb();})):c.Jb(),"BookView"==c.H&&jQuery(g.U).attr("src",g.ja(c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.U).attr("src",g.ja(c.pages.R+2)),1<c.pages.R&&jQuery(c.V+"_2").removeClass("flowpaper_hidden"),jQuery(c.V+"_2").removeClass("flowpaper_load_on_demand")),null!=e&&e());}}}},Pc:function(c){if("Portrait"!=c.H||Math.round(c.Ye/c.Xe*100)==Math.round(c.dimensions.width/c.dimensions.height*100)&&!this.zb||eb.browser.msie&&9>eb.browser.version){c.H==this.Ka(c)?this.ub(c).Pc(this,c):"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&(d="BookView"==c.H?0!=c.pages.R?c.pages.R:c.pages.R+1:c.pages.R+1,c.xh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb?jQuery(c.na).attr("src",this.ja(d)):jQuery(c.na).css("background-image","url('"+this.ja(d)+"')"),jQuery(c.V+"_1").removeClass("flowpaper_hidden"),c.xh=d),jQuery(c.na).removeClass("flowpaper_hidden")),1==c.pageNumber&&(d="BookView"==c.H?c.pages.R+1:c.pages.R+2,c.xh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb?jQuery(c.na).attr("src",this.ja(d)):jQuery(c.na).css("background-image","url('"+this.ja(d)+"')"),c.xh=d,"TwoPage"==c.H&&jQuery(c.V+"_2").removeClass("flowpaper_hidden")),jQuery(c.na).removeClass("flowpaper_hidden")),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):"SinglePage"==c.H?(this.qa?jQuery(c.na).css("background-image","url('"+this.ja(this.Ca(c)+1)+"')"):jQuery(c.na).attr("src",this.ja(this.Ca(c)+1)),jQuery("#"+c.Xb).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):this.Ne?this.Ne&&(jQuery("#"+c.Xb).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):(this.zb?(jQuery(c.na).attr("data",this.ja(c.pageNumber+1,null,!0)),jQuery(c.V).removeClass("flowpaper_load_on_demand")):this.qa?jQuery(c.na).css("background-image","url('"+this.ja(c.pageNumber+1)+"')"):jQuery(c.na).attr("src",this.ja(c.pageNumber+1),"ThumbView"==c.H?200:null),jQuery("#"+c.Xb).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0);}else{if(this.zb){jQuery(c.na).attr("data",this.ja(c.pageNumber+1,null,!0)),jQuery(c.V).removeClass("flowpaper_load_on_demand"),jQuery(c.na).css("width",jQuery(c.na).css("width"));}else{if(this.Ne&&this.qa){var d=jQuery(c.na).css("background-image");0<d.length&&"none"!=d?(jQuery(c.na).css("background-image",d+",url('"+this.ja(c.pageNumber+1)+"')"),jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),P(jQuery(c.na).get(0))):jQuery(c.na).css("background-image","url('"+this.ja(c.pageNumber+1)+"')");}else{jQuery(c.na).css("background-image","url('"+this.ja(c.pageNumber+1)+"')"),jQuery(c.na).attr("src",this.fa);}}jQuery("#"+c.Xb).hide();c.oa||this.qa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;}this.Ia(c,-1);this.If||(this.If=!0,c.F.vh());},yl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.ia).css("background-image","url("+this.fa+")"),1==c.pageNumber&&jQuery(c.ia).css("background-image","url("+this.fa+")")):jQuery(c.ia).css("background-image","url("+this.fa+")");},unload:function(c){jQuery(c.V).addClass("flowpaper_load_on_demand");var d=null;if("Portrait"==c.H||"ThumbView"==c.H||"SinglePage"==c.H){d=jQuery(c.na);}if("TwoPage"==c.H||"BookView"==c.H){d=jQuery(c.na),jQuery(c.na).addClass("flowpaper_hidden");}c.H==this.Ka(c)&&this.ub(c).unload(this,c);null!=d&&0<d.length&&(d.attr("alt",d.attr("src")),d.attr("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"));c.uc=!1;c.xh=-1;jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.ej&&c.ej();jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove();c.Fg&&c.Fg();},getNumPages:function(){return 10>this.S.length?this.S.length:10;},Dc:function(c,d,e,g){this.xa.Dc(c,d,e,g);},Cc:function(c,d,e,g){this.xa.Cc(c,d,e,g);},Ee:function(c,d,e,g){this.xa.Ee(c,d,e,g);},Da:function(c,d,e){this.xa.Da(c,e);},kh:function(c,d){if(this.mb){if(c.scale<c.qg()){c.Tl=d,c.Ul=!1;}else{!d&&c.Tl&&(d=c.Tl);var e=0.25*Math.round(c.Ei()),g=0.25*Math.round(c.Di());jQuery(".flowpaper_flipview_canvas_highres_"+c.pageNumber).remove();null==d&&(d=c.V);var h=eb.platform.Kd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";jQuery(d).append(String.format("<div id='"+c.aa+"_canvas_highres_l1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat:no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,3*g+0,e,g,h)+"");c.Ul=!0;}}},Nc:function(c){if(!(c.scale<c.qg())){!c.Ul&&this.mb&&this.kh(c);if(this.mb){var d=document.getElementById(c.aa+"_canvas_highres_l1t1"),e=document.getElementById(c.aa+"_canvas_highres_l2t1"),g=document.getElementById(c.aa+"_canvas_highres_l1t2"),h=document.getElementById(c.aa+"_canvas_highres_l2t2"),m=document.getElementById(c.aa+"_canvas_highres_r1t1"),f=document.getElementById(c.aa+"_canvas_highres_r2t1"),k=document.getElementById(c.aa+"_canvas_highres_r1t2"),n=document.getElementById(c.aa+"_canvas_highres_r2t2"),p=document.getElementById(c.aa+"_canvas_highres_l1b1"),q=document.getElementById(c.aa+"_canvas_highres_l2b1"),t=document.getElementById(c.aa+"_canvas_highres_l1b2"),r=document.getElementById(c.aa+"_canvas_highres_l2b2"),x=document.getElementById(c.aa+"_canvas_highres_r1b1"),C=document.getElementById(c.aa+"_canvas_highres_r2b1"),v=document.getElementById(c.aa+"_canvas_highres_r1b2"),w=document.getElementById(c.aa+"_canvas_highres_r2b2");if(1==c.pageNumber&&1==c.pages.R||c.pageNumber==c.pages.R-1||c.pageNumber==c.pages.R-2){var u=c.H==this.Ka(c)?c.pages.J:null,D=c.H==this.Ka(c)?c.pageNumber+1:c.pages.R+1;jQuery(d).visible(!0,u)&&"none"===jQuery(d).css("background-image")&&jQuery(d).css("background-image","url('"+this.Hb(D,"l1t1")+"')");jQuery(e).visible(!0,u)&&"none"===jQuery(e).css("background-image")&&jQuery(e).css("background-image","url('"+this.Hb(D,"l2t1")+"')");jQuery(g).visible(!0,u)&&"none"===jQuery(g).css("background-image")&&jQuery(g).css("background-image","url('"+this.Hb(D,"l1t2")+"')");jQuery(h).visible(!0,u)&&"none"===jQuery(h).css("background-image")&&jQuery(h).css("background-image","url('"+this.Hb(D,"l2t2")+"')");jQuery(m).visible(!0,u)&&"none"===jQuery(m).css("background-image")&&jQuery(m).css("background-image","url('"+this.Hb(D,"r1t1")+"')");jQuery(f).visible(!0,u)&&"none"===jQuery(f).css("background-image")&&jQuery(f).css("background-image","url('"+this.Hb(D,"r2t1")+"')");jQuery(k).visible(!0,u)&&"none"===jQuery(k).css("background-image")&&jQuery(k).css("background-image","url('"+this.Hb(D,"r1t2")+"')");jQuery(n).visible(!0,u)&&"none"===jQuery(n).css("background-image")&&jQuery(n).css("background-image","url('"+this.Hb(D,"r2t2")+"')");jQuery(p).visible(!0,u)&&"none"===jQuery(p).css("background-image")&&jQuery(p).css("background-image","url('"+this.Hb(D,"l1b1")+"')");jQuery(q).visible(!0,u)&&"none"===jQuery(q).css("background-image")&&jQuery(q).css("background-image","url('"+this.Hb(D,"l2b1")+"')");jQuery(t).visible(!0,u)&&"none"===jQuery(t).css("background-image")&&jQuery(t).css("background-image","url('"+this.Hb(D,"l1b2")+"')");jQuery(r).visible(!0,u)&&"none"===jQuery(r).css("background-image")&&jQuery(r).css("background-image","url('"+this.Hb(D,"l2b2")+"')");jQuery(x).visible(!0,u)&&"none"===jQuery(x).css("background-image")&&jQuery(x).css("background-image","url('"+this.Hb(D,"r1b1")+"')");jQuery(C).visible(!0,u)&&"none"===jQuery(C).css("background-image")&&jQuery(C).css("background-image","url('"+this.Hb(D,"r2b1")+"')");jQuery(v).visible(!0,u)&&"none"===jQuery(v).css("background-image")&&jQuery(v).css("background-image","url('"+this.Hb(D,"r1b2")+"')");jQuery(w).visible(!0,u)&&"none"===jQuery(w).css("background-image")&&jQuery(w).css("background-image","url('"+this.Hb(D,"r2b2")+"')");}}c.wl=!0;}},Fc:function(c){if(this.mb){var d=eb.platform.Kd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";c.wl&&0<jQuery("."+d).length&&(jQuery("."+d).css("background-image",""),c.wl=!1);}}};return f;}(),CanvasPageRenderer=window.CanvasPageRenderer=function(){function f(c,d,e,g){this.P=c;this.file=d;this.jsDirectory=e;this.initialized=!1;this.JSONPageDataFormat=this.Ga=this.dimensions=null;this.pageThumbImagePattern=g.pageThumbImagePattern;this.pageImagePattern=g.pageImagePattern;this.config=g;this.Yg=this.P+"_dummyPageCanvas_[pageNumber]";this.oi="#"+this.Yg;this.Zg=this.P+"dummyPageCanvas2_[pageNumber]";this.pi="#"+this.Zg;this.pb=[];this.context=this.ia=null;this.Qa=[];this.Dh=[];this.sb=this.If=!1;this.fa="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.sh=1;this.ya=[];this.yg={};this.JSONPageDataFormat=null;this.he=!0;this.Fa=null!=g.compressedJSONFormat?g.compressedJSONFormat:!0;this.fi=[];}f.prototype={Ff:function(){return"CanvasPageRenderer";},Ka:function(c){return c.F?c.F.I?c.F.I.W:"":!1;},ub:function(c){return c.F.I.yn;},dispose:function(){jQuery(this.xa).unbind();this.xa.dispose();delete this.fc;this.fc=null;delete this.dimensions;this.dimensions=null;delete this.xa;this.xa=null;delete this.Qa;this.Qa=null;delete this.Dh;this.Dh=null;},initialize:function(c,d){var e=this;e.fc=c;e.Ya=eb.platform.Ya;1<e.Ya&&eb.platform.touchonlydevice&&(e.Ya=1);e.config.MixedMode&&(eb.browser.ef||eb.browser.msie)&&0==e.file.indexOf("http")&&(e.config.MixedMode=!1);e.Yo=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.min.js";e.Fa?e.JSONPageDataFormat={jf:"width",hf:"height",ze:"text",qb:"d",Bg:"f",lc:"l",Ab:"t",zd:"w",yd:"h"}:e.JSONPageDataFormat={jf:e.config.JSONPageDataFormat.pageWidth,hf:e.config.JSONPageDataFormat.pageHeight,ze:e.config.JSONPageDataFormat.textCollection,qb:e.config.JSONPageDataFormat.textFragment,Bg:e.config.JSONPageDataFormat.textFont,lc:e.config.JSONPageDataFormat.textLeft,Ab:e.config.JSONPageDataFormat.textTop,zd:e.config.JSONPageDataFormat.textWidth,yd:e.config.JSONPageDataFormat.textHeight};e.va=e.file.indexOf&&0<=e.file.indexOf("[*,")&&e.config&&null!=e.config.jsonfile&&!d.Dk;e.xa=new ra(e.P,e.va,e.JSONPageDataFormat,!0);e.va&&(e.Kp=e.file.substr(e.file.indexOf("[*,"),e.file.indexOf("]")-e.file.indexOf("[*,")),e.wk=e.wk=!1);PDFJS.workerSrc=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.worker.min.js";jQuery.getScript(e.Yo,function(){if(e.wk){var g=new XMLHttpRequest;g.open("HEAD",e.ki(1),!1);g.overrideMimeType("application/pdf");g.onreadystatechange=function(){if(200==g.status){var c=g.getAllResponseHeaders(),d={};if(c){for(var c=c.split("\r\n"),h=0;h<c.length;h++){var m=c[h],f=m.indexOf(": ");0<f&&(d[m.substring(0,f)]=m.substring(f+2));}}e.Uj="bytes"===d["Accept-Ranges"];e.Cn="identity"===d["Content-Encoding"]||null===d["Content-Encoding"]||!d["Content-Encoding"];e.Uj&&e.Cn&&!eb.platform.ios&&!eb.browser.safari&&(e.file=e.file.substr(0,e.file.indexOf(e.Kp)-1)+".pdf",e.va=!1);}g.abort();};try{g.send(null);}catch(f){}}window["wordPageList_"+e.P]=e.xa.Qa;jQuery("#"+e.P).trigger("onDocumentLoading");FLOWPAPER.RANGE_CHUNK_SIZE&&(PDFJS.RANGE_CHUNK_SIZE=FLOWPAPER.RANGE_CHUNK_SIZE);PDFJS.disableWorker=e.va||eb.browser.ef||eb.browser.msie;PDFJS.disableRange=e.va;PDFJS.disableAutoFetch=e.va||!1;PDFJS.disableStream=e.va||!1;PDFJS.pushTextGeometries=!e.va;PDFJS.verbosity=PDFJS.VERBOSITY_LEVELS.errors;PDFJS.enableStats=!1;PDFJS.er=!0;PDFJS.fr=!0;if(e.va){e.va&&e.config&&null!=e.config.jsonfile&&(e.va=!0,e.Ld=e.config.jsonfile,e.Ur=new Promise(function(){}),m=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10,e.Qe({url:e.yf(m),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.cg)),e.sf=!0);jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.1});if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Bh(d);}0<e.S.length&&(e.fb=e.S[0].twofold,e.fb&&(e.Ya=1));for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.xa&&e.xa.xc&&e.xa.xc(e.S);}e.Ke=1;e.Ga=Array(c[0].pages);e.pb=Array(c[0].pages);e.Ri(e.Ke,function(){jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});e.fc();},null,function(c){c=0.1+c;1<c&&(c=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:c});});},error:function(g,h,m){h=null!=g.responseText&&0==g.responseText.indexOf("Error:")?g.responseText.substr(6):"";this.url.indexOf("view.php")||this.url.indexOf("view.ashx")?(console.log("Warning: Could not load JSON file. Switching to single file mode."),d.Dk=!0,e.va=!1,e.initialize(c,d),e.pageThumbImagePattern=null):O("Error loading JSON file ("+g.statusText+","+m+"). Please check your configuration.","onDocumentLoadedError",e.P,h);}}));}else{e.Ld=e.config.jsonfile;var h=new jQuery.Deferred,m=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;e.Ld&&0<e.Ld.length?e.Qe({url:e.yf(m),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.cg)),e.sf=!0);if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Bh(d);}for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.xa&&e.xa.xc&&e.xa.xc(e.S);0<e.S.length&&(e.fb=e.S[0].twofold,e.fb&&(e.Ya=1));}h.resolve();}}):h.resolve();h.then(function(){var c={},g=e.file;d&&d.Dk&&g.match(/(page=\d)/ig)&&(g=g.replace(/(page=\d)/ig,""));!e.file.indexOf||e.file instanceof Uint8Array||e.file.indexOf&&0==e.file.indexOf("blob:")?c=g:c.url=g;e.xl()&&(c.password=e.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");var h=0;c.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;c=PDFJS.getDocument(c);c.onPassword=function(c,d){jQuery("#"+e.P).trigger("onPasswordNeeded",c,d);};c.onProgress=function(c){h=c.loaded/c.total;1<h&&(h=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:h});};c.then(function(c){0.5>h&&jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.5});e.pdf=e.Ga=c;e.Ga.getPageLabels().then(function(c){jQuery(e).trigger("labelsLoaded",{Yk:c});});e.initialized=!0;e.dimensions=null;e.pb=Array(e.fb?e.S.length:e.Ga.numPages);e.dimensions=[];(e.Gn=e.Ga.getDestinations()).then(function(c){e.destinations=c;});(e.Uo=e.Ga.getOutline()).then(function(c){e.outline=c||[];});var g=d&&d.StartAtPage?parseInt(d.StartAtPage):1;e.Ga.getPage(g).then(function(c){c=c.getViewport(1);var d=e.Ga.numPages;!e.va&&e.fb&&(d=e.S.length);for(i=1;i<=d;i++){e.dimensions[i-1]=[],e.dimensions[i-1].page=i-1,e.dimensions[i-1].width=c.width,e.dimensions[i-1].height=c.height,e.dimensions[i-1].ma=c.width,e.dimensions[i-1].za=c.height;}e.li=!0;jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});1==g&&1<d&&window.zine?e.Ga.getPage(2).then(function(c){c=c.getViewport(1);e.fb=2*Math.round(e.dimensions[0].width)>=Math.round(c.width)-1&&2*Math.round(e.dimensions[0].width)<=Math.round(c.width)+1;if(e.fb){e.S=Array(d);for(var g=0;g<e.S.length;g++){e.S[g]={},e.S[g].text=[],e.S[g].pages=d,e.S[g].fb=!0,e.S[g].width=0==g?e.dimensions[0].width:c.width,e.S[g].height=0==g?e.dimensions[0].height:c.height,e.Bh(g);}}e.fc();}):e.fc();});(null==e.config.jsonfile||null!=e.config.jsonfile&&0==e.config.jsonfile.length||!e.va)&&e.Vl(e.Ga);},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",e.P,"Cannot load PDF file ("+c+")");jQuery(e).trigger("loadingProgress",{P:e.P,progress:"Error"});},function(){},function(c){jQuery(e).trigger("loadingProgress",{P:e.P,progress:c.loaded/c.total});});});}}).fail(function(){});e.JSONPageDataFormat={jf:"width",hf:"height",ze:"text",qb:"d",Bg:"f",lc:"l",Ab:"t",zd:"w",yd:"h"};},Ri:function(c,d,e){var g=this,h={};h.url=g.ki(c);g.xl()&&(h.password=g.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");h.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;g.Bs=PDFJS.getDocument(h).then(function(h){g.Ga[c-1]=h;g.initialized=!0;g.dimensions||(g.dimensions=[]);g.Ga[c-1].getDestinations().then(function(c){g.destinations=c;});g.Ga[c-1].getPage(1).then(function(h){g.pb[c-1]=h;var m=h.getViewport(g.fb?1:1.5),f=g.dimensions&&g.dimensions[c-1]?g.dimensions[c-1]:[],p=Math.floor(m.width),m=Math.floor(m.height),q=f&&f.width&&!(p>f.width-1&&p<f.width+1),t=f&&f.height&&!(m>f.height-1&&m<f.height+1);g.dimensions[c-1]=[];g.dimensions[c-1].loaded=!0;g.dimensions[c-1].page=c-1;g.dimensions[c-1].width=p;1<c&&g.fb&&(c<g.Ga[c-1].numPages||0!=g.Ga[c-1].numPages%2)?(g.dimensions[c-1].width=g.dimensions[c-1].width/2,g.dimensions[c-1].ma=p/2):g.dimensions[c-1].ma=p;var r;if(r=f.width){r=g.dimensions[c-1].width,r=!(r>f.width-1&&r<f.width+1);}r&&e&&!g.fb&&(e.dimensions.ma=p,e.dimensions.za=m,e.Oa());if(q||!g.dimensions[c-1].ma){g.dimensions[c-1].ma=p;}if(t||!g.dimensions[c-1].za){g.dimensions[c-1].za=m;}g.dimensions[c-1].height=m;1<c&&g.fb&&(c<g.Ga[c-1].numPages||0!=g.Ga[c-1].numPages%2)&&(g.dimensions[c-1].ma=g.dimensions[c-1].ma/2);null!=g.Aa[c-1]&&g.Aa.length>c&&(g.dimensions[c-1].Sc=g.Aa[c].Sc,g.dimensions[c-1].Rc=g.Aa[c].Rc,g.dimensions[c-1].nb=g.Aa[c].nb,g.dimensions[c-1].fd=g.Aa[c].fd);g.yg[c-1+" "+h.ref.gen+" R"]=c-1;g.li=!0;g.Ke=-1;d&&d();});g.Ke=-1;},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",g.P);jQuery(g).trigger("loadingProgress",{P:g.P,progress:"Error"});g.Ke=-1;});},Qe:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){qa(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.Sb||(d.Sb={});d.Sb[c.url]=c;d.af||(d.af=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.af.addEventListener("message",function(c){d.Sb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.Sb[c.data.url].success(e);d.Sb[c.data.url]=null;}):(d.Sb[c.data.url].success(JSON.parse(c.data.JSON)),d.Sb[c.data.url]=null));},!1));d.af.postMessage(c.url);}}else{return jQuery.ajax(c);}},yf:function(c){return this.Ld.replace("{page}",c);},ti:function(c){var d=1;if(1<c){for(var e=0;e<c;e++){(0!=e%2||0==e%2&&0==c%2&&e==c-1)&&d++;}return d;}return 1;},xl:function(){return null!=this.config.signature&&0<this.config.signature.length;},ki:function(c){this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.fb&&1<c&&(c=this.ti(c));if(0<=this.file.indexOf("{page}")){return this.file.replace("{page}",c);}if(0<=this.file.indexOf("[*,")){var d=this.file.substr(this.file.indexOf("[*,"),this.file.indexOf("]")-this.file.indexOf("[*,")+1);return this.file.replace(d,ia(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}},Df:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},tc:function(c,d,e,g,h){var m=this;m.nd==m.Df(c)?(window.clearTimeout(h.Go),h.Go=setTimeout(function(){h.dimensions.loaded||m.tc(c,d,e,g,h);},100)):(m.nd=m.Df(c),m.Qe({url:m.yf(m.nd),dataType:m.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.De.decrypt(c.e,CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.cg)),m.sf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var g=parseInt(c[d].number)-1;m.S[g]=c[d];m.S[g].loaded=!0;m.Ko(g);m.Bh(g,h);}m.xa.xc&&m.xa.xc(m.S);jQuery(m).trigger("onTextDataUpdated");null!=e&&e();}m.nd=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",m.P);m.nd=null;}}));},Bh:function(c){this.Aa||(this.Aa=[]);this.Aa[c]||(this.Aa[c]=[]);this.Aa[c].Sc=this.S[c][this.JSONPageDataFormat.jf];this.Aa[c].Rc=this.S[c][this.JSONPageDataFormat.hf];this.Aa[c].nb=this.Aa[c].Sc;this.Aa[c].fd=this.Aa[c].Rc;c=this.Aa[c];for(var d=0;d<this.getNumPages();d++){null==this.Aa[d]&&(this.Aa[d]=[],this.Aa[d].Sc=c.Sc,this.Aa[d].Rc=c.Rc,this.Aa[d].nb=c.nb,this.Aa[d].fd=c.fd);}},getDimensions:function(){var c=this;if(null==c.dimensions||c.li||null!=c.dimensions&&0==c.dimensions.length){null==c.dimensions&&(c.dimensions=[]);var d=c.Ga.numPages;!c.va&&c.fb&&(d=c.S.length);d=10>c.Ga.numPages?c.Ga.numPages:10;if(c.va){for(var e=0;e<c.getNumPages();e++){null!=c.dimensions[e]||null!=c.dimensions[e]&&!c.dimensions[e].loaded?(null==c.pc&&(c.pc=c.dimensions[e]),c.dimensions[e].nb||null==c.Aa[e]||(c.dimensions[e].nb=c.Aa[e].nb,c.dimensions[e].fd=c.Aa[e].fd)):null!=c.pc&&(c.dimensions[e]=[],c.dimensions[e].page=e,c.dimensions[e].loaded=!1,c.dimensions[e].width=c.pc.width,c.dimensions[e].height=c.pc.height,c.dimensions[e].ma=c.pc.ma,c.dimensions[e].za=c.pc.za,null!=c.Aa[e]&&(c.dimensions[e].width=c.Aa[e].Sc,c.dimensions[e].height=c.Aa[e].Rc,c.dimensions[e].ma=c.Aa[e].nb,c.dimensions[e].za=c.Aa[e].fd),null!=c.Aa[e-1]&&(c.dimensions[e-1].Sc=c.Aa[e].Sc,c.dimensions[e-1].Rc=c.Aa[e].Rc,c.dimensions[e-1].nb=c.Aa[e].nb,c.dimensions[e-1].fd=c.Aa[e].fd),e==c.getNumPages()-1&&(c.dimensions[e].Sc=c.Aa[e].Sc,c.dimensions[e].Rc=c.Aa[e].Rc,c.dimensions[e].nb=c.Aa[e].nb,c.dimensions[e].fd=c.Aa[e].fd),c.yg[e+" 0 R"]=e);}}else{c.Ek=[];for(e=1;e<=d;e++){var g=e;c.fb&&(g=c.ti(e));c.Ek.push(c.Ga.getPage(g).then(function(d){var e=d.getViewport(1);c.dimensions[d.pageIndex]=[];c.dimensions[d.pageIndex].page=d.pageIndex;c.dimensions[d.pageIndex].width=e.width;c.dimensions[d.pageIndex].height=e.height;c.dimensions[d.pageIndex].ma=e.width;c.dimensions[d.pageIndex].za=e.height;e=d.ref;c.yg[e.num+" "+e.gen+" R"]=d.pageIndex;}));}Promise.all&&Promise.all(c.Ek.concat(c.Gn).concat(c.Uo)).then(function(){jQuery(c).trigger("outlineAdded",{P:c.P});});}c.li=!1;}return c.dimensions;},Ko:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.ya[c]=[];this.ya[c]="";for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.ze][e++];){this.Fa?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<=Number(g[2].toString())&&!isNaN(g[3].toString())&&0<=Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.ya[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.ya[c].endsWith(" ")&&(this.ya[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.ya[c]+=d):!isNaN(g[this.JSONPageDataFormat.lc].toString())&&0<=Number(g[this.JSONPageDataFormat.lc].toString())&&!isNaN(g[this.JSONPageDataFormat.Ab].toString())&&0<=Number(g[this.JSONPageDataFormat.Ab].toString())&&!isNaN(g[this.JSONPageDataFormat.zd].toString())&&0<Number(g[this.JSONPageDataFormat.zd].toString())&&!isNaN(g[this.JSONPageDataFormat.yd].toString())&&0<Number(g[this.JSONPageDataFormat.yd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Ab])!=Math.round(g[this.JSONPageDataFormat.Ab])&&Math.round(d[this.JSONPageDataFormat.lc])==Math.round(prev[this.JSONPageDataFormat.lc])&&(this.ya[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Ab])!=Math.round(g[this.JSONPageDataFormat.Ab])&&!this.ya[c].endsWith(" ")&&(this.ya[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.qb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.ya[c]+=d),d=g;}this.ya[c]=this.ya[c].toLowerCase();}},getNumPages:function(){return this.va?10>this.S.length?this.S.length:10:this.S&&!this.Ga?10>this.S.length?this.S.length:10:10>this.Ga.numPages?this.Ga.numPages:10;},getPage:function(c){this.Ga.getPage(c).then(function(c){return c;});return null;},Pc:function(c){var d=this;"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.ia).css("background-image","url('"+d.ja(c.pages.R+1)+"')"),1==c.pageNumber&&jQuery(c.ia).css("background-image","url('"+d.ja(c.pages.R+2)+"')")):"ThumbView"==c.H?jQuery(c.ia).css("background-image","url('"+d.ja(c.pageNumber+1,200)+"')"):"SinglePage"==c.H?jQuery(c.ia).css("background-image","url('"+d.ja(d.Ca(c)+1)+"')"):jQuery(c.ia).css("background-image","url('"+d.ja(c.pageNumber+1)+"')");c.U=new Image;jQuery(c.U).bind("load",function(){var e=Math.round(c.U.width/c.U.height*100),g=Math.round(c.dimensions.width/c.dimensions.height*100);if("SinglePage"==c.H){var e=d.Aa[c.pages.R],h=Math.round(e.Sc/e.Rc*100),g=Math.round(c.dimensions.ma/c.dimensions.za*100);h!=g&&(c.dimensions.ma=e.Sc,c.dimensions.za=e.Rc,c.Oa(),c.xj=-1,d.Da(c,!0,null));}else{e!=g&&(c.dimensions.ma=c.U.width,c.dimensions.za=c.U.height,c.Oa(),c.xj=-1,d.Da(c,!0,null));}});jQuery(c.U).attr("src",d.ja(c.pageNumber+1));},yl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.ia).css("background-image","url("+this.fa+")"),1==c.pageNumber&&jQuery(c.ia).css("background-image","url("+this.fa+")")):jQuery(c.ia).css("background-image","url("+this.fa+")");},Jd:function(c){this.rb=c.rb=this.va&&this.config.MixedMode;"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.V).append("<canvas id='"+this.Ba(1,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:none;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas><canvas id='"+this.Ba(2,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas>");c.H==this.Ka(c)&&this.ub(c).Jd(this,c);"ThumbView"==c.H&&jQuery(c.V).append("<canvas id='"+this.Ba(1,c)+"' style='"+c.getDimensions()+";background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden' ></canvas>");if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.V+"_1").append("<img id='"+c.Xb+"_1' src='"+c.df+"' style='position:absolute;left:"+(c.wa()-30)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.V+"_1").append("<canvas id='"+this.Ba(1,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.V+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>")),1==c.pageNumber&&(jQuery(c.V+"_2").append("<img id='"+c.Xb+"_2' src='"+c.df+"' style='position:absolute;left:"+(c.wa()/2-10)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.V+"_2").append("<canvas id='"+this.Ba(2,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.V+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>"));}},Ba:function(c,d){var e=d.pageNumber;if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return this.P+"_dummyCanvas2";}if(1==c){return this.Yg.replace("[pageNumber]",e);}if(2==c){return this.Zg.replace("[pageNumber]",e);}},fo:function(c,d){if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return"#"+this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return"#"+this.P+"_dummyCanvas2";}if(1==c){return this.oi.replace("[pageNumber]",d.pageNumber);}if(2==c){return this.pi.replace("[pageNumber]",d.pageNumber);}},$b:function(c,d,e){var g=this;g.si=!0;if(c.H!=g.Ka(c)||g.ub(c).Fp(g,c,d,e)){if("Portrait"!=c.H&&"TwoPage"!=c.H&&"BookView"!=c.H||null!=c.context||c.uc||(c.Qc(),c.uc=!0),1==g.kp&&1<c.scale&&c.rb&&g.Ia(c,-1),-1<g.Ca(c)||g.va&&null!=g.Tf){window.clearTimeout(c.kc),c.kc=setTimeout(function(){setTimeout(function(){g.$b(c,d,e);});},50);}else{g.$k=c;g.kp=c.scale;if("TwoPage"==c.H||"BookView"==c.H){if(0==c.pageNumber){"BookView"==c.H?g.Ia(c,0==c.pages.R?c.pages.R:c.pages.R-1):"TwoPage"==c.H&&g.Ia(c,c.pages.R),g.sk=c,c.Jb();}else{if(1==c.pageNumber){"BookView"==c.H?g.Ia(c,c.pages.R):"TwoPage"==c.H&&g.Ia(c,c.pages.R+1),g.sk=c,jQuery(c.V+"_2").removeClass("flowpaper_hidden"),jQuery(c.V+"_2").removeClass("flowpaper_load_on_demand"),c.Jb();}else{return;}}}else{"SinglePage"==c.H?g.Ia(c,c.pages.R):(g.Ia(c,c.pageNumber),g.sk=c);}g.pj(c);if((c.rb||g.va)&&!c.dimensions.loaded){var h=c.pageNumber+1;"SinglePage"==c.H&&(h=g.Ca(c)+1);g.tc(h,!0,function(){c.dimensions.loaded=!1;g.Dc(c);},!0,c);}var h=!1,m=c.xg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ka(c)&&g.ub(c).sq(g,c)){var h=!0,f=c.Vb(),k=c.wa(),n=c.Ha();0==jQuery("#"+m).length?(m="<div id='"+m+"' class='flowpaper_textLayer' style='width:"+k+"px;height:"+n+"px;backface-visibility:hidden;margin-left:"+f+"px;'></div>","Portrait"==c.H||g.Ka(c)||"SinglePage"==c.H?jQuery(c.ta).append(m):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.ta+"_"+(c.pageNumber%2+1)).append(m)):jQuery("#"+m).css({width:k,height:n,"margin-left":f});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.xb).css({"z-index":11,"margin-left":f}),jQuery(c.xb).transition({rotate:c.rotation,translate:"-"+f+"px, 0px"},0);}}if(c.rb&&c.scale<=g.qh(c)&&!c.mi){-1<g.Ca(c)&&window.clearTimeout(c.kc),jQuery(c.V).removeClass("flowpaper_load_on_demand"),g.va&&c.F.initialized&&!c.xn?g.fi.push(function(){var d=new XMLHttpRequest;d.open("GET",g.ki(c.pageNumber+1),!0);d.overrideMimeType("text/plain; charset=x-user-defined");d.addEventListener("load",function(){g.fe();});d.addEventListener("error",function(){g.fe();});d.send(null);c.xn=!0;}):g.Uj&&null==g.pb[g.Ca(c)]&&(f=g.Ca(c)+1,g.Ga&&g.Ga.getPage&&g.Ga.getPage(f).then(function(d){g.pb[g.Ca(c)]=d;})),c.H==g.Ka(c)?g.ub(c).$b(g,c,d,e):(g.Pc(c),g.Re(c,e)),c.oa=!0;}else{if(c.rb&&c.scale>g.qh(c)&&!c.mi){c.H!=g.Ka(c)&&g.Pc(c);}else{if(!c.rb&&c.Jc&&c.H==g.Ka(c)&&1==c.scale&&!g.Wg){if(!c.gd&&100!=c.ia.width){c.gd=c.ia.toDataURL(),f=jQuery("#"+g.Ba(1,c)),f.css("background-image").length<c.gd.length+5&&f.css("background-image","url("+c.gd+")"),f[0].width=100;}else{if(c.gd&&!g.va&&"none"!=jQuery("#"+g.Ba(1,c)).css("background-image")){g.Ia(c,-1);c.oa=!0;return;}}g.pl(c);}}null!=g.pb[g.Ca(c)]||g.va||(f=g.Ca(c)+1,g.fb&&(f=g.ti(f)),g.Ga&&g.Ga.getPage&&g.Ga.getPage(f).then(function(h){g.pb[g.Ca(c)]=h;window.clearTimeout(c.kc);g.Ia(c,-1);g.$b(c,d,e);}));if(c.ia){if(100==c.ia.width||1!=c.scale||c.H!=g.Ka(c)||c.Bl){if(f=!0,null==g.pb[g.Ca(c)]&&g.va&&(c.H==g.Ka(c)&&(f=g.ub(c).Ep(g,c)),null==g.Ga[g.Ca(c)]&&-1==g.Ke&&f&&null==g.Tf&&(g.Ke=g.Ca(c)+1,g.Ri(g.Ke,function(){window.clearTimeout(c.kc);g.Ia(c,-1);g.$b(c,d,e);},c))),null!=g.pb[g.Ca(c)]||!f){if(c.H==g.Ka(c)?g.ub(c).$b(g,c,d,e):(c.ia.width=c.wa(),c.ia.height=c.Ha()),g.fb&&0<c.Eb.indexOf("cropCanvas")&&(c.ia.width=2*c.ia.width),null!=g.pb[g.Ca(c)]||!f){if(g.si){f=c.ia.height/g.getDimensions()[c.pageNumber].height;c.H!=g.Ka(c)&&(f*=g.Ya);g.nq=f;1.5>f&&(f=1.5);g.Vr=f;var p=g.pb[g.Ca(c)].getViewport(f);g.fb||(c.ia.width=p.width,c.ia.height=p.height);var q=c.ip={canvasContext:c.context,viewport:p,pageNumber:c.pageNumber,Eh:h&&!g.va?new sa:null};g.pb[g.Ca(c)].objs.geometryTextList=[];window.requestAnim(function(){c.ia.style.display="none";c.ia.redraw=c.ia.offsetHeight;c.ia.style.display="";g.Tf=g.pb[g.Ca(c)].render(q);g.Tf.onContinue=function(c){c();};g.Tf.promise.then(function(){g.Tf=null;if(null!=g.pb[g.Ca(c)]){if(g.va||c.rb&&c.scale<=g.qh(c)||!c.ia){g.va||g.Ol(g.pb[g.Ca(c)],c,p,g.va),g.Re(c,e);}else{var d=c.ia.height/g.getDimensions()[c.pageNumber].height,h=g.pb[g.Ca(c)].objs.geometryTextList;if(h){for(var f=0;f<h.length;f++){h[f].vp!=d&&(h[f].h=h[f].metrics.height/d,h[f].l=h[f].metrics.left/d,h[f].t=h[f].metrics.top/d,h[f].w=h[f].textMetrics.geometryWidth/d,h[f].d=h[f].unicode,h[f].f=h[f].fontFamily,h[f].vp=d);}"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H?g.xa.Il(h,g.Ca(c),g.getNumPages()):g.xa.Il(h,c.pageNumber,g.getNumPages());}g.Ol(g.pb[g.Ca(c)],c,p,g.va);g.Re(c,e);g.Da(c,!0,e);}}else{g.Re(c,e),M(c.pageNumber+"  is missing its pdf page ("+g.Ca(c)+")");}},function(c){O(c.toString(),"onDocumentLoadedError",g.P);g.Tf=null;});},50);}else{g.Ia(c,-1);}jQuery(c.V).removeClass("flowpaper_load_on_demand");}}}else{jQuery("#"+g.Ba(1,c)).xd(),jQuery("#"+g.Ba(2,c)).rc(),1==c.scale&&eb.browser.safari?(jQuery("#"+g.Ba(1,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+g.Ba(2,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+g.Ba(1,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+g.Ba(2,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","visible")),g.Ia(c,-1),c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0,g.Da(c,!0,e);}}else{window.clearTimeout(c.kc);}}}}},pl:function(c){var d=null,e=null;0!=c.pageNumber%2?(d=c,e=c.F.pages.pages[c.pageNumber-1]):(e=c,d=c.F.pages.pages[c.pageNumber+1]);if(c.H==this.Ka(c)&&!c.rb&&c.Jc&&d&&e&&(!d.ad||!e.ad)&&!this.Wg){var g=e.gd,d=d.gd;g&&d&&!c.ad&&e.Jc(g,d);}},qh:function(){return 1.1;},Ca:function(c){return this.va||PDFJS.disableWorker||null==c?this.Le:c.Le;},Ia:function(c,d){(!this.va||c&&c.rb&&1==c.scale)&&c&&(c.Le=d);this.Le=d;},pj:function(c){"Portrait"==c.H||"SinglePage"==c.H?jQuery(this.fo(1,c)).is(":visible")?(c.Eb=this.Ba(2,c),c.Lf=this.Ba(1,c)):(c.Eb=this.Ba(1,c),c.Lf=this.Ba(2,c)):c.H==this.Ka(c)?this.ub(c).pj(this,c):(c.Eb=this.Ba(1,c),c.Lf=null);this.fb&&0<c.pageNumber&&0==c.pageNumber%2?(c.ia=document.createElement("canvas"),c.ia.width=c.ia.height=100,c.ia.id=c.Eb+"_cropCanvas",c.Eb=c.Eb+"_cropCanvas"):c.ia=document.getElementById(c.Eb);null!=c.uo&&(c.uo=document.getElementById(c.Lf));c.ia&&c.ia.getContext&&(c.context=c.ia.getContext("2d"),c.context.ag=c.context.mozImageSmoothingEnabled=c.context.imageSmoothingEnabled=!1);},Dn:function(c,d,e,g){c=g.convertToViewportRectangle(d.rect);c=PDFJS.Util.normalizeRect(c);d=e.Vb();g=document.createElement("a");var h=e.H==this.Ka(e)?1:this.Ya;g.style.position="absolute";g.style.left=Math.floor(c[0])/h+d+"px";g.style.top=Math.floor(c[1])/h+"px";g.style.width=Math.ceil(c[2]-c[0])/h+"px";g.style.height=Math.ceil(c[3]-c[1])/h+"px";g.style["z-index"]=20;g.style.cursor="pointer";g.className="pdfPageLink_"+e.pageNumber+" flowpaper_interactiveobject_"+this.P;return g;},Ol:function(c,d,e,g){var h=this;if(1==d.scale||d.H!=h.Ka(d)){jQuery(".pdfPageLink_"+d.pageNumber).remove(),c.getAnnotations().then(function(e){for(var f=0;f<e.length;f++){var k=e[f];switch(k.subtype){case"Link":var n=h.Dn("a",k,d,c.getViewport(h.nq),c.view);n.style.position="absolute";n.href=k.url||"";eb.platform.touchonlydevice||(jQuery(n).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",d.F.linkColor);jQuery(this).css({opacity:d.F.Ic});}),jQuery(n).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));k.url||g?null!=n.href&&""!=n.href&&k.url&&(jQuery(n).on("click",function(){jQuery(d.L).trigger("onExternalLinkClicked",this.href);}),jQuery(d.ta).append(n)):(k="string"===typeof k.dest?h.destinations[k.dest][0]:null!=k&&null!=k.dest?k.dest[0]:null,k=k instanceof Object?h.yg[k.num+" "+k.gen+" R"]:k+1,jQuery(n).data("gotoPage",k+1),jQuery(n).on("click",function(){d.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}),jQuery(d.ta).append(n));}}});}},Re:function(c,d){this.Da(c,!0,d);jQuery("#"+c.Eb).xd();this.Pk(c);"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.Yb).remove();c.H==this.Ka(c)&&this.ub(c).Re(this,c,d);if(c.Eb&&0<c.Eb.indexOf("cropCanvas")){var e=c.ia;c.Eb=c.Eb.substr(0,c.Eb.length-11);c.ia=jQuery("#"+c.Eb).get(0);c.ia.width=e.width/2;c.ia.height=e.height;c.ia.getContext("2d").drawImage(e,e.width/2,0,c.ia.width,c.ia.height,0,0,e.width/2,e.height);jQuery(c.ia).xd();}c.rb||!c.Jc||c.ad||!c.ia||this.Wg||(c.gd=c.ia.toDataURL(),this.pl(c));if(c.gd&&1==c.scale&&!this.Wg){var g=jQuery("#"+this.Ba(1,c));requestAnim(function(){g.css("background-image").length<c.gd.length+5&&g.css("background-image","url("+c.gd+")");g[0].width=100;});}if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.na).removeClass("flowpaper_hidden"),jQuery(c.V+"_1").removeClass("flowpaper_hidden")),1==c.pageNumber&&jQuery(c.na).removeClass("flowpaper_hidden");}c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;c.Bl=!1;c.Lr=!1;this.If||(this.If=!0,c.F.vh());null!=d&&d();this.fe();},fe:function(){0<this.fi.length&&-1==this.Ca()&&this.$k.oa&&!this.$k.Fb&&this.fi.shift()();},Pk:function(c){"TwoPage"==c.H||"BookView"==c.H||c.H==this.Ka(c)&&!eb.browser.safari||jQuery("#"+c.Lf).rc();this.Ia(c,-1);},ja:function(c,d){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.sf&&(c=CryptoJS.De.encrypt(c.toString(),CryptoJS.qc.Ce.parse(eb.Sg?Q():eb.be.innerHTML)).toString());this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);if(!d){return this.pageSVGImagePattern?this.pageSVGImagePattern.replace("{page}",c):this.pageImagePattern.replace("{page}",c);}if(null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length){return this.pageThumbImagePattern.replace("{page}",c)+(0<this.pageThumbImagePattern.indexOf("?")?"&":"?")+"resolution="+d;}},unload:function(c){jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.H!=this.Ka(c)&&this.yl(c);c.rb&&(jQuery(c.ia).css("background-image","url("+this.fa+")"),c.U=null);null!=c.context&&null!=c.ia&&100!=c.ia.width&&(this.context=this.ia=c.ip=null,c.ej&&c.ej(),jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove());this.va&&(this.pb[c.pageNumber]&&this.pb[c.pageNumber].cleanup(),this.Ga[c.pageNumber]=null,this.pb[c.pageNumber]=null);c.Fg&&c.Fg();},Vl:function(c){var d=this;d.Ga&&d.Ga.getPage(d.sh).then(function(e){e.getTextContent().then(function(e){var h="";if(e){for(var f=0;f<e.items.length;f++){h+=e.items[f].str;}}d.ya[d.sh-1]=h.toLowerCase();d.sh+1<d.getNumPages()+1&&(d.sh++,d.Vl(c));});});},Dc:function(c,d,e,g){this.xa.Dc(c,d,e,g);},Cc:function(c,d,e,g){this.xa.Cc(c,d,e,g);},Ee:function(c,d,e,g){this.xa.Ee(c,d,e,g);},Da:function(c,d,e){var g=null!=this.S&&this.S[c.pageNumber]&&this.S[c.pageNumber].text&&0<this.S[c.pageNumber].text.length&&this.va;if(c.oa||d||g){c.xj!=c.scale&&(jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber).remove(),c.xj=c.scale),d=null!=this.Yf?this.Yf:e,this.Yf=null,this.xa&&this.xa.Da&&this.xa.Da(c,d);}else{if(null!=e){if(null!=this.Yf){var h=this.Yf;this.Yf=function(){h();e();};}else{this.Yf=e;}}}}};return f;}();function sa(){this.beginLayout=function(){this.textDivs=[];this.Dh=[];};this.endLayout=function(){};}var ra=window.TextOverlay=function(){function f(c,d,e,g){this.P=c;this.JSONPageDataFormat=e;this.S=[];this.Ma=null;this.Qa=[];this.Fa=this.rq=d;this.sb=g;this.state={};this.fa="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";}f.prototype={dispose:function(){delete this.P;this.P=null;delete this.S;this.S=null;delete this.JSONPageDataFormat;this.JSONPageDataFormat=null;delete this.Ma;this.Ma=null;delete this.Qa;this.Qa=null;delete this.state;this.state=null;delete this.fa;this.fa=null;delete this.sb;this.sb=null;},tp:function(){this.state[this.Fa]||(this.state[this.Fa]=[],this.state[this.Fa].S=this.S,this.state[this.Fa].Ma=this.Ma,this.state[this.Fa].Qa=this.Qa,window["wordPageList_"+this.P]=null);this.S=[];this.Ma=null;this.Qa=[];this.Fa=this.rq;},Ka:function(c){return c.F.I?c.F.I.W:"";},ub:function(c){return c.F.I.kq;},ln:function(c){return c.F.document.AutoDetectLinks;},xc:function(c){this.S=c;null==this.Ma&&(this.Ma=Array(c.length));window["wordPageList_"+this.P]=this.Qa;},Il:function(c,d,e){null==this.Ma&&(this.Ma=Array(e));this.S[d]=[];this.S[d].text=c;window["wordPageList_"+this.P]=this.Qa;},Dc:function(c,d,e,g){var h=c.pageNumber,f=!1,l=!1;if(!this.Ma){if(c.rb&&(this.Fa=!0),this.state[this.Fa]){if(this.S=this.state[this.Fa].S,this.Ma=this.state[this.Fa].Ma,this.Qa=this.state[this.Fa].Qa,window["wordPageList_"+this.P]=this.Qa,!this.Ma){return;}}else{return;}}if(window.annotations||!eb.touchdevice||g){if(window.annotations||c.F.mc||g||c.F.Tk||(f=!0),l=null!=this.ud&&null!=this.ud[c.pageNumber],"ThumbView"!=c.H){if("BookView"==c.H&&(0==c.pageNumber&&(h=0!=c.pages.R?c.pages.R-1:c.pages.R),1==c.pageNumber&&(h=c.pages.R),0==c.pages.getTotalPages()%2&&h==c.pages.getTotalPages()&&(h=h-1),0==c.pages.R%2&&c.pages.R>c.pages.getTotalPages())){return;}"SinglePage"==c.H&&(h=c.pages.R);if("TwoPage"==c.H&&(0==c.pageNumber&&(h=c.pages.R),1==c.pageNumber&&(h=c.pages.R+1),1==c.pageNumber&&h>=c.pages.getTotalPages()&&0!=c.pages.getTotalPages()%2)){return;}d=c.Xa||!d;c.H==this.Ka(c)&&(isvisble=this.ub(c).Hc(this,c));g=jQuery(".flowpaper_pageword_"+this.P+"_page_"+h+":not(.flowpaper_annotation_"+this.P+")"+(g?":not(.pdfPageLink_"+h+")":"")).length;var k=null!=c.dimensions.nb?c.dimensions.nb:c.dimensions.ma,k=this.sb?c.wa()/k:1;if(d&&0==g){var n=g="",p=0,q=h;c.F.config.document.RTLMode&&(q=c.pages.getTotalPages()-h-1);if(null==this.Ma[q]||!this.sb){if(null==this.S[q]){return;}this.Ma[q]=this.S[q][this.JSONPageDataFormat.ze];}if(null!=this.Ma[q]){c.rb&&(this.Fa=!0);var t=new WordPage(this.P,h),h=c.Vb(),r=[],x=c.ld(),C=c.Cf(),v=!1,w=-1,u=-1,D=0,B=-1,H=-1,z=!1;this.Qa[q]=t;c.H==this.Ka(c)&&(k=this.ub(c).ao(this,c,k));c.ks=k;for(var G=0,A;A=this.Ma[q][G++];){var F=G-1,y=this.Fa?A[5]:A[this.JSONPageDataFormat.qb],E=G,I=G+1,K=G<this.Ma[q].length?this.Ma[q][G]:null,N=G+1<this.Ma[q].length?this.Ma[q][G+1]:null,v=K?this.Fa?K[5]:K[this.JSONPageDataFormat.qb]:"",L=N?this.Fa?N[5]:N[this.JSONPageDataFormat.qb]:"";" "==v&&(E=G+1,I=G+2,v=(K=E<this.Ma[q].length?this.Ma[q][E]:null)?this.Fa?K[5]:K[this.JSONPageDataFormat.qb]:"",L=(N=I<this.Ma[q].length?this.Ma[q][I]:null)?this.Fa?N[5]:N[this.JSONPageDataFormat.qb]:"");K=N=null;if(null==y){M("word not found in node");e&&e();return;}0==y.length&&(y=" ");z=null;if(-1==y.indexOf("actionGoToR")&&-1==y.indexOf("actionGoTo")&&-1==y.indexOf("actionURI")&&this.ln(c)){if(z=y.match(/\b((?:[a-z][\w-]+:(?:\/{1,3}|[0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig)){y="actionURI("+z[0]+"):"+z[0],this.Ma[q][F][this.Fa?5:this.JSONPageDataFormat.qb]=y;}!z&&-1<y.indexOf("@")&&(z=y.trim().match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi),!z&&(z=(y.trim()+v.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(v="actionURI(mailto:"+z[0]+"):"+z[0],this.Ma[q][E][this.Fa?5:this.JSONPageDataFormat.qb]=v),!z&&(z=(y.trim()+v.trim()+L.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(v="actionURI(mailto:"+z[0]+"):"+z[0],this.Ma[q][E][this.Fa?5:this.JSONPageDataFormat.qb]=v,L="actionURI(mailto:"+z[0]+"):"+z[0],this.Ma[q][I][this.Fa?5:this.JSONPageDataFormat.qb]=L),z&&(y=z[0],y.endsWith(".")&&(y=y.substr(0,y.length-1)),y="actionURI(mailto:"+y+"):"+y,this.Ma[q][F][this.Fa?5:this.JSONPageDataFormat.qb]=y));}if(0<=y.indexOf("actionGoToR")){N=y.substring(y.indexOf("actionGoToR")+12,y.indexOf(",",y.indexOf("actionGoToR")+13)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionGoTo")){N=y.substring(y.indexOf("actionGoTo")+11,y.indexOf(",",y.indexOf("actionGoTo")+12)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionURI")||z){if(0<=y.indexOf("actionURI(")&&0<y.indexOf("):")?(K=y.substring(y.indexOf("actionURI(")+10,y.lastIndexOf("):")),y=y.substring(y.indexOf("):")+2)):(K=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10)),-1==K.indexOf("http")&&-1==K.indexOf("mailto")&&0!=K.indexOf("/")){K="http://"+K;}else{if(!z){for(F=G,E=this.Fa?A[5]:A[this.JSONPageDataFormat.qb],I=1;2>=I;I++){for(F=G;F<this.Ma[q].length&&0<=this.Ma[q][F].toString().indexOf("actionURI")&&-1==this.Ma[q][F].toString().indexOf("actionURI(");){v=this.Ma[q][F],z=this.Fa?v[5]:v[this.JSONPageDataFormat.qb],1==I?0<=z.indexOf("actionURI")&&11<z.length&&-1==z.indexOf("http://")&&-1==z.indexOf("https://")&&-1==z.indexOf("mailto")&&(E+=z.substring(z.indexOf("actionURI")+10)):this.Fa?v[5]=E:v[this.JSONPageDataFormat.qb],F++;}2==I&&-1==E.indexOf("actionURI(")&&(y=E,K=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10));}}}}}}if(N||K||!f||l){E=(this.Fa?A[0]:A[this.JSONPageDataFormat.Ab])*k+0;I=(this.Fa?A[1]:A[this.JSONPageDataFormat.lc])*k+0;F=(this.Fa?A[2]:A[this.JSONPageDataFormat.zd])*k;A=(this.Fa?A[3]:A[this.JSONPageDataFormat.yd])*k;t.Cp(p,y);v=-1!=w&&w!=E;z=G==this.Ma[q].length;I+F>x&&(F=x-I);E+A>C&&(A=C-E);r[p]={};r[p].left=I;r[p].right=I+F;r[p].top=E;r[p].bottom=E+A;r[p].el="#"+this.P+"page_"+q+"_word_"+p;r[p].i=p;r[p].ml=N;r[p].jm=K;g+="<span id='"+this.P+"page_"+q+"_word_"+p+"' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+q+" flowpaper_pageword_"+this.P+(null!=N||null!=K?" pdfPageLink_"+c.pageNumber:"")+"' style='left:"+I+"px;top:"+E+"px;width:"+F+"px;height:"+A+"px;margin-left:0px;"+(r[p].ml||r[p].jm?"cursor:hand;":"")+";"+(eb.browser.msie?"background-image:url("+this.fa+");color:transparent;":"")+"'>"+(c.F.Tk?y:"")+"</span>";if(null!=N||null!=K){L=document.createElement("a");L.style.position="absolute";L.style.left=Math.floor(I)+h+"px";L.style.top=Math.floor(E)+"px";L.style.width=Math.ceil(F)+"px";L.style.height=Math.ceil(A)+"px";L.style["margin-left"]=h;L.style.cursor="pointer";L.setAttribute("data-href",null!=K?K:"");L.setAttribute("rel","nofollow noopener");jQuery(L).css("z-index","99");L.className="pdfPageLink_"+c.pageNumber+" flowpaper_interactiveobject_"+this.P+" flowpaper_pageword_"+this.P+"_page_"+q+" gotoPage_"+N+" flowpaper_pageword_"+this.P;eb.platform.touchonlydevice&&(L.style.background=c.F.linkColor,L.style.opacity=c.F.Ic);null!=N&&(jQuery(L).data("gotoPage",N),jQuery(L).on("click touchstart",function(){c.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}));if(null!=K){jQuery(L).on("click touchstart",function(d){jQuery(c.L).trigger("onExternalLinkClicked",this.getAttribute("data-href"));d.stopImmediatePropagation();d.preventDefault();return !1;});}eb.platform.touchonlydevice||(jQuery(L).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",c.F.linkColor);jQuery(this).css({opacity:c.F.Ic});}),jQuery(L).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.V+"_1_textoverlay").append(L),1==c.pageNumber&&jQuery(c.V+"_2_textoverlay").append(L)):jQuery(c.ta).append(L);}eb.platform.touchdevice&&"Portrait"==c.H&&(v||z?(z&&(D+=F,n=n+"<div style='float:left;width:"+F+"px'>"+(" "==y?"&nbsp;":y)+"</div>"),n="<div id='"+this.P+"page_"+q+"_word_"+p+"_wordspan' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+q+" flowpaper_pageword_"+this.P+"' style='color:transparent;left:"+B+"px;top:"+w+"px;width:"+D+"px;height:"+u+"px;margin-left:"+H+"px;font-size:"+u+"px"+(r[p].ml||r[p].jm?"cursor:hand;":"")+"'>"+n+"</div>",jQuery(c.Zi).append(n),w=E,u=A,D=F,B=I,H=h,n="<div style='background-colorfloat:left;width:"+F+"px'>"+(" "==y?"&nbsp;":y)+"</div>"):(-1==B&&(B=I),-1==H&&(H=h),-1==w&&(w=E),-1==u&&(u=A),n=n+"<div style='float:left;width:"+F+"px'>"+(" "==y?"&nbsp;":y)+"</div>",D+=F,u=A));}p++;}t.zp(r);"Portrait"==c.H&&(0==jQuery(c.xb).length&&(f=c.xg,F=c.wa(),A=c.Ha(),h=c.Vb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+A+"px;margin-left:"+h+"px;'></div>",jQuery(c.ta).append(f)),jQuery(c.xb).append(g));"SinglePage"==c.H&&(0==jQuery(c.xb).length&&(f=c.xg,F=c.wa(),A=c.Ha(),h=c.Vb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+A+"px;margin-left:"+h+"px;'></div>",jQuery(c.ta).append(f)),jQuery(c.xb).append(g));c.H==this.Ka(c)&&(0==jQuery(c.xb).length&&(f=c.sd+"_textLayer",F=c.wa(),A=c.Ha(),h=c.Vb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+A+"px;margin-left:"+h+"px;'></div>",jQuery(c.ta).append(f)),this.ub(c).kn(this,c,g));if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&jQuery(c.V+"_1_textoverlay").append(g),1==c.pageNumber&&jQuery(c.V+"_2_textoverlay").append(g);}d&&jQuery(c).trigger("onAddedTextOverlay",c.pageNumber);if(l){for(l=0;l<this.ud[c.pageNumber].length;l++){this.bn(c,this.ud[c.pageNumber][l].Np,this.ud[c.pageNumber][l].lq);}}}}null!=e&&e();}}else{e&&e();}},Cc:function(c,d,e,g,h){var f=this;window.annotations||jQuery(c).unbind("onAddedTextOverlay");var l="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(l=l-2);"SinglePage"==c.H&&(l=c.pages.R);if((c.Xa||!e)&&c.F.Ua-1==l){jQuery(".flowpaper_selected").removeClass("flowpaper_selected");jQuery(".flowpaper_selected_searchmatch").removeClass("flowpaper_selected_searchmatch");jQuery(".flowpaper_selected_default").removeClass("flowpaper_selected_default");jQuery(".flowpaper_tmpselection").remove();var k=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+"):not(.pdfPageLink_"+c.pageNumber+")").length;h&&(k=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+")").length);if(f.Qa[l]&&0!=k){h=f.Qa[l].Hh;for(var k="",n=0,p=0,q=-1,t=-1,r=d.split(" "),x=0,C=0,v=0;v<h.length;v++){var w=(h[v]+"").toLowerCase(),x=x+w.length;x>g&&x-d.length<=g+C&&(C+=d.length);w||jQuery.trim(w)!=d&&jQuery.trim(k+w)!=d||(w=jQuery.trim(w));if(0==d.indexOf(k+w)&&(k+w).length<=d.length&&" "!=k+w){if(k+=w,-1==q&&(q=n,t=n+1),d.length==w.length&&(q=n),k.length==d.length){if(p++,c.F.ue==p){if("Portrait"==c.H||"SinglePage"==c.H){eb.browser.capabilities.yb?jQuery("#pagesContainer_"+f.P).scrollTo(jQuery(f.Qa[l].Za[q].el),0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(jQuery(f.Qa[l].Za[q].el),!1);}for(var u=q;u<n+1;u++){c.H==f.Ka(c)?(w=jQuery(f.Qa[l].Za[u].el).clone(),f.ub(c).dk(f,c,w,d,!0,u==q,u==n)):(jQuery(f.Qa[l].Za[u].el).addClass("flowpaper_selected"),jQuery(f.Qa[l].Za[u].el).addClass("flowpaper_selected_default"),jQuery(f.Qa[l].Za[u].el).addClass("flowpaper_selected_searchmatch"));}}else{k="",q=-1;}}}else{if(0<=(k+w).indexOf(r[0])){-1==q&&(q=n,t=n+1);k+=w;if(1<r.length){for(w=0;w<r.length-1;w++){0<r[w].length&&h.length>n+1+w&&0<=(k+h[n+1+w]).toLowerCase().indexOf(r[w])?(k+=h[n+1+w].toLowerCase(),t=n+1+w+1):(k="",t=q=-1);}}-1==k.indexOf(d)&&(k="",t=q=-1);u=(k.match(new RegExp(d.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"g"))||[]).length;if(0<k.length){for(var D=0;D<u;D++){if(-1<k.indexOf(d)&&p++,c.F.ue==p){for(var B=jQuery(f.Qa[l].Za[q].el),H=parseFloat(B.css("left").substring(0,B.css("left").length-2))-(c.H==f.Ka(c)?c.Vb():0),w=B.clone(),z=0,G=0,A=0;q<t;q++){z+=parseFloat(jQuery(f.Qa[l].Za[q].el).css("width").substring(0,B.css("width").length-2));}G=1-(k.length-d.length)/k.length;t=-1;for(q=0;q<D+1;q++){t=k.indexOf(d,t+1),A=t/k.length;}w.addClass("flowpaper_tmpselection");w.attr("id",w.attr("id")+"tmp");w.addClass("flowpaper_selected");w.addClass("flowpaper_selected_searchmatch");w.addClass("flowpaper_selected_default");w.css("width",z*G+"px");w.css("left",H+z*A+"px");if("Portrait"==c.H||"SinglePage"==c.H){jQuery(c.xb).append(w),eb.browser.capabilities.yb?jQuery("#pagesContainer_"+f.P).scrollTo(w,0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(w,!1);}c.H==f.Ka(c)&&f.ub(c).dk(f,c,w,d);"BookView"==c.H&&(0==l?jQuery("#dummyPage_0_"+f.P+"_1_textoverlay").append(w):jQuery("#dummyPage_"+(l-1)%2+"_"+f.P+"_"+((l-1)%2+1)+"_textoverlay").append(w));"TwoPage"==c.H&&jQuery("#dummyPage_"+l%2+"_"+f.P+"_"+(l%2+1)+"_textoverlay").append(w);t=q=-1;}else{D==u-1&&(k="",t=q=-1);}}}}else{0<k.length&&(k="",q=-1);}}n++;}}else{jQuery(c).bind("onAddedTextOverlay",function(){f.Cc(c,d,e,g,!0);}),f.Dc(c,e,null,!0);}}},Ee:function(c,d,e){null==this.ud&&(this.ud=Array(this.Ma.length));null==this.ud[c.pageNumber]&&(this.ud[c.pageNumber]=[]);var g={};g.Np=d;g.lq=e;this.ud[c.pageNumber][this.ud[c.pageNumber].length]=g;},bn:function(c,d,e){jQuery(c).unbind("onAddedTextOverlay");var g="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(g=g-2);"SinglePage"==c.H&&(g=c.pages.R);for(var h=this.Qa[g].Hh,f=-1,l=-1,k=0,n=0;n<h.length;n++){var p=h[n]+"";k>=d&&-1==f&&(f=n);if(k+p.length>=d+e&&-1==l&&(l=n,-1!=f)){break;}k+=p.length;}for(d=f;d<l+1;d++){c.H==this.Ka(c)?jQuery(this.Qa[g].Za[d].el).clone():(jQuery(this.Qa[g].Za[d].el).addClass("flowpaper_selected"),jQuery(this.Qa[g].Za[d].el).addClass("flowpaper_selected_yellow"),jQuery(this.Qa[g].Za[d].el).addClass("flowpaper_selected_searchmatch"));}},Da:function(c,d){this.Dc(c,null==d,d);}};return f;}();window.WordPage=function(f,c){this.P=f;this.pageNumber=c;this.Hh=[];this.Za=null;this.Cp=function(c,e){this.Hh[c]=e;};this.zp=function(c){this.Za=c;};this.match=function(c,e){var g,h=null;g="#page_"+this.pageNumber+"_"+this.P;0==jQuery(g).length&&(g="#dummyPage_"+this.pageNumber+"_"+this.P);g=jQuery(g).offset();"SinglePage"==window.$FlowPaper(this.P).H&&(g="#dummyPage_0_"+this.P,g=jQuery(g).offset());if("TwoPage"==window.$FlowPaper(this.P).H||"BookView"==window.$FlowPaper(this.P).H){g=0==this.pageNumber||"TwoPage"==window.$FlowPaper(this.P).H?jQuery("#dummyPage_"+this.pageNumber%2+"_"+this.P+"_"+(this.pageNumber%2+1)+"_textoverlay").offset():jQuery("#dummyPage_"+(this.pageNumber-1)%2+"_"+this.P+"_"+((this.pageNumber-1)%2+1)+"_textoverlay").offset();}c.top=c.top-g.top;c.left=c.left-g.left;for(g=0;g<this.Za.length;g++){this.so(c,this.Za[g],e)&&(null==h||null!=h&&h.top<this.Za[g].top||null!=h&&h.top<=this.Za[g].top&&null!=h&&h.left<this.Za[g].left)&&(h=this.Za[g],h.pageNumber=this.pageNumber);}return h;};this.hl=function(c){for(var e=0;e<this.Za.length;e++){if(this.Za[e]&&this.Za[e].el=="#"+c){return this.Za[e];}}return null;};this.so=function(c,e,g){return e?g?c.left+3>=e.left&&c.left-3<=e.right&&c.top+3>=e.top&&c.top-3<=e.bottom:c.left+3>=e.left&&c.top+3>=e.top:!1;};this.zf=function(c,e){var g=window.a,h=window.b,f=new ta,l,k,n=0,p=-1;if(null==g){return f;}if(g&&h){var q=[],t;g.top>h.top?(l=h,k=g):(l=g,k=h);for(l=l.i;l<=k.i;l++){if(this.Za[l]){var r=jQuery(this.Za[l].el);0!=r.length&&(t=parseInt(r.attr("id").substring(r.attr("id").indexOf("word_")+5)),p=parseInt(r.attr("id").substring(r.attr("id").indexOf("page_")+5,r.attr("id").indexOf("word_")-1))+1,0<=t&&q.push(this.Hh[t]),n++,c&&(r.addClass("flowpaper_selected"),r.addClass(e),"flowpaper_selected_strikeout"!=e||r.data("adjusted")||(t=r.height(),r.css("margin-top",t/2-t/3/1.5),r.height(t/2.3),r.data("adjusted",!0))));}}eb.platform.touchonlydevice||jQuery(".flowpaper_selector").val(q.join("")).select();}else{eb.platform.touchdevice||jQuery("#selector").val("");}f.Fr=n;f.ys=g.left;f.zs=g.right;f.As=g.top;f.xs=g.bottom;f.us=g.left;f.vs=g.right;f.ws=g.top;f.ts=g.bottom;f.Rn=null!=q&&0<q.length?q[0]:null;f.Nr=null!=q&&0<q.length?q[q.length-1]:f.Rn;f.Sn=null!=g?g.i:-1;f.Or=null!=h?h.i:f.Sn;f.text=null!=q?q.join(""):"";f.page=p;f.ss=this;return f;};};function ta(){}function U(f){var c=hoverPage;if(f=window["wordPageList_"+f]){return f.length>=c?f[c]:null;}}var W=function(){function f(c,d,e,g){this.F=d;this.L=c;this.pages={};this.selectors={};this.container="pagesContainer_"+e;this.J="#"+this.container;this.R=null==g?0:g-1;this.ye=g;this.Rd=this.Vf=null;this.$c=this.Zc=-1;this.se=this.rd=0;this.initialized=!1;this.ga=eb.platform.touchonlydevice&&!eb.platform.lb?30:22;this.P=this.F.P;this.document=this.F.document;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},Yi:function(){null!=this.ri&&(window.clearTimeout(this.ri),this.ri=null);this.F.I&&this.F.H==this.F.I.W&&this.F.I.jb.Yi(this);},Mb:function(){return this.F.I&&this.F.H==this.F.I.W&&this.F.I.jb.Mb(this)||"SinglePage"==this.F.H;},lp:function(){return !(this.F.I&&this.F.I.jb.Mb(this));},Oa:function(c,d,e){var g=this.F.scale;this.F.scale=c;if("TwoPage"==this.F.H||"BookView"==this.F.H){var h=100*c+"%";eb.platform.touchdevice||this.M(this.J).css({width:h,"margin-left":this.Ef()});}this.pages[0]&&(this.pages[0].scale=c);if("Portrait"==this.F.H||"SinglePage"==this.F.H){for(h=this.tg=0;h<this.document.numPages;h++){if(this.Sa(h)){var f=this.pages[h].wa(c);f>this.tg&&(this.tg=f);}}}for(h=0;h<this.document.numPages;h++){this.Sa(h)&&(this.pages[h].scale=c,this.pages[h].Oa());}this.F.I&&this.F.H==this.F.I.W&&this.F.I.jb.Oa(this,g,c,d,e);},dispose:function(){for(var c=0;c<this.document.numPages;c++){this.pages[c].dispose(),delete this.pages[c];}this.selectors=this.pages=this.L=this.F=null;},resize:function(c,d,e){if("Portrait"==this.F.H||"SinglePage"==this.F.H){d+=eb.browser.capabilities.yb?0:14,c=c-(eb.browser.msie?0:2);}"ThumbView"==this.F.H&&(d=d-10);this.M(this.J).css({width:c,height:d});"TwoPage"==this.F.H&&(this.F.Dj=this.L.height()-(eb.platform.touchdevice?0:27),this.F.Eg=c/2-2,this.M(this.J).height(this.F.Dj),this.M("#"+this.container+"_2").css("left",this.M("#"+this.container).width()/2),eb.platform.touchdevice||(this.M(this.J+"_1").width(this.F.Eg),this.M(this.J+"_2").width(this.F.Eg)));if(this.F.I&&this.F.H==this.F.I.W){this.F.I.jb.resize(this,c,d,e);}else{for(this.ed(),c=0;c<this.document.numPages;c++){this.Sa(c)&&this.pages[c].Oa();}}this.Hj=null;null!=this.jScrollPane&&(this.jScrollPane.data("jsp").reinitialise(this.Yc),this.jScrollPane.data("jsp").scrollTo(this.Zc,this.$c,!1));},me:function(c){var d=this;if(!d.ba){var e=!1;"function"===typeof d.Hi&&d.Cr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!1);d.Mb()||(jQuery(".flowpaper_pageword_"+d.P).remove(),setTimeout(function(){"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.jc();d.Da();e&&d.getPage(d.F.Ua-1).Cc(d.F.Sd,!1);},500));d.F.I&&d.F.H==d.F.I.W?d.F.I.jb.me(d,c):d.Oa(1);null!=d.jScrollPane?(d.jScrollPane.data("jsp").reinitialise(d.Yc),d.jScrollPane.data("jsp").scrollTo(d.Zc,d.$c,!1)):"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.M(d.J).parent().scrollTo({left:d.Zc+"px",top:d.$c+"px"},0,{axis:"xy"});}},md:function(c){var d=this;if(!d.ba){var e=!1;null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!0);"function"===typeof d.Hi&&d.Dr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});d.Mb()||jQuery(".flowpaper_pageword_"+d.P).remove();d.F.I&&d.F.H==d.F.I.W?d.F.I.jb.md(d,c):d.Oa(window.FitHeightScale);setTimeout(function(){d.Da();e&&d.getPage(d.F.Ua-1).Cc(d.F.Sd,!1);},500);d.Da();null!=d.jScrollPane?(d.jScrollPane.data("jsp").scrollTo(0,0,!1),d.jScrollPane.data("jsp").reinitialise(d.Yc)):d.M(d.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}},Xi:function(){var c=this;c.He();if(c.F.I&&c.F.H==c.F.I.W){c.F.I.jb.Xi(c);}else{if("SinglePage"==c.F.H||"TwoPage"==c.F.H||"BookView"==c.F.H){c.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){if(!c.F.Xc&&!window.Cb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.next(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-5,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.ma/c.getPage(g).dimensions.za,d=Math.round(100*(d/(c.getPage(g).La*h)-0.03));100*c.F.scale<1.2*d&&c.next();}},wipeRight:function(){if(!c.F.Xc&&!window.Cb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.previous(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-15,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.ma/c.getPage(g).dimensions.za,d=Math.round(100*(d/(c.getPage(g).La*h)-0.03));100*c.F.scale<1.2*d&&c.previous();}},preventDefaultEvents:"TwoPage"==c.F.H||"BookView"==c.F.H||"SinglePage"==c.F.H,min_move_x:eb.platform.lb?150:200,min_move_y:500});}}if(eb.platform.mobilepreview){c.M(c.J).on("mousedown",function(d){c.Zc=d.pageX;c.$c=d.pageY;});}c.M(c.J).on("touchstart",function(d){c.Zc=d.originalEvent.touches[0].pageX;c.$c=d.originalEvent.touches[0].pageY;});c.M(c.J).on(eb.platform.mobilepreview?"mouseup":"touchend",function(){null!=c.F.pages.jScrollPane&&c.F.pages.jScrollPane.data("jsp").enable&&c.F.pages.jScrollPane.data("jsp").enable();if(null!=c.gb&&"SinglePage"==c.F.H){for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&c.M(c.pages[d].na).transition({y:0,scale:1},0,"ease",function(){c.ba>c.F.scale&&c.ba-c.F.scale<c.F.document.ZoomInterval&&(c.ba+=c.F.document.ZoomInterval);0<c.Uc-c.ce&&c.ba<c.F.scale&&(c.ba=c.F.scale+c.F.document.ZoomInterval);c.F.hb(c.ba,{kg:!0});c.ba=null;});}c.pages[0]&&c.pages[0].He();c.M(c.J).addClass("flowpaper_pages_border");c.bj=c.gb<c.ba;c.gb=null;c.Rf=null;c.ba=null;c.wb=null;c.sc=null;}});if(c.F.I&&c.F.H==c.F.I.W){c.F.I.jb.fk(c);}else{if(eb.platform.touchdevice){var d=c.M(c.J);d.doubletap(function(d){if("TwoPage"==c.F.H||"BookView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1!=c.F.scale||c.md():c.me(),d.preventDefault();}},null,300);}else{c.F.Wb&&(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Mi);d.preventDefault();d.stopImmediatePropagation();},null,300));}}c.M(c.J).on("scroll gesturechange",function(){"SinglePage"==c.F.H?c.F.renderer.mb&&!c.ba&&c.F.renderer.Nc(c.pages[0]):c.F.I&&c.F.H==c.F.I.W||(eb.platform.ios&&c.ij(-1*c.M(c.J).scrollTop()),eb.platform.ios?(setTimeout(function(){c.Gg();c.cd();},1000),setTimeout(function(){c.Gg();c.cd();},2000),setTimeout(function(){c.Gg();c.cd();},3000)):c.Gg(),c.cd(),c.Da(),null!=c.Vf&&(window.clearTimeout(c.Vf),c.Vf=null),c.Vf=setTimeout(function(){c.Ok();window.clearTimeout(c.Vf);c.Vf=null;},100),c.Wr=!0);});this.Ok();},fk:function(){},ij:function(c){for(var d=0;d<this.document.numPages;d++){this.Sa(d)&&this.pages[d].ij(c);}},bm:function(){var c=this.M(this.J).css("transform")+"";null!=c&&(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.replace("px",""),c=c.split(","),this.rd=parseFloat(c[0]),this.se=parseFloat(c[1]),isNaN(this.rd)&&(this.se=this.rd=0));},mk:function(c,d){this.M(this.J).transition({x:this.rd+(c-this.wb)/this.F.scale,y:this.se+(d-this.sc)/this.F.scale},0);},Ug:function(c,d){this.F.I&&this.F.I.jb.Ug(this,c,d);},co:function(c,d){var e=this.L.width();return c/d-this.Ad/e/d*e;},eo:function(c){var d=this.L.height();return c/this.F.scale-this.Bd/d/this.F.scale*d;},He:function(){this.F.I&&this.F.I.jb.He(this);},Fi:function(){if(this.F.I){return this.F.I.jb.Fi(this);}},getTotalPages:function(){return this.document.numPages;},ji:function(c){var d=this;c.empty();jQuery(d.F.renderer).on("onTextDataUpdated",function(){d.Da(d);});null!=d.F.Rd||d.F.document.DisableOverflow||d.F.ab||(d.F.Rd=d.L.height(),eb.platform.touchonlydevice?d.F.Rb||d.L.height(d.F.Rd-10):d.L.height(d.F.Rd-27));var e=d.F.I&&d.F.I.backgroundColor?"background-color:"+d.F.I.backgroundColor+";":"";d.F.I&&d.F.I.backgroundImage&&(e="background-color:transparent;");if("Portrait"==d.F.H||"SinglePage"==d.F.H){eb.platform.touchonlydevice&&"SinglePage"==d.F.H&&(eb.browser.capabilities.yb=!1);var g=jQuery(d.F.K).height()+(window.zine&&"Portrait"==d.F.vb?20:0),h=eb.platform.touchonlydevice?31:26;window.zine&&"Portrait"!=d.F.vb&&(h=eb.platform.touchonlydevice?41:36);var g=d.L.height()+(eb.browser.capabilities.yb?window.annotations?0:h-g:-5),h=d.L.width()-2,f=1<d.ye?"visibility:hidden;":"",l=eb.browser.msie&&9>eb.browser.version?"position:relative;":"";d.F.document.DisableOverflow?c.append("<div id='"+d.container+"' class='flowpaper_pages' style='overflow:hidden;padding:0;margin:0;'></div>"):c.append("<div id='"+d.container+"' class='flowpaper_pages "+(window.annotations?"":"flowpaper_pages_border")+"' style='"+(eb.platform.km?"touch-action: none;":"")+"-moz-user-select:none;-webkit-user-select:none;"+l+";"+f+"height:"+g+"px;width:"+h+"px;overflow-y: auto;overflow-x: auto;;-webkit-overflow-scrolling: touch;-webkit-backface-visibility: hidden;-webkit-perspective: 1000;"+e+";'></div>");d.F.document.DisableOverflow||(eb.browser.capabilities.yb?eb.platform.touchonlydevice?(jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):jQuery(c).css("-webkit-overflow-scrolling","hidden"));eb.platform.touchdevice&&(eb.platform.ipad||eb.platform.iphone||eb.platform.android||eb.platform.km)&&(jQuery(d.J).on("touchmove",function(c){if(!eb.platform.ios&&2==c.originalEvent.touches.length&&(d.F.pages.jScrollPane&&d.F.pages.jScrollPane.data("jsp").disable(),1!=d.ni)){c.preventDefault&&c.preventDefault();c.returnValue=!1;c=Math.sqrt((c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)*(c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)+(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY)*(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY));c*=2;null==d.ba&&(d.M(d.J).removeClass("flowpaper_pages_border"),d.gb=1,d.Rf=c);null==d.ba&&(d.gb=1,d.ce=1+(jQuery(d.pages[0].na).width()-d.L.width())/d.L.width());var e=c=(d.gb+(c-d.Rf)/jQuery(d.J).width()-d.gb)/d.gb;d.Mb()||(1<e&&(e=1),-0.3>e&&(e=-0.3),0<c&&(c*=0.7));d.Uc=d.ce+d.ce*c;d.Uc<d.F.document.MinZoomSize&&(d.Uc=d.F.document.MinZoomSize);d.Uc>d.F.document.MaxZoomSize&&(d.Uc=d.F.document.MaxZoomSize);d.zc=1+(d.Uc-d.ce);d.ba=d.pages[0].Fk(jQuery(d.pages[0].na).width()*d.zc);d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);jQuery(d.pages[0].na).width()>jQuery(d.pages[0].na).height()?d.ba<d.F.eh()&&(d.zc=d.vg,d.ba=d.F.eh()):d.ba<d.F.Ue()&&(d.zc=d.vg,d.ba=d.F.Ue());d.vg=d.zc;if(d.Mb()&&0<d.zc){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Sa(c)&&jQuery(d.pages[c].na).transition({transformOrigin:"50% 50%",scale:d.zc},0,"ease",function(){});}}}}),jQuery(d.J).on("touchstart",function(){}),jQuery(d.J).on("gesturechange",function(c){if(1!=d.iq&&1!=d.ni){d.F.renderer.mb&&jQuery(".flowpaper_flipview_canvas_highres").hide();null==d.ba&&(d.gb=1,d.ce=1+(jQuery(d.pages[0].na).width()-d.L.width())/d.L.width());var e,g=e=(c.originalEvent.scale-d.gb)/d.gb;d.Mb()||(1<g&&(g=1),-0.3>g&&(g=-0.3),0<e&&(e*=0.7));d.Uc=d.ce+d.ce*e;d.Uc<d.F.document.MinZoomSize&&(d.Uc=d.F.document.MinZoomSize);d.Uc>d.F.document.MaxZoomSize&&(d.Uc=d.F.document.MaxZoomSize);d.zc=1+(d.Uc-d.ce);d.ba=d.pages[0].Fk(jQuery(d.pages[0].na).width()*d.zc);jQuery(d.pages[0].na).width()>jQuery(d.pages[0].na).height()?d.ba<d.F.eh()&&(d.zc=d.vg,d.ba=d.F.eh()):d.ba<d.F.Ue()&&(d.zc=d.vg,d.ba=d.F.Ue());d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);c.preventDefault&&c.preventDefault();d.vg=d.zc;if(d.Mb()&&0<d.zc){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Sa(c)&&jQuery(d.pages[c].na).transition({transformOrigin:"50% 50%",scale:d.zc},0,"ease",function(){});}}!d.Mb()&&(0.7<=g||-0.3>=g)&&(d.iq=!0,d.ba>d.F.scale&&d.ba-d.F.scale<d.F.document.ZoomInterval&&(d.ba+=d.F.document.ZoomInterval),d.F.hb(d.ba),d.ba=null);}}),jQuery(d.J).on("gestureend",function(){}));d.F.renderer.qa&&jQuery(d.F.renderer).bind("onTextDataUpdated",function(c,e){for(var g=e+12,h=e-2;h<g;h++){var f=d.getPage(h);if(f){var m=jQuery(f.na).get(0);if(m){var l=f.wa(),C=f.Ha(),v=1.5<d.F.renderer.Ya?d.F.renderer.Ya:1.5;m.width!=l*v&&(jQuery(m).data("needs-overlay",1),d.F.document.DisableOverflow&&(v=2),m.width=l*v,m.height=C*v,f.Td(m).then(function(c){if(d.F.document.DisableOverflow){var e=jQuery(c).css("background-image");0<e.length&&"none"!=e?(jQuery(c).css("background-image","url('"+c.toDataURL()+"'),"+e),e=jQuery(c).attr("id").substr(5,jQuery(c).attr("id").lastIndexOf("_")-5),jQuery("#"+d.P).trigger("onPageLoaded",parseInt(e)+1),P(c)):jQuery(c).css("background-image","url('"+c.toDataURL()+"')");}}));}}}});}if("TwoPage"==d.F.H||"BookView"==d.F.H){g=d.L.height()-(eb.browser.msie?37:0),h=d.L.width()-(eb.browser.msie?0:20),e=0,1==d.F.da&&"BookView"==d.F.H&&(e=h/3,h-=e),eb.platform.touchdevice?eb.browser.capabilities.yb?(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;width:100%;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div>"),jQuery(c).css("overflow-y","scroll"),jQuery(c).css("overflow-x","scroll"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(c.append("<div id='"+d.container+"_jpane' style='-moz-user-select:none;-webkit-user-select:none;height:"+g+"px;width:100%;"+(window.eb.browser.msie||eb.platform.android?"overflow-y: scroll;overflow-x: scroll;":"overflow-y: auto;overflow-x: auto;")+";-webkit-overflow-scrolling: touch;'><div id='"+d.container+"' style='margin-left:"+e+"px;position:relative;height:100%;width:100%' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div></div>"),jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div><div id='"+d.container+"_2' class='flowpaper_pages "+("BookView"==d.F.H&&2>d.ye?"flowpaper_hidden":"")+"' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div></div>"),jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")),null==d.F.Dj&&(d.F.Dj=d.L.height()-(eb.platform.touchdevice?0:27),d.F.Eg=d.M(d.J).width()/2-2),d.M(d.J).css({height:"90%"}),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2),eb.platform.touchdevice||(d.M(d.J+"_1").width(d.F.Eg),d.M(d.J+"_2").width(d.F.Eg));}"ThumbView"==d.F.H&&(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible"),l=eb.browser.msie&&9>eb.browser.version?"position:relative;":"",c.append("<div id='"+this.container+"' class='flowpaper_pages' style='"+l+";"+(eb.platform.touchdevice?"padding-left:10px;":"")+(eb.browser.msie?"overflow-y: scroll;overflow-x: hidden;":"overflow-y: auto;overflow-x: hidden;-webkit-overflow-scrolling: touch;")+"'></div>"),jQuery(".flowpaper_pages").height(d.L.height()-0));d.F.I&&d.F.I.jb.ji(d,c);d.L.trigger("onPagesContainerCreated");jQuery(d).bind("onScaleChanged",d.Yi);},create:function(c){var d=this;d.ji(c);eb.browser.capabilities.yb||"ThumbView"==d.F.H||(d.Yc={},"TwoPage"!=d.F.H&&"BookView"!=d.F.H)||(d.jScrollPane=d.M(d.J+"_jpane").jScrollPane(d.Yc));for(c=0;c<this.document.numPages;c++){d.Sa(c)&&this.addPage(c);}d.Xi();if(!eb.browser.capabilities.yb){if("Portrait"==d.F.H||"SinglePage"==d.F.H){d.jScrollPane=d.M(this.J).jScrollPane(d.Yc);}!window.zine||d.F.I&&d.F.I.W==d.F.H||jQuery(d.M(this.J)).bind("jsp-initialised",function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").hide();}).jScrollPane().hover(function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0.9);},function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0);});}eb.browser.capabilities.yb||"ThumbView"!=d.F.H||(d.jScrollPane=d.M(d.J).jScrollPane(d.Yc));1<d.ye&&"Portrait"==d.F.H&&setTimeout(function(){d.scrollTo(d.ye,!0);d.ye=-1;jQuery(d.J).css("visibility","visible");},500);d.ye&&"SinglePage"==d.F.H&&jQuery(d.J).css("visibility","visible");},getPage:function(c){if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0!=c%2){return this.pages[1];}if(0==c%2){return this.pages[0];}}else{return"SinglePage"==this.F.H?this.pages[0]:this.pages[c];}},Sa:function(c){return this.F.DisplayRange?-1<this.F.DisplayRange.indexOf(c+1):("TwoPage"==this.F.H||"BookView"==this.F.H)&&(0==c||1==c)||"TwoPage"!=this.F.H&&"BookView"!=this.F.H;},addPage:function(c){this.pages[c]=new V(this.P,c,this,this.L,this.F,this.fh(c));this.pages[c].create(this.M(this.J));jQuery(this.F.L).trigger("onPageCreated",c);},fh:function(c){for(var d=0;d<this.document.dimensions.length;d++){if(this.document.dimensions[d].page==c){return this.document.dimensions[d];}}return{width:-1,height:-1};},scrollTo:function(c,d){if(this.R+1!=c||d){!eb.browser.capabilities.yb&&this.jScrollPane?this.jScrollPane.data("jsp").scrollToElement(this.pages[c-1].M(this.pages[c-1].ta),!0,!1):jQuery(this.J).scrollTo&&jQuery(this.J).scrollTo(this.pages[c-1].M(this.pages[c-1].ta),0);}this.Da();},np:function(){for(var c=0;c<this.getTotalPages();c++){this.Sa(c)&&this.pages[c]&&this.pages[c].kc&&window.clearTimeout(this.pages[c].kc);}},Ok:function(){this.ed();},ed:function(){var c=this;null!=c.Ud&&(window.clearTimeout(c.Ud),c.Ud=null);c.Ud=setTimeout(function(){c.jc();},200);},wj:function(){if(null!=this.jScrollPane){try{this.jScrollPane.data("jsp").reinitialise(this.Yc);}catch(c){}}},jc:function(c){var d=this;if(d.F){if(d.F.I&&d.F.H==d.F.I.W){d.F.I.jb.jc(d,c);}else{null!=d.Ud&&(window.clearTimeout(d.Ud),d.Ud=null);c=d.M(this.J).scrollTop();for(var e=0;e<this.document.numPages;e++){if(this.pages[e]&&d.Sa(e)){var g=!d.pages[e].Xa;this.pages[e].Hc(c,d.M(this.J).height(),!0)?(g&&d.L.trigger("onVisibilityChanged",e+1),this.pages[e].Xa=!0,this.pages[e].load(function(){if("TwoPage"==d.F.H||"BookView"==d.F.H){d.M(d.J).is(":animated")||1==d.F.scale||(d.M(d.J).css("margin-left",d.Ef()),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2)),d.initialized||null==d.jScrollPane||(d.jScrollPane.data("jsp").reinitialise(d.Yc),d.initialized=!0);}}),this.pages[e].Eo(),this.pages[e].Da()):"TwoPage"!=d.F.H&&"BookView"!=d.F.H&&this.pages[e].unload();}}}}},cd:function(){this.F.H!=this.F.W()?this.F.Gc(this.R+1):this.F.Gc(this.R);},Da:function(c){c=c?c:this;for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&c.pages[d]&&c.pages[d].Xa&&c.pages[d].Da();}},Gg:function(){for(var c=this.R,d=this.M(this.J).scrollTop(),e=0;e<this.document.numPages;e++){if(this.Sa(e)&&"SinglePage"!=this.F.H){var g=!this.pages[e].Xa;if(this.pages[e].Hc(d,this.M(this.J).height(),!1)){c=e;g&&this.L.trigger("onVisibilityChanged",e+1);break;}}}this.R!=c&&this.L.trigger("onCurrentPageChanged",c+1);this.R=c;},setCurrentCursor:function(c){for(var d=0;d<this.document.numPages;d++){this.Sa(d)&&("TextSelectorCursor"==c?jQuery(this.pages[d].V).addClass("flowpaper_nograb"):jQuery(this.pages[d].V).removeClass("flowpaper_nograb"));}},gotoPage:function(c){this.F.gotoPage(c);},rg:function(c,d){c=parseInt(c);var e=this;e.F.renderer.Fc&&e.F.renderer.Fc(e.pages[0]);jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();e.pages[0].unload();e.pages[0].visible=!0;var g=e.M(e.J).scrollTop();e.F.Gc(c);e.L.trigger("onCurrentPageChanged",c);e.pages[0].Hc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[0].load(function(){null!=d&&d();e.ed();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.Yc);}));},sg:function(c,d){c=parseInt(c);var e=this;0==c%2&&0<c&&"BookView"==e.F.H&&c!=e.getTotalPages()&&(c+=1);c==e.getTotalPages()&&"TwoPage"==e.F.H&&0==e.getTotalPages()%2&&(c=e.getTotalPages()-1);0==c%2&&"TwoPage"==e.F.H&&--c;c>e.getTotalPages()&&(c=e.getTotalPages());jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();if(c<=e.getTotalPages()&&0<c){e.F.Gc(c);e.R!=c&&e.L.trigger("onCurrentPageChanged",c);e.pages[0].unload();e.pages[0].load(function(){if("TwoPage"==e.F.H||"BookView"==e.F.H){e.M(e.J).animate({"margin-left":e.Ef()},{duration:250}),e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2),e.Oa(e.F.scale);}});1<e.F.da?(e.M(e.pages[1].V+"_2").removeClass("flowpaper_hidden"),e.M(e.J+"_2").removeClass("flowpaper_hidden")):"BookView"==e.F.H&&1==e.F.da&&(e.M(e.pages[1].V+"_2").addClass("flowpaper_hidden"),e.M(e.J+"_2").addClass("flowpaper_hidden"));0!=e.getTotalPages()%2&&"TwoPage"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].V+"_2").addClass("flowpaper_hidden");0==e.getTotalPages()%2&&"BookView"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].V+"_2").addClass("flowpaper_hidden");var g=e.M(this.J).scrollTop();e.pages[1].unload();e.pages[1].visible=!0;!e.M(e.pages[1].V+"_2").hasClass("flowpaper_hidden")&&e.pages[1].Hc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[1].load(function(){null!=d&&d();e.M(e.J).animate({"margin-left":e.Ef()},{duration:250});e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2);e.ed();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.Yc);}));}},rotate:function(c){this.pages[c].rotate();},Ef:function(c){this.L.width();var d=0;1!=this.F.da||c||"BookView"!=this.F.H?(c=jQuery(this.J+"_2").width(),0==c&&(c=this.M(this.J+"_1").width()),d=(this.L.width()-(this.M(this.J+"_1").width()+c))/2):d=(this.L.width()/2-this.M(this.J+"_1").width()/2)*(this.F.scale+0.7);10>d&&(d=0);return d;},previous:function(){var c=this;if("Portrait"==c.F.H){var d=c.M(c.J).scrollTop()-c.pages[0].height-14;0>d&&(d=1);eb.browser.capabilities.yb?c.M(c.J).scrollTo(d,{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da-2].M(this.pages[c.F.da-2].ta),!0,!0);}"SinglePage"==c.F.H&&0<c.F.da-1&&(eb.platform.touchdevice&&1!=this.F.scale?(c.F.Xc=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:1000},350,function(){c.pages[0].unload();c.M(c.J).transition({x:-800},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.rg(c.F.da-1,function(){});c.M(c.J).transition({x:0},350,function(){c.F.Xc=!1;window.annotations||c.M(c.J).addClass("flowpaper_pages_border");});})):c.rg(c.F.da-1));c.F.I&&c.F.H==c.F.I.W&&c.F.I.jb.previous(c);"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1>c.F.da-2||(eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da-2,c.F.Xc=!0,c.M(c.J).animate({"margin-left":1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();1==c.F.da-2&&"BookView"==c.F.H&&c.pages[1].M(c.pages[1].V+"_2").addClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",-800);c.pages[0].unload();c.pages[1].unload();c.M(c.J).animate({"margin-left":c.Ef()},{duration:350,complete:function(){setTimeout(function(){c.F.Xc=!1;c.sg(c.F.da-2);},500);}});},500);}})):c.sg(c.F.da-2));},next:function(){var c=this;if("Portrait"==c.F.H){0==c.F.da&&(c.F.da=1);var d=c.F.da-1;100<this.pages[c.F.da-1].M(this.pages[c.F.da-1].ta).offset().top-c.L.offset().top?d=c.F.da-1:d=c.F.da;eb.browser.capabilities.yb?this.pages[d]&&c.M(c.J).scrollTo(this.pages[d].M(this.pages[d].ta),{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da].M(this.pages[c.F.da].ta),!0,!0);}"SinglePage"==c.F.H&&c.F.da<c.getTotalPages()&&(eb.platform.touchdevice&&1!=c.F.scale?(c.F.Xc=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:-1000},350,"ease",function(){c.pages[0].unload();c.M(c.J).transition({x:1200},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.rg(c.F.da+1,function(){});c.M(c.J).transition({x:0},350,"ease",function(){window.annotations||c.M(c.J).addClass("flowpaper_pages_border");c.F.Xc=!1;});})):c.rg(c.F.da+1));c.F.I&&c.F.H==c.F.I.W&&c.F.I.jb.next(c);if("TwoPage"==c.F.H||"BookView"==c.F.H){if("TwoPage"==c.F.H&&c.F.da+2>c.getTotalPages()){return !1;}eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da+2,c.F.Xc=!0,c.M(c.J).animate({"margin-left":-1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();c.F.da+2<=c.getTotalPages()&&0<c.F.da+2&&c.pages[1].M(c.pages[1].V+"_2").removeClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",800);c.pages[0].unload();c.pages[1].unload();c.pages[0].Xa=!0;c.pages[1].Xa=!0;c.L.trigger("onVisibilityChanged",c.R);c.M(c.J).animate({"margin-left":c.Ef(!0)},{duration:350,complete:function(){setTimeout(function(){c.F.Xc=!1;c.sg(c.F.da+2);},500);}});},500);}})):c.sg(c.F.da+2);}},Ze:function(c){this.F.I&&this.F.H==this.F.I.W&&this.F.I.jb.Ze(this,c);}};return f;}(),V=function(){function f(c,d,e,g,h,f){this.L=g;this.F=h;this.pages=e;this.La=1000;this.oa=this.Xa=!1;this.P=c;this.pageNumber=d;this.dimensions=f;this.selectors={};this.df=h.Sj;this.jg=h.Ym;this.aa="dummyPage_"+this.pageNumber+"_"+this.P;this.page="page_"+this.pageNumber+"_"+this.P;this.sd="pageContainer_"+this.pageNumber+"_"+this.P;this.xg=this.sd+"_textLayer";this.Yg="dummyPageCanvas_"+this.pageNumber+"_"+this.P;this.Zg="dummyPageCanvas2_"+this.pageNumber+"_"+this.P;this.gi=this.page+"_canvasOverlay";this.Xb="pageLoader_"+this.pageNumber+"_"+this.P;this.ll=this.sd+"_textoverlay";this.H=this.F.H;this.W=this.F.I?this.F.I.W:"";this.renderer=this.F.renderer;c=this.F.scale;this.scale=c;this.V="#"+this.aa;this.na="#"+this.page;this.ta="#"+this.sd;this.xb="#"+this.xg;this.oi="#"+this.Yg;this.pi="#"+this.Zg;this.Yb="#"+this.Xb;this.Zi="#"+this.ll;this.pa={bottom:3,top:2,right:0,left:1,Wa:4,back:5};this.Ra=[];this.duration=1.3;this.Vo=16777215;this.offset=this.force=0;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},show:function(){"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M(this.na).removeClass("flowpaper_hidden");},He:function(){this.pages.jScrollPane&&(!eb.browser.capabilities.yb&&this.pages.jScrollPane?"SinglePage"==this.F.H?0>this.M(this.pages.J).width()-this.M(this.ta).width()?(this.pages.jScrollPane.data("jsp").scrollToPercentX(0.5,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0.5,!1)):(this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0,!1)):this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1):this.M(this.ta).parent().scrollTo&&this.M(this.ta).parent().scrollTo({left:"50%"},0,{axis:"x"}));},create:function(c){var d=this;if("Portrait"==d.F.H){c.append("<div class='flowpaper_page "+(d.F.document.DisableOverflow?"flowpaper_ppage":"")+" "+(d.F.document.DisableOverflow&&d.pageNumber<d.F.renderer.getNumPages()-1?"ppage_break":"ppage_none")+"' id='"+d.sd+"' style='position:relative;"+(d.F.document.DisableOverflow?"margin:0;padding:0;overflow:hidden;":"")+"'><div id='"+d.aa+"' class='' style='z-index:11;"+d.getDimensions()+";'></div></div>");if(0<jQuery(d.F.Ij).length){var e=this.La*this.scale;jQuery(d.F.Ij).append("<div id='"+d.ll+"' class='flowpaper_page' style='position:relative;height:"+e+"px;width:100%;overflow:hidden;'></div>");}d.Uk();}"SinglePage"==d.F.H&&0==d.pageNumber&&c.append("<div class='flowpaper_page' id='"+d.sd+"' class='flowpaper_rescale' style='position:relative;'><div id='"+d.aa+"' class='' style='position:absolute;z-index:11;"+d.getDimensions()+"'></div></div>");if("TwoPage"==d.F.H||"BookView"==d.F.H){0==d.pageNumber&&jQuery(c.children().get(0)).append("<div class='flowpaper_page' id='"+d.sd+"_1' style='z-index:2;float:right;position:relative;'><div id='"+d.aa+"_1' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:right;'></div></div>"),1==d.pageNumber&&jQuery(c.children().get(1)).append("<div class='flowpaper_page' id='"+d.sd+"_2' style='position:relative;z-index:1;float:left;'><div id='"+d.aa+"_2' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:left'></div></div>");}"ThumbView"==d.F.H&&(c.append("<div class='flowpaper_page' id='"+d.sd+"' style='position:relative;"+(eb.browser.msie?"clear:none;float:left;":"display:inline-block;")+"'><div id=\""+d.aa+'" class="flowpaper_page flowpaper_thumb flowpaper_border flowpaper_load_on_demand" style="margin-left:10px;'+d.getDimensions()+'"></div></div>'),jQuery(d.ta).on("mousedown touchstart",function(){d.F.gotoPage(d.pageNumber+1);}));d.F.H==d.W?d.F.I.Ac.create(d,c):(d.F.renderer.Jd(d),d.show(),d.height=d.M(d.ta).height(),d.Pl());},Uk:function(){var c=this;if(c.F.Wb){jQuery(c.ta).on("mouseover, mousemove",function(){"Portrait"==c.F.H?na("pageContainer_"+c.pageNumber+"_documentViewer_textLayer",c.pageNumber+1):na("turn-page-wrapper-"+(c.pageNumber+1),c.pageNumber+1);});}},bo:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.gi;}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){return this.gi+"_1";}if(1==this.pageNumber){return this.gi+"_2";}}},ij:function(c){this.M(this.Zi).css({top:c});},Jb:function(){"Portrait"!=this.F.H&&"SinglePage"!=this.F.H&&this.F.H!=this.W||jQuery("#"+this.Xb).remove();if("TwoPage"==this.F.H||"BookView"==this.F.H){0==this.pageNumber&&this.M(this.Yb+"_1").hide(),1==this.pageNumber&&this.M(this.Yb+"_2").hide();}},Qc:function(){if(!this.F.document.DisableOverflow){if("Portrait"==this.F.H||"SinglePage"==this.F.H||this.F.H==this.W){this.La=1000;if(0<this.M(this.Yb).length){return;}var c=0<jQuery(this.ta).length?jQuery(this.ta):this.Mc;c&&c.find&&0!=c.length?0==c.find("#"+this.Xb).length&&c.append("<img id='"+this.Xb+"' src='"+this.df+"' class='flowpaper_pageLoader'  style='position:absolute;left:50%;top:50%;height:8px;margin-left:"+(this.Vb()-10)+"px;' />"):M("can't show loader, missing container for page "+this.pageNumber);}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){if(0<this.M(this.Yb+"_1").length){this.M(this.Yb+"_1").show();return;}this.M(this.V+"_1").append("<img id='"+this.Xb+"_1' src='"+this.df+"' style='position:absolute;left:"+(this.wa()-30)+"px;top:"+this.Ha()/2+"px;' />");this.M(this.Yb+"_1").show();}1==this.pageNumber&&(0<this.M(this.Yb+"_2").length||this.M(this.V+"_2").append("<img id='"+this.Xb+"_2' src='"+this.df+"' style='position:absolute;left:"+(this.wa()/2-10)+"px;top:"+this.Ha()/2+"px;' />"),this.M(this.Yb+"_2").show());}}},Oa:function(){var c,d;d=this.wa();c=this.Ha();var e=this.Vb();this.F.document.DisableOverflow&&(c=Math.floor(c),d=Math.floor(d));if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.M(this.ta).css({height:c,width:d,"margin-left":e,"margin-top":0}),this.M(this.V).css({height:c,width:d,"margin-left":e}),this.M(this.na).css({height:c,width:d,"margin-left":e}),this.M(this.oi).css({height:c,width:d}),this.M(this.pi).css({height:c,width:d}),this.M(this.Zi).css({height:c,width:d}),this.M(this.Yb).css({"margin-left":e}),jQuery(this.xb).css({height:c,width:d,"margin-left":e}),this.F.renderer.mb&&(jQuery(".flowpaper_flipview_canvas_highres").css({width:0.25*d,height:0.25*c}).show(),this.scale<this.qg()?this.F.renderer.Fc(this):this.F.renderer.Nc(this)),this.Mf(this.scale,e);}if("TwoPage"==this.F.H||"BookView"==this.F.H){this.M(this.V+"_1").css({height:c,width:d}),this.M(this.V+"_2").css({height:c,width:d}),this.M(this.V+"_1_textoverlay").css({height:c,width:d}),this.M(this.V+"_2_textoverlay").css({height:c,width:d}),this.M(this.na).css({height:c,width:d}),eb.browser.capabilities.yb||(0==this.pages.R?this.pages.M(this.pages.J).css({height:c,width:d}):this.pages.M(this.pages.J).css({height:c,width:2*d}),"TwoPage"==this.F.H&&this.pages.M(this.pages.J).css({width:"100%"})),eb.platform.touchdevice&&1<=this.scale&&this.pages.M(this.pages.J).css({width:2*d}),eb.platform.touchdevice&&("TwoPage"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2),"BookView"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2));}if(this.F.H==this.W){var g=this.mg()*this.La,h=this.wa()/g;null!=this.dimensions.nb&&this.sb&&this.F.renderer.va&&(h=this.pages.jd/2/g);this.F.H==this.W?1==this.scale&&this.Mf(h,e):this.Mf(h,e);}this.height=c;this.width=d;},qg:function(){return 1;},Mb:function(){return"SinglePage"==this.F.H;},resize:function(){},mg:function(){return this.dimensions.ma/this.dimensions.za;},ld:function(){return this.F.H==this.W?this.F.I.Ac.ld(this):this.dimensions.ma/this.dimensions.za*this.scale*this.La;},Cf:function(){return this.F.H==this.W?this.F.I.Ac.Cf(this):this.La*this.scale;},getDimensions:function(){var c=this.ke(),d=this.F.ld();if(this.F.document.DisableOverflow){var e=this.La*this.scale;return"height:"+e+"px;width:"+e*c+"px";}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return e=this.La*this.scale,"height:"+e+"px;width:"+e*c+"px;margin-left:"+(d-e*c)/2+"px;";}if(this.F.H==this.W){return this.F.I.Ac.getDimensions(this,c);}if("TwoPage"==this.F.H||"BookView"==this.F.H){return e=this.L.width()/2*this.scale,(0==this.pageNumber?"margin-left:0px;":"")+"height:"+e+"px;width:"+e*c+"px";}if("ThumbView"==this.F.H){return e=this.La*((this.L.height()-100)/this.La)/2.7,"height:"+e+"px;width:"+e*c+"px";}},ke:function(){return this.dimensions.ma/this.dimensions.za;},wa:function(c){return this.F.H==this.W?this.F.I.Ac.wa(this):this.La*this.ke()*(c?c:this.scale);},Ei:function(){return this.F.H==this.W?this.F.I.Ac.Ei(this):this.La*this.ke()*this.scale;},Fk:function(c){return c/(this.La*this.ke());},Gi:function(){return this.F.H==this.W?this.F.I.Ac.Gi(this):this.La*this.ke();},Ha:function(){return this.F.H==this.W?this.F.I.Ac.Ha(this):this.La*this.scale;},Di:function(){return this.F.H==this.W?this.F.I.Ac.Di(this):this.La*this.scale;},Vb:function(){var c=this.F.ld(),d=0;if(this.F.document.DisableOverflow){return 0;}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.pages.tg&&this.pages.tg>c&&(c=this.pages.tg),d=(c-this.wa())/2/2-4,0<d?d:0;}if("TwoPage"==this.F.H||"BookView"==this.F.H){return 0;}if(this.F.H==this.W){return this.F.I.Ac.Vb(this);}},Hc:function(c,d,e){var g=!1;if("Portrait"==this.F.H||"ThumbView"==this.F.H){if(this.offset=this.M(this.ta).offset()){this.pages.Hj||(this.pages.Hj=this.F.O.offset().top);var g=this.offset.top-this.pages.Hj+c,h=this.offset.top+this.height;d=c+d;g=e||eb.platform.touchdevice&&!eb.browser.capabilities.yb?this.Xa=c-this.height<=g&&d>=g||g-this.height<=c&&h>=d:c<=g&&d>=g||g<=c&&h>=d;}else{g=!1;}}"SinglePage"==this.F.H&&(g=this.Xa=0==this.pageNumber);this.F.H==this.W&&(g=this.Xa=this.F.I.Ac.Hc(this));if("BookView"==this.F.H){if(0==this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Xa=0==this.pageNumber||0!=this.pages.R&&1==this.pageNumber;}if("TwoPage"==this.F.H){if(0!=this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Xa=0==this.pageNumber||1==this.pageNumber;}return g;},Eo:function(){this.oa||this.load();},load:function(c){this.Da(c);if(!this.oa){"TwoPage"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Oa());"BookView"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R-(0<this.pages.R?1:0)+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Oa());if("SinglePage"==this.F.H){c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R];if(c.width!=this.dimensions.width||c.height!=this.dimensions.height){this.dimensions=c,this.Oa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Da();}this.dimensions.loaded=!1;}"Portrait"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Oa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Da());this.F.renderer.$b(this,!1);"function"===typeof this.Hi&&this.loadOverlay();}},unload:function(){if(this.oa||"TwoPage"==this.F.H||"BookView"==this.F.H||this.F.H==this.W){delete this.selectors,this.selectors={},jQuery(this.U).unbind(),delete this.U,this.U=null,this.oa=!1,this.F.renderer.unload(this),jQuery(this.Yb).remove(),this.Mj&&(delete this.Mj,this.Mj=null),this.F.H==this.W&&this.F.I.Ac.unload(this),"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M("#"+this.bo()).remove(),"function"===typeof this.Hi&&this.rs();}},Da:function(c){"ThumbView"==this.F.H||!this.Xa&&null==c||this.pages.animating||this.F.renderer.Da(this,!1,c);},Cc:function(c,d,e){this.F.renderer.Cc(this,c,d,e);},Ee:function(c,d,e){this.F.renderer.Ee(this,c,d,e);},Pl:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){eb.browser.msie&&9>eb.browser.version||eb.platform.ios||(new aa(this.F,"CanvasPageRenderer"==this.renderer.Ff()?this.V:this.na,this.M(this.ta).parent())).scroll();}},Mf:function(c,d){var e=this;if(e.F.Z[e.pageNumber]){for(var g=0;g<e.F.Z[e.pageNumber].length;g++){if("link"==e.F.Z[e.pageNumber][g].type){var h=e.F.Z[e.pageNumber][g].Bo*c,f=e.F.Z[e.pageNumber][g].Co*c,l=e.F.Z[e.pageNumber][g].width*c,k=e.F.Z[e.pageNumber][g].height*c,n=e.F.Z[e.pageNumber][g].Gp,p=e.F.Z[e.pageNumber][g].Hp,q=e.F.Z[e.pageNumber][g].Oo;if(0==jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g).length){var t=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}' class='flowpaper_mark_link flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;box-shadow: 0px 0px 0px 0px;'></div>",h,f,l,k,e.pageNumber,g)),r=e.ta;0==jQuery(r).length&&(r=e.Mc);if(n){n="flowpaper-linkicon-url";e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("mailto:")&&(n="flowpaper-linkicon-email");e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("tel:")&&(n="flowpaper-linkicon-phone");e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("actionGoTo:")&&(n="flowpaper-linkicon-bookmark");var x=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon flowpaper-linkicon-roundbg' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,l,k,e.pageNumber,g));jQuery(r).append(x);h=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon {6}' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,l,k,e.pageNumber,g,n));jQuery(r).append(h);}r=jQuery(r).append(t).find("#flowpaper_mark_link_"+e.pageNumber+"_"+g);p&&(r.data("mouseOverText",q),r.bind("mouseover",function(c){for(var d=document.querySelectorAll(".popover"),g=0;g<d.length;g++){d[g].remove();}!jQuery(this).data("mouseOverText")||jQuery(this).data("mouseOverText")&&0==jQuery(this).data("mouseOverText").length||(c=new Popover({position:"top",button:c.target}),c.setContent('<span style="font-family:Arial;font-size:0.8em;">'+jQuery(this).data("mouseOverText")+"</span>"),c.render("open",e.F.O.get(0)));}),r.bind("mouseout",function(){for(var c=document.querySelectorAll(".popover"),d=0;d<c.length;d++){c[d].remove();}}));r.data("link",e.F.Z[e.pageNumber][g].href);r.bind("mouseup touchend",function(c){if(e.pages.Be||e.pages.animating){return !1;}if(0==jQuery(this).data("link").indexOf("actionGoTo:")){e.F.gotoPage(jQuery(this).data("link").substr(11));}else{if(0==jQuery(this).data("link").indexOf("javascript")){var d=unescape(jQuery(this).data("link"));eval(d.substring(11));}else{jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));}}c.preventDefault();c.stopImmediatePropagation();return !1;});eb.platform.touchonlydevice||(jQuery(r).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",e.F.linkColor);jQuery(this).css({opacity:e.F.Ic});}),jQuery(r).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));}else{t=jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g),t.css({left:h+"px",top:f+"px",width:l+"px",height:k+"px","margin-left":d+"px"});}}"video"==e.F.Z[e.pageNumber][g].type&&(q=e.F.Z[e.pageNumber][g].Fj*c,t=e.F.Z[e.pageNumber][g].Gj*c,r=e.F.Z[e.pageNumber][g].width*c,p=e.F.Z[e.pageNumber][g].height*c,h=e.F.Z[e.pageNumber][g].src,0==jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g).length?(h=jQuery(String.format("<div id='flowpaper_mark_video_{4}_{5}' class='flowpaper_mark_video flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",q,t,r,p,e.pageNumber,g,h,d)),r=e.ta,0==jQuery(r).length&&(r=e.Mc),r=jQuery(r).append(h).find("#flowpaper_mark_video_"+e.pageNumber+"_"+g),r.data("video",e.F.Z[e.pageNumber][g].url),r.data("maximizevideo",e.F.Z[e.pageNumber][g].Mo),r.bind("mouseup touchend",function(c){jQuery(e.L).trigger("onVideoStarted",{VideoUrl:jQuery(this).data("video"),PageNumber:e.pageNumber+1});if(e.pages.Be||e.pages.animating){return !1;}var d=jQuery(this).data("video"),g="true"==jQuery(this).data("maximizevideo");if(d&&0<=d.toLowerCase().indexOf("youtube")){for(var h=d.substr(d.indexOf("?")+1).split("&"),f="",m=0;m<h.length;m++){0==h[m].indexOf("v=")&&(f=h[m].substr(2));}if(g){e.F.vc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>'));e.F.O.append(e.F.vc);jQuery(e.F.vc).html(String.format("<iframe width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.O.width(),0.95*e.F.O.height(),f,-1<location.href.indexOf("https:")?"https":"http"));var l=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.jg));e.F.O.append(l);jQuery(l).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{jQuery(this).html(String.format("<iframe width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",jQuery(this).width(),jQuery(this).height(),f,-1<location.href.indexOf("https:")?"https":"http"));}}d&&0<=d.toLowerCase().indexOf("vimeo")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.vc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.O.append(e.F.vc),jQuery(e.F.vc).html(String.format("<iframe src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.O.width(),0.95*e.F.O.height(),f)),l=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.jg)),e.F.O.append(l),jQuery(l).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));d&&0<=d.toLowerCase().indexOf("wistia")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.vc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.O.append(e.F.vc),jQuery(e.F.vc).html(String.format("<iframe src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.O.width(),0.95*e.F.O.height(),f)),l=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.jg)),e.F.O.append(l),jQuery(l).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));if(d&&-1<d.indexOf("{")){try{var k=JSON.parse(d),q="vimeoframe_"+FLOWPAPER.$n();if(g){jQuery(this).html(""),e.F.vc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.O.append(e.F.vc),jQuery(e.F.vc).html(jQuery(String.format('<video id="{2}" style="width:{3}px;height:{4}px;" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',k.mp4,k.webm,q,0.95*e.F.O.width(),0.95*e.F.O.height()))),l=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.jg)),e.F.O.append(l),jQuery(l).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{if(0==jQuery(this).find("video").length){jQuery(this).html(jQuery(String.format('<video id="{2}" style="width:{3}px;height:{4}px;" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',k.mp4,k.webm,q,jQuery(this).width(),jQuery(this).height())));}else{return !0;}}}catch(p){}}c.preventDefault();c.stopImmediatePropagation();return !1;})):(h=jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g),h.css({left:q+"px",top:t+"px",width:r+"px",height:p+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:r+"px",height:p+"px"}),t=h.find("iframe"),0<t.length&&(t.attr("width",r),t.attr("height",p))));"image"==e.F.Z[e.pageNumber][g].type&&(r=e.F.Z[e.pageNumber][g].ih*c,f=e.F.Z[e.pageNumber][g].jh*c,l=e.F.Z[e.pageNumber][g].width*c,k=e.F.Z[e.pageNumber][g].height*c,p=e.F.Z[e.pageNumber][g].src,q=e.F.Z[e.pageNumber][g].href,t=e.F.Z[e.pageNumber][g].qo,0==jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g).length?(h=jQuery(String.format("<div id='flowpaper_mark_image_{4}_{5}' class='flowpaper_mark_image flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;'><img src='{6}' style='width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",r,f,l,k,e.pageNumber,g,p)),r=e.ta,0==jQuery(r).length&&(r=e.Mc),r=jQuery(r).append(h).find("#flowpaper_mark_image_"+e.pageNumber+"_"+g),r.data("image",e.F.Z[e.pageNumber][g].url),null!=q&&0<q.length?(r.data("link",q),r.bind("mouseup touchend",function(c){if(e.pages.Be||e.pages.animating){return !1;}0==jQuery(this).data("link").indexOf("actionGoTo:")?e.F.gotoPage(jQuery(this).data("link").substr(11)):jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));c.preventDefault();c.stopImmediatePropagation();return !1;})):e.F.Wb||h.css({"pointer-events":"none"}),null!=t&&0<t.length&&(r.data("hoversrc",t),r.data("imagesrc",p),r.bind("mouseover",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("hoversrc"));}),r.bind("mouseout",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("imagesrc"));}),e.F.Wb||h.css({"pointer-events":"auto"}))):(h=jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g),h.css({left:r+"px",top:f+"px",width:l+"px",height:k+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:l+"px",height:k+"px"})));"iframe"==e.F.Z[e.pageNumber][g].type&&(t=e.F.Z[e.pageNumber][g].Ai*c,h=e.F.Z[e.pageNumber][g].Bi*c,r=e.F.Z[e.pageNumber][g].width*c,q=e.F.Z[e.pageNumber][g].height*c,f=e.F.Z[e.pageNumber][g].src,0==jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g).length?(p=r-10,50<p&&(p=50),50>r&&(p=r-10),50>q&&(p=q-10),f=jQuery(String.format("<div id='flowpaper_mark_frame_{4}_{5}' class='flowpaper_mark_frame flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='width:{2}px;height:{3}px;' class='flowpaper_mark'/><div id='flowpaper_mark_frame_{4}_{5}_play' style='position:absolute;top:{9}px;left:{8}px;'></div></div>",t,h,r,q,e.pageNumber,g,f,d,r/2-p/3,q/2-p)),r=e.ta,0==jQuery(r).length&&(r=e.Mc),r=jQuery(r).append(f).find("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").vd(p,"#AAAAAA",!0),r.data("url",e.F.Z[e.pageNumber][g].url),r.data("maximizeframe",e.F.Z[e.pageNumber][g].Lo),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").bind("mouseup touchend",function(c){if(e.pages.Be||e.pages.animating){return !1;}var d=jQuery(this).parent().data("url"),g="true"==jQuery(this).parent().data("maximizeframe");-1<d.indexOf("http")&&(d=d.substr(d.indexOf("//")+2));g?(e.F.il=jQuery(String.format('<div class="flowpaper_mark_frame_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.O.append(e.F.il),jQuery(e.F.il).html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.O.width(),0.95*e.F.O.height(),d,-1<location.href.indexOf("https:")?"https":"http")),d=jQuery(String.format('<img class="flowpaper_mark_frame_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.jg)),e.F.O.append(d),jQuery(d).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_frame_maximized").remove();jQuery(".flowpaper_mark_frame_maximized_closebutton").remove();})):jQuery(this).parent().html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",jQuery(this).parent().width(),jQuery(this).parent().height(),d,-1<location.href.indexOf("https:")?"https":"http"));c.preventDefault();c.stopImmediatePropagation();return !1;})):(f=jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),f.css({left:t+"px",top:h+"px",width:r+"px",height:q+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:r+"px",height:q+"px"}),t=f.find("iframe"),0<t.length&&(t.attr("width",r),t.attr("height",q))));}}},dispose:function(){jQuery(this.ta).find("*").unbind();jQuery(this).unbind();jQuery(this.U).unbind();delete this.U;this.U=null;jQuery(this.ta).find("*").remove();this.selectors=this.pages=this.F=this.L=null;},rotate:function(){this.rotation&&360!=this.rotation||(this.rotation=0);this.rotation=this.rotation+90;360==this.rotation&&(this.rotation=0);var c=this.Vb();if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.Oa(),90==this.rotation?(this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.na).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.xb).css({"z-index":11,"margin-left":c}),jQuery(this.xb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):270==this.rotation?(jQuery(this.na).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.xb).css({"z-index":11,"margin-left":c}),this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.xb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):180==this.rotation?(jQuery(this.na).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.xb).css({"z-index":11,"margin-left":c}),this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.xb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):(jQuery(this.na).css("transform",""),jQuery(this.xb).css({"z-index":"","margin-left":0}),this.M(this.V).css("transform",""),jQuery(this.xb).css("transform",""));}},Td:function(c,d,e,g,h,f){var l=this,k=l.pageNumber+(d?d:0),n=new jQuery.Deferred;if(!l.F.renderer.qa){return n.resolve(),n;}l.pages.animating&&(window.clearTimeout(l.jp),l.jp=setTimeout(function(){l.Td(c,d,e,g,h,f);},50));l.Qc();var p=l.F.renderer;"SinglePage"==l.H&&(k=l.pages.R);l.F.config.document.RTLMode&&(k=l.pages.getTotalPages()-k-1);p.S[k]&&p.S[k].loaded&&jQuery(c).data("needs-overlay")?l.Fo(d).then(function(){jQuery(c).data("needs-overlay",jQuery(c).data("needs-overlay")-1);l.Ho=!0;var d=p.S[k].text,f=c.getContext("2d"),m=(e?e:c.width)/(p.S[0]?p.S[0].width:p.S[k].width),x=!0;g||(g=0,x=!1);h||(h=0,x=!1);f.setTransform(1,0,0,1,g,h);f.save();f.scale(m,m);for(var C=0;C<d.length;C++){var v=d[C],w=v[1],u=v[0]+v[10]*v[3],D=v[9],B=v[2],H=v[3],z=v[7],G=v[8],A=v[6],F=v[11],v=v[12],y=z&&0==z.indexOf("(bold)"),E=z&&0==z.indexOf("(italic)");z&&(z=z.replace("(bold) ",""),z=z.replace("(italic) ",""),f.font=(E?"italic ":"")+(y?"bold ":"")+Math.abs(H)+"px "+z+", "+G);if("object"==typeof A&&A.length&&6==A.length){var I,z=A[1],G=A[2],y=A[3],E=A[4],H=A[5];"axial"===A[0]?I=f.createLinearGradient(z[0],z[1],G[0],G[1]):"radial"===A[0]&&(I=f.createRadialGradient(z[0],z[1],y,G[0],G[1],E));A=0;for(z=H.length;A<z;++A){G=H[A],I.addColorStop(G[0],G[1]);}f.fillStyle=I;}else{f.fillStyle=A;}0!=F&&(f.save(),f.translate(w,u),f.rotate(F));if(v){for(A=0;A<v.length;A++){H=v[A],0==F?x&&(0>g+(w+H[0]*D+B)*m||g+(w+H[0]*D)*m>c.width)||f.fillText(H[1],w+H[0]*D,u):f.fillText(H[1],H[0]*Math.abs(D),0);}}0!=F&&f.restore();}f.restore();jQuery(c).data("overlay-scale",m);n.resolve(c);l.Jb();}):(p.S[k].loaded?n.resolve(c):(l.Ho=!1,c.width=100,n.reject()),l.Jb());return n;},Fo:function(c){var d=new jQuery.Deferred,e=this.F.renderer;e.Kc||(e.Kc={});for(var g=[],h=!1,f=e.Df(this.pageNumber),l=f-10;l<f;l++){e.S[l]&&e.S[l].fonts&&0<e.S[l].fonts.length&&(h=!0);}if(!eb.browser.msie&&!eb.browser.ef||h){if(l=this.pageNumber+(c?c:0),c=e.S[l].text,h){for(l=f-(10<f?11:10);l<f;l++){if(e.S[l]&&e.S[l].fonts&&0<e.S[l].fonts.length){for(h=0;h<e.S[l].fonts.length;h++){e.Kc[e.S[l].fonts[h].name]||(fa(e.S[l].fonts[h].name,e.S[l].fonts[h].data),g.push(e.S[l].fonts[h].name));}}}}else{if(c&&0<c.length){for(h=0;h<c.length;h++){c[h][7]&&!e.Kc[c[h][7]]&&-1==g.indexOf(c[h][7])&&0==c[h][7].indexOf("g_font")&&c[h][7]&&g.push(c[h][7]);}}}}else{for(f=this.pages.getTotalPages(),l=0;l<f;l++){if(h=e.S[l],h.loaded){for(c=h.text,h=0;h<c.length;h++){c[h][7]&&!e.Kc[c[h][7]]&&-1==g.indexOf(c[h][7])&&0==c[h][7].indexOf("g_font")&&c[h][7]&&g.push(c[h][7]);}}}}0<g.length?WebFont.load({custom:{families:g},inactive:function(){d.resolve();},fontactive:function(c){e.Kc[c]="loaded";},fontinactive:function(c){e.Kc[c]="inactive";},active:function(){d.resolve();},timeout:eb.browser.msie||eb.browser.ef?5000:25000}):d.resolve();return d;}};return f;}();function ua(f,c){this.F=this.N=f;this.L=this.F.L;this.resources=this.F.resources;this.P=this.F.P;this.document=c;this.uf=null;this.Ja="toolbar_"+this.F.P;this.K="#"+this.Ja;this.jk=this.Ja+"_bttnPrintdialogPrint";this.ai=this.Ja+"_bttnPrintdialogCancel";this.gk=this.Ja+"_bttnPrintDialog_RangeAll";this.hk=this.Ja+"_bttnPrintDialog_RangeCurrent";this.ik=this.Ja+"_bttnPrintDialog_RangeSpecific";this.Yh=this.Ja+"_bttnPrintDialogRangeText";this.Zk=this.Ja+"_labelPrintProgress";this.ng=null;this.create=function(){var c=this;c.Sl="";if(eb.platform.touchonlydevice||c.ng){c.ng||(e=c.resources.ea.sm,jQuery(c.K).html((eb.platform.touchonlydevice?"":String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_print flowpaper_bttnPrint' style='margin-left:5px;'/>",c.resources.ea.Lm))+(c.F.config.document.ViewModeToolsVisible?(eb.platform.lb?"":String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_singlepage {1} flowpaper_bttnSinglePage' style='margin-left:15px;'>",c.resources.ea.Om,"Portrait"==c.F.vb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode  flowpaper_twopage {1} flowpaper_bttnTwoPage'>",c.resources.ea.Vm,"TwoPage"==c.F.vb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_thumbview flowpaper_bttnThumbView'>",c.resources.ea.Tm))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth'>",c.resources.ea.xm))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode fitheight flowpaper_bttnFitHeight'>",c.resources.ea.Jm))+"":"")+(c.F.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:5px;' />",c.resources.ea.Wm)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:-1px;' />",c.resources.ea.Xm)+(eb.platform.lb?"":String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullScreen' src='{0}' style='margin-left:-1px;' />",c.resources.ea.zm))+"":"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:15px;'/>",c.resources.ea.nm)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:70px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel_large flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}'  class='flowpaper_tbbutton_large flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.ea.pm)+"":"")+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_txtSearch' style='margin-left:15px;width:130px;' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton_large flowpaper_bttnFind' style=''/>",c.resources.ea.wm)+"":"")),jQuery(c.K).addClass("flowpaper_toolbarios"));}else{var e=c.resources.ea.rm,g=String.format("<div class='flowpaper_floatright flowpaper_bttnPercent' sbttnPrintIdtyle='text-align:center;padding-top:5px;background-repeat:no-repeat;width:20px;height:20px;font-size:9px;font-family:Arial;background-image:url({0})'><div id='lblPercent'></div></div>",c.resources.ea.Qm);eb.browser.msie&&addCSSRule(".flowpaper_tbtextinput","height","18px");jQuery(c.K).html(String.format("<img src='{0}' class='flowpaper_tbbutton print flowpaper_bttnPrint'/>",c.resources.ea.Km)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e)+(c.F.config.document.ViewModeToolsVisible?String.format("<img src='{1}' class='flowpaper_bttnSinglePage flowpaper_tbbutton flowpaper_viewmode flowpaper_singlepage {0}' />","Portrait"==c.F.vb?"flowpaper_tbbutton_pressed":"",c.resources.ea.Pm)+String.format("<img src='{1}' class='flowpaper_bttnTwoPage flowpaper_tbbutton flowpaper_viewmode flowpaper_twopage {0}' />","TwoPage"==c.F.vb?"flowpaper_tbbutton_pressed":"",c.resources.ea.Um)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_thumbview flowpaper_viewmode flowpaper_bttnThumbView' />",c.resources.ea.Sm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth' />",c.resources.ea.Im)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitheight flowpaper_bttnFitHeight'/>",c.resources.ea.Hm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnRotate'/>",c.resources.ea.Nm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_slider flowpaper_zoomSlider' style='{0}'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?c.Sl:"")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img class='flowpaper_tbbutton flowpaper_bttnFullScreen' src='{0}' />",c.resources.ea.ym)+String.format("<img src='{0}' class='flowpaper_tbseparator' style='margin-left:5px' />",e):"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",c.resources.ea.mm)+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.ea.om)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.CursorToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnTextSelect'/>",c.resources.ea.Rm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",c.resources.ea.Bm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:70px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",c.resources.ea.vm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+g);jQuery(c.K).addClass("flowpaper_toolbarstd");}jQuery(c.L).bind("onDocumentLoaded",function(){jQuery(c.K).find(".flowpaper_bttnPercent").hide();});};this.cl=function(c){c=this.Ta=c.split("\n");jQuery(this.K).find(".flowpaper_bttnPrint").attr("title",this.ua(c,"Print"));jQuery(this.K).find(".flowpaper_bttnSinglePage").attr("title",this.ua(c,"SinglePage"));jQuery(this.K).find(".flowpaper_bttnTwoPage, .flowpaper_bttnBookView").attr("title",this.ua(c,"TwoPage"));jQuery(this.K).find(".flowpaper_bttnThumbView").attr("title",this.ua(c,"ThumbView"));jQuery(this.K).find(".flowpaper_bttnFitWidth").attr("title",this.ua(c,"FitWidth"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.ua(c,"FitHeight"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.ua(c,"FitPage"));jQuery(this.K).find(".flowpaper_zoomSlider").attr("title",this.ua(c,"Scale"));jQuery(this.K).find(".flowpaper_txtZoomFactor").attr("title",this.ua(c,"Scale"));jQuery(this.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").attr("title",this.ua(c,"Fullscreen"));jQuery(this.K).find(".flowpaper_bttnPrevPage").attr("title",this.ua(c,"PreviousPage"));jQuery(this.K).find(".flowpaper_txtPageNumber").attr("title",this.ua(c,"CurrentPage"));jQuery(this.K).find(".flowpaper_bttnPrevNext").attr("title",this.ua(c,"NextPage"));jQuery(this.K).find(".flowpaper_txtSearch, .flowpaper_bttnTextSearch").attr("title",this.ua(c,"Search"));jQuery(this.K).find(".flowpaper_bttnFind").attr("title",this.ua(c,"Search"));var e=this.F.Lj&&0<this.F.Lj.length?this.F.Lj:this.F.O;e.find(".flowpaper_bttnHighlight").find(".flowpaper_tbtextbutton").html(this.ua(c,"Highlight","Highlight"));e.find(".flowpaper_bttnComment").find(".flowpaper_tbtextbutton").html(this.ua(c,"Comment","Comment"));e.find(".flowpaper_bttnStrikeout").find(".flowpaper_tbtextbutton").html(this.ua(c,"Strikeout","Strikeout"));e.find(".flowpaper_bttnDraw").find(".flowpaper_tbtextbutton").html(this.ua(c,"Draw","Draw"));e.find(".flowpaper_bttnDelete").find(".flowpaper_tbtextbutton").html(this.ua(c,"Delete","Delete"));e.find(".flowpaper_bttnShowHide").find(".flowpaper_tbtextbutton").html(this.ua(c,"ShowAnnotations","Show Annotations"));};this.ua=function(c,e,g){for(var h=0;h<c.length;h++){var f=c[h].split("=");if(f[0]==e){return f[1];}}return g?g:null;};this.bindEvents=function(){var c=this;jQuery(c.K).find(".flowpaper_tbbutton_large, .flowpaper_tbbutton").each(function(){jQuery(this).data("minscreenwidth")&&parseInt(jQuery(this).data("minscreenwidth"))>window.innerWidth&&jQuery(this).hide();});if(0==c.F.O.find(".flowpaper_printdialog").length){var e=c.ua(c.Ta,"Enterpagenumbers","Enter page numbers and/or page ranges separated by commas. For example 1,3,5-12");c.F.Wb?c.F.O.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:205px;padding-bottom:20px;'>It's not possible to print from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='"+c.ai+"'>OK</a></div></div>"):c.F.O.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><b>"+c.ua(c.Ta,"Selectprintrange","Select print range")+"</b></font><div style='width:98%;padding-top:5px;padding-left:5px;background-color:#ffffff;'><table border='0' style='margin-bottom:10px;'><tr><td><input type='radio' name='PrintRange' checked='checked' id='"+c.gk+"'/></td><td>"+c.ua(c.Ta,"All","All")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.hk+"'/></td><td>"+c.ua(c.Ta,"CurrentPage","Current Page")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.ik+"'/></td><td>"+c.ua(c.Ta,"Pages","Pages")+"</td><td><input type='text' style='width:120px' id='"+c.Yh+"' /><td></tr><tr><td colspan='3'>"+e+"</td></tr></table><a id='"+c.jk+"' class='flowpaper_printdialog_button'>"+c.ua(c.Ta,"Print","Print")+"</a>&nbsp;&nbsp;<a class='flowpaper_printdialog_button' id='"+c.ai+"'>"+c.ua(c.Ta,"Cancel","Cancel")+"</a><span id='"+c.Zk+"' style='padding-left:5px;'></span><div style='height:5px;display:block;margin-top:5px;'>&nbsp;</div></div></div>");}jQuery("input:radio[name=PrintRange]:nth(0)").attr("checked",!0);c.F.config.Toolbar?(jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return !1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;})):(jQuery(c.K).find(".flowpaper_bttnFitWidth").bind("click",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitwidth(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Width"));}),jQuery(c.K).find(".flowpaper_bttnFitHeight").bind("click",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitheight(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Height"));}),jQuery(c.K).find(".flowpaper_bttnTwoPage").bind("click",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||("BookView"==c.F.vb?c.F.switchMode("BookView"):c.F.switchMode("TwoPage"));}),jQuery(c.K).find(".flowpaper_bttnSinglePage").bind("click",function(){c.F.config.document.TouchInitViewMode&&"SinglePage"!=!c.F.config.document.TouchInitViewMode||!eb.platform.touchonlydevice?c.F.switchMode("Portrait",c.F.getCurrPage()-1):c.F.switchMode("SinglePage",c.F.getCurrPage());}),jQuery(c.K).find(".flowpaper_bttnThumbView").bind("click",function(){c.F.switchMode("Tile");}),jQuery(c.K).find(".flowpaper_bttnPrint").bind("click",function(){eb.platform.touchonlydevice?c.F.printPaper("current"):(jQuery("#modal-print").css("background-color","#dedede"),c.F.dj=jQuery("#modal-print").smodal({minHeight:255,appendTo:c.F.O}),jQuery("#modal-print").parent().css("background-color","#dedede"));}),jQuery(c.K).find(".flowpaper_bttnDownload").bind("click",function(){if(window.zine){var e=FLOWPAPER.Bj(c.document.PDFFile,c.F.getCurrPage());FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams()));window.open(e,"windowname3",null);0<c.document.PDFFile.indexOf("[*,")&&-1==c.document.PDFFile.indexOf("[*,2,true]")&&1<c.F.getTotalPages()&&1<c.F.getCurrPage()&&(e=FLOWPAPER.Bj(c.document.PDFFile,c.F.getCurrPage()-1),FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams())),window.open(e,"windowname4",null));jQuery(c.F).trigger("onDownloadDocument",e);}else{e=FLOWPAPER.Bj(c.document.PDFFile,c.F.getCurrPage()),FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams())),window.open(e,"windowname4",null);}return !1;}),jQuery(c.K).find(".flowpaper_bttnOutline").bind("click",function(){c.F.expandOutline();}),jQuery(c.K).find(".flowpaper_bttnPrevPage").bind("click",function(){c.F.previous();return !1;}),jQuery(c.K).find(".flowpaper_bttnPrevNext").bind("click",function(){c.F.next();return !1;}),jQuery(c.K).find(".flowpaper_bttnZoomIn").bind("click",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.me():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomIn();}),jQuery(c.K).find(".flowpaper_bttnZoomOut").bind("click",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.md():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomOut();}),jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return jQuery(c.K).find(".flowpaper_txtZoomFactor").focus(),!1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").bind("click",function(){c.F.openFullScreen();}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnTextSelect").bind("click",function(){c.F.xe="flowpaper_selected_default";jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("TextSelectorCursor");}),jQuery(c.K).find(".flowpaper_bttnHand").bind("click",function(){jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("ArrowCursor");}),jQuery(c.K).find(".flowpaper_bttnRotate").bind("click",function(){c.F.rotate();}));jQuery("#"+c.Yh).bind("keydown",function(){jQuery(this).focus();});jQuery(c.K).find(".flowpaper_currPageNum, .flowpaper_txtPageNumber").bind("keydown",function(e){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){if("13"!=e.keyCode){return;}c.gotoPage(this);}return !1;});c.F.O.find(".flowpaper_txtSearch").bind("keydown",function(e){if("13"==e.keyCode){return c.searchText(c.F.O.find(".flowpaper_txtSearch").val()),!1;}});jQuery(c.K).bind("onZoomFactorChanged",function(e,h){var f=Math.round(h.Af/c.F.document.MaxZoomSize*100*c.F.document.MaxZoomSize)+"%";jQuery(c.K).find(".flowpaper_txtZoomFactor").val(f);c.Af!=h.Af&&(c.Af=h.Af,jQuery(c.F).trigger("onScaleChanged",h.Af));});jQuery(c.L).bind("onDocumentLoaded",function(e,h){2>h?jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnTwoPage").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onCursorChanged",function(e,h){"TextSelectorCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed"));"ArrowCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed"));});jQuery(c.K).bind("onFitModeChanged",function(e,h){jQuery(".flowpaper_fitmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});"FitHeight"==h&&jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_pressed");"FitWidth"==h&&jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_pressed");});jQuery(c.K).bind("onProgressChanged",function(e,h){jQuery("#lblPercent").html(100*h);1==h&&jQuery(c.K).find(".flowpaper_bttnPercent").hide();});jQuery(c.K).bind("onViewModeChanged",function(e,h){jQuery(c.L).trigger("onViewModeChanged",h);jQuery(".flowpaper_viewmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});if("Portrait"==c.F.H||"SinglePage"==c.F.H){jQuery(c.K).find(".flowpaper_bttnSinglePage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.yc&&c.F.toolbar.yc.enable();}if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){jQuery(c.K).find(".flowpaper_bttnBookView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),eb.platform.touchdevice&&(jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar.yc&&c.F.toolbar.yc.disable()),eb.platform.touchdevice||eb.browser.msie||(jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar.yc&&c.F.toolbar.yc.enable());}"ThumbView"==c.F.H&&(jQuery(c.K).find(".flowpaper_bttnThumbView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.yc&&c.F.toolbar.yc.disable());});jQuery(c.K).bind("onFullscreenChanged",function(e,h){h?jQuery(c.K).find(".flowpaper_bttnFullscreen").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnFullscreen").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onScaleChanged",function(e,h){jQuery(c.L).trigger("onScaleChanged",h);c.yc&&c.yc.setValue(h,!0);});jQuery("#"+c.ai).bind("click",function(e){jQuery.smodal.close();e.stopImmediatePropagation();c.F.dj=null;return !1;});jQuery("#"+c.jk).bind("click",function(){var e="";jQuery("#"+c.gk).is(":checked")&&(c.F.printPaper("all"),e="1-"+c.F.renderer.getNumPages());jQuery("#"+c.hk).is(":checked")&&(c.F.printPaper("current"),e=jQuery(c.K).find(".flowpaper_txtPageNumber").val());jQuery("#"+c.ik).is(":checked")&&(e=jQuery("#"+c.Yh).val(),c.F.printPaper(e));jQuery(this).html("Please wait");window.onPrintRenderingProgress=function(e){jQuery("#"+c.Zk).html("Processing page:"+e);};window.onPrintRenderingCompleted=function(){jQuery.smodal.close();c.F.dj=null;c.L.trigger("onDocumentPrinted",e);};return !1;});c.pq();};this.$j=function(c,e){var g=this;if(0!=jQuery(g.K).find(".flowpaper_zoomSlider").length&&null==g.yc){g=this;this.Of=c;this.Nf=e;if(window.zine){var h={vf:0,Ob:g.F.L.width()/2,oc:g.F.L.height()/2};g.yc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.hb(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.hb(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.hb(g.F.document.MaxZoomSize,h);},animation_callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.hb(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.hb(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.hb(g.F.document.MaxZoomSize,h);},snapping:!1});}else{jQuery(g.K).find(".flowpaper_zoomSlider > *").bind("mousedown",function(){jQuery(g.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_pressed");jQuery(g.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_pressed");}),g.yc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.rh||(c*g.F.document.MaxZoomSize>=g.Of&&c<=g.Nf?g.F.hb(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Of?g.F.hb(g.Of):c>g.Nf&&g.F.hb(g.Nf));},animation_callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.rh||(c*g.F.document.MaxZoomSize>=g.Of&&c<=g.Nf?g.F.hb(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Of?g.F.hb(g.Of):c>g.Nf&&g.F.hb(g.Nf));},snapping:!1});}jQuery(g.K).find(".flowpaper_txtZoomFactor").bind("keypress",function(c){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")&&13==c.keyCode){try{var d={vf:0,Ob:g.F.L.width()/2,oc:g.F.L.height()/2},e=jQuery(g.K).find(".flowpaper_txtZoomFactor").val().replace("%","")/100;g.F.Zoom(e,d);}catch(h){}return !1;}});}};this.qq=function(c){jQuery(c).val()>this.document.numPages&&jQuery(c).val(this.document.numPages);(1>jQuery(c).val()||isNaN(jQuery(c).val()))&&jQuery(c).val(1);};this.oq=function(c){this.document.RTLMode&&(c=this.N.getTotalPages()-c,1>c&&(c=1));"TwoPage"==this.F.H?"1"==c?jQuery(this.K).find(".flowpaper_txtPageNumber").val("1-2"):parseInt(c)<=this.document.numPages&&0==this.document.numPages%2||parseInt(c)<this.document.numPages&&0!=this.document.numPages%2?jQuery(this.K).find(".flowpaper_txtPageNumber").val(c+"-"+(c+1)):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.document.numPages):"BookView"==this.F.H||"FlipView"==this.F.H?"1"!=c||eb.platform.iphone?!(parseInt(c)+1<=this.document.numPages)||this.F.I&&this.F.I.Ea?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Wf(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&(c=c-1),jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Wf(c,1<parseInt(c)?c+"-"+(c+1):c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Wf(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Wf(c,c));};this.qp=function(c){if(this.F.labels){for(var e=this.F.labels.children(),g=0;g<e.length;g++){if(e[g].getAttribute("title")==c){return parseInt(e[g].getAttribute("pageNumber"));}}}return null;};this.Wf=function(c,e,g){0==c&&(c=1);if(this.F.labels){var h=this.F.labels.children();h.length>parseInt(c)-1&&(e=h[parseInt(c-1)].getAttribute("title"),isNaN(e)?e=ja(h[parseInt(c)-1].getAttribute("title")):!("FlipView"==this.F.H&&1<parseInt(e)&&parseInt(e)+1<=this.document.numPages)||this.F.I&&this.F.I.Ea||g||(0!=parseInt(e)%2&&(e=parseInt(e)-1),e=e+"-"+(parseInt(e)+1)));}return e;};this.pq=function(){this.ng?jQuery(this.ng.Na).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages):jQuery(this.K).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages);};this.gotoPage=function(c){var e=this.qp(jQuery(c).val());e?this.F.gotoPage(e):0<=jQuery(c).val().indexOf("-")&&"TwoPage"==this.F.H?(c=jQuery(c).val().split("-"),isNaN(c[0])||isNaN(c[1])||(0==parseInt(c[0])%2?this.F.gotoPage(parseInt(c[0])-1):this.F.gotoPage(parseInt(c[0])))):isNaN(jQuery(c).val())||(this.qq(c),this.F.gotoPage(jQuery(c).val()));};this.searchText=function(c){this.F.searchText(c);};}window.addCSSRule=function(f,c,d){for(var e=null,g=0;g<document.styleSheets.length;g++){try{var h=document.styleSheets[g],m=h.cssRules||h.rules,l=f.toLowerCase();if(null!=m){null==e&&(e=document.styleSheets[g]);for(var k=0,n=m.length;k<n;k++){if(m[k].selectorText&&m[k].selectorText.toLowerCase()==l){if(null!=d){m[k].style[c]=d;return;}h.deleteRule?h.deleteRule(k):h.removeRule?h.removeRule(k):m[k].style.cssText="";}}}}catch(p){}}h=e||{};h.insertRule?(m=h.cssRules||h.rules,h.insertRule(f+"{ "+c+":"+d+"; }",m.length)):h.addRule&&h.addRule(f,c+":"+d+";",0);};window.FlowPaperViewer_Zine=function(f,c,d){this.F=c;this.L=d;this.toolbar=f;this.W="FlipView";this.pn=this.toolbar.Ja+"_barPrint";this.rn=this.toolbar.Ja+"_barViewMode";this.nn=this.toolbar.Ja+"_barNavTools";this.mn=this.toolbar.Ja+"_barCursorTools";this.qn=this.toolbar.Ja+"_barSearchTools";this.vn=this.toolbar.Ja+"_bttnMoreTools";this.fa="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Zh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgchEmOlRoEAAAFUSURBVDjLrZS9SgNREIW/m531JyGbQFAQJE+w4EuYWvQd7C0sAjYpfQcfwsJSXyJgbZFKEhTUuIZkd8Yimx/Dboyytzz345yZuZdxF2x0SpthiBbsZ3/gXnofuYBXbjZSrtevHeRycfQ0bIIo76+HlZ08zDSoPgcBYgz2Ai/t+mYZOQfAbXnJoIoYVFzmcGaiq0SGKL6XPcO56vmKGNgvnGFTztZzTDlNsltdyGqIEec88UKODdEfATm5irBJLoihClTaIaerfrc8Xn/O60OBdgjKyapn2L6a95soEJJdZ6hAYkjMyE+1u6wqv4BRXPB/to25onP/43e8evmw5Jd+vm6Oz1Q3ExAHdDpHOO6XkRbQ7ThAQIxdczC8zDBrpallw53h9731PST7E0pmWsetoRx1NRNjUi6/jfL3i1+zCASI/MZ2LqeTaDKb33hc2J4sep9+A+KGjvNJJ1I+AAAAAElFTkSuQmCC";this.$h="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggFBG3FVUsAAAFTSURBVDjLrZQxSwNBEIXfbuaSUxKUNDYKRmJhZXMIgv/FIm0K/0kau/wdqxQeaGEQksJW0CJ4SC6ZZ5G9eIZbc8pdOfftm/d2ljE3KPXZchhEK9bjH7jX+8TfsH7addzLRA683HI+ZhcQxdukUQ+8nIbhdL8NIR6D0DqXd3niCgBgxOr4EkKwYQrDZEXTmBGiqBVjaw6mpqu8xXet+SPC3EGPnuO4lSMhhHpG/F1WQrRMX4UA3KpHwJJKks1hHG8YJeN42CRJJbO8gwggzjc1o0HvZ94IxT4jurwLpDVXeyhymQJIFxW/Z5bmqu77H72zzZ9POT03rJFHZ+RGKG4l9G8v8gKZ/KjvloYQO0sAs+sCscxISAhw8my8DlddO4Alw441vyQ1ONwlhUjbremHf7/I0V4CCIAkOG6teyxSAlYCAAgMkHyaJLu/Od6r2pNV79MvlFCWQTKpHw8AAAAASUVORK5CYII%3D";this.Th="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcmKZ3vOWIAAAG3SURBVDjLrZS9bhNBFIW/uzOLwVacSIYCCUVCyivwAkgGJ31cpMwT8A6UlKnSpKTgARBPkCK8QZCIlAqRBPGXxbF37qFYO8aWNk6QVyvNnNlP52juzlx7xa2e7HYY0ZfspztwF6e/aoHQXO+MudOvq49rubL4/HsdovPz25PW/TpM3l750m4Txdmjdqjftd0L6WyFKGjZjcWxViGikwcHE/0eMmHsHiBMxod3mCDkTiYhdyXf7h0PDYDK3YbHvW1PchfSmEve3zzfvwQz8Gq43D/f7Hu65jyllHa2OLpqgASpGhpXR2ztpJSSS1GUDrvPP318nyJYlWtAvHj7/Vk3HEApMnfcvXuydxg3AkjIhQRhIx7unXTdHfcInoCnb/IMZIAlA1B4jY8iCRyicAeFMC3YtJpZAzm4iKrWZTI0w8mQqfpKFGn+b/i8SiKWDPI57s+8GpRLPs+acPbPO9XYWOuuuZN000SZZnKv/QyrMmxm9p/7WMxBNHg5cyFezCiIEMUD2QK3psjg4aJW5B3IJF/jJkNjrTr3o2bzx6C+v+SrKiACRd5p1IeOitGkfsPh0vrksvvpX4Z15Dxt627DAAAAAElFTkSuQmCC";this.Kg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfBarvnwYAAAG+SURBVDjLrZQ/axRRFMV/9+2bnUkgKGlsFIxEECWfwMaPIJhqk0+QbUxlkyqdrWBrp/gZ0sTGVgJptkkKmyASLRaHdWf2Hou3f9yVzSaylwf33XmHe+47vDn2kmtFuB6M6Evupxvgvn8p5xM2H24OcV/P4p25uEG/o02Izo+zvJnNxXlRnN9eJ0inWRE1NywWqx0pCuV25WUs74roNEwQnHYLD8J4+hlhHvjwluBgDSdI4E7te62TXlIzSR96J609r3EHKUhIGqi9c3HYBTNQSt3Di522BpISTpK0v8txvwAJlFLRP2Z3f3gehTu8en766f2gCZZ4DWh+e3P57EXjNbgI7kja7hwc5VsR0hhIELfyo4POtiTcI8iBRx/zADLA3ADUeIf/znAQROECxTgRbKJmWEECFzHNjUw2AoySIVM6JaZZpkKzlUSsqRozuGq2quolv2eNcPbXmtTYsNZNeUfs6SVqvBvzjvsZljhsavef91iMS5bwZOrz439NI0grC9sVUoAHi6i1AUEqNoJd9Vtyd1WKolpfO/8131/ivVslRKDM7q+NOepKEGIGkBmUPStH+vX5uSyfXLaf/gE6n/uTJg/UHAAAAABJRU5ErkJggg%3D%3D";this.Pg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcnEaz2sL0AAAGlSURBVDjLrZRNjtNAEIW/ssvDkGgyIwUWSGhWHIEj8Cf2bDgFV+AMLGHBCgmJA3ABdpyBkWaFmAHxGyLHrsfC7dgmsQhSvLG763O/qtddbU/Y6cl2w/DY83r6D+7z+Y9RIJ+czhN3/un4xihXLT78PAUPvn+5OT0cwxSzo4+zGS4urs/y8artIK8vjnDB1BrsBZaqMr190w2mC+FB0a5mIgXLswf2eg3mRZBJKJpHhgkz49fzy/uPom7nkfockkASB+V7e/g4epyLqLukaaSKy1dfb9+xl2k6RCZV7X+gBrP8lr97dna3DVSSB3SmmExgkT+1KIsuEDh93eQtQHbYBQJcRPQI9d4WXX6uTnftX+OPOl3hou7nN/hqA7XwimWxsfkYgH6n8bIanGe1NZhpDW87z4YhawgbCgw4WapUqZCOG/aREia03pzUbxoKN3qG0ZeWtval7diXsg2jtnK2aaiD21++oJRnG3BwcbWVuTfWmxORwbV/XUUxh0yKk20F9pI9CcnFajL5thy/X4pjLcCBRTG/Mi66Wqxa/8pyb/fkvu/TP0a/9eMEsgteAAAAAElFTkSuQmCC";this.bi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfGb7uw0kAAAGtSURBVDjLrZS/bhNBEIe/Wc/5DksRKA0NSASFBvEQvAM0IJ4gFfRUtJSJ0tHyEFQU1DQ0bpKCBgkEFBEny2fvj+LW98f2gSN5pdPt7nya2flpZuwlO62wG4bHPfvTNbgfn8vhgOMHx4n7euG3B7nlfKpj8Mivi3ycDXKxKC5vHRKkL1nhGlzmxWQquVBudTKfSBsFvT8nJMksvxIeGSUrpvrDZtPndrZswFEkSBDrJcOEmXH15tuzk7hI9yAFidVTkASSyOcf7cUrdQwu1Ept1Pv8++nPx0/C23QtEaQYO/5r3B+NP7yePm0skkfo+JMJLI7eWZyNW0PEQeslI4AwIcb2wkVUh1Dnv9KLKFxt3FY/TJjauGItX/V2avP1BdWIjQcagKp0rha9em5cmKmBt9WzYchqwvoBepwsZaqUSMv1+0gJE6KbH3W9dALX8QyjG1ra2pe2Y1/KNoTaytmmoN4dCUkXtKZLABc3lun4cKg3CxHg/v9Gh44gSMVRsH9Qxp2J5KI6PLj8Mzxf/O7NEhwos3sHTYxFJQieAWQG5czKlX5zfu9rTu57nv4FFIsPySkiwzoAAAAASUVORK5CYII%3D";this.Qg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcoGry8dfoAAAFASURBVDjLrZRNSgNBEEZfJzUqCZkERhdCCB7GC+jCrXgDb+QRvIBnEQkuxKAQI2NIeqpcTCI9Mp3JQHrzaPj6q5/uLnfPXquznwzRA/tZC93HdBEVdHuTbKObvg/PozqfP39PQJSvz3H/JCYzTQdvaYoYs7O0G6/aHXWL2QAx6LudzXH93BAlKd0eALiroiwlUcTAAjutgWGlbtNDj6D/sVGKoUWQTFEHNcTw21NSRqoCwBuif7tofqC4W16HTZc7HyOGlqceAbiqIsxvj7iGGMV2F+1LYYhnmQR+P3VYeiR8i3Vo9Z4Nd8PLoEm2uAjcnwC4rKJ13PBfel+Dln6hLt4XQ0Bc+BnqIOCumeMaorqUDpw2jSLNoGOmo52GjpGaibHu9ebL+HxJhpaXVeVJdhwPus7X2/6tVgebk4eep79dEZnAuEZ32QAAAABJRU5ErkJggg%3D%3D";this.ci="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgggAxtSEA8AAAE0SURBVDjLrZQxT8MwEIW/uJc2VKpAXVhAoqgMbLDyq/iVjAiJgS7twIoEAyJCTerHYNokyGlTVC+fJT/fuzvZl9zTabluMswfOJ720L095u2G/avpr+51bqetutVypimY530+6KetOp9li5MxTnpOM1PrSiwbziQTGiRbi0kGn8I8vSB7AOCuiSDs+VBvrdc+BoQJ1q4lhv6i0qmenaIQJvw6ugWnJgC8MF/5tsbDY6Bw65YINnITPtx6AuCmicpXXXyb9bb2RcJKil4tXhFFidXfYgx7vWfVdNcxVLrN/iWcN7G3b/1flmUE/65jW1+E6zISHJg4Wu3qSyYcXO5KURNwUjZxybZvydlQMlGMR4uv9tzs/DgPVeXpxWjjURYCZylAmkD+neTr/i35ONScPPQ8/QFgdrQzzjNS3QAAAABJRU5ErkJggg%3D%3D";this.Rg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTLyj0mgAyAAAC8ElEQVRIx83Wz2ucZRAH8M+72c2mu91NmibFSEgaGy1SrRdFFFIJ9uDBk6KCN6EHD0qLB8GDFwXrQUEK7UnQP0DwUD23RVS8WG2EKrShDSpNYhLaNJtNNvs+HnbzY7fvLmmo2BneyzPzft+Z9zvPzEQngnsoKfdU0rH7Obrw38DNmbK4A4AOOUP2NsJNmdFtYAdwa0om3Ta0ScUt8wbldd01WBArKrihqLge3ax+RR12wnKkU4eqWYXNZPMiOy+ZSF5JWE82kxhZSqfH7Ddg0YwJ01bbEJIRb0YX7oDLOuo5nZg34HFHXXHeby3/Ye3ZgAtNX3vTiAVfm1SWlnPEU4ad800bWupwsWqT6W0j/vC52KCqorIv/eC4cVdbRBgLSAXBmrhBn/GwaaeMeNaoT72oYtjvPpPxsnSTd03XBEEqFtNgyHgSpzyCX2TRbcpVscvO2ufRRLgaRko92U1NO+hn01ZVZC3h9obtopKxBu91jTcvWdzAa0HkV3s8pMuKI9jtBbuUfWvOPw4lVmi8ldmtDg/gusixDcZGjYKzyspN3gnMVhscFgT9/vajPUqWjPlOTt6CuN4gk+CqNbg1lGW2GK6JjDrvKxNirxtTdFwa9Or1p+UEuLK15G5cNul5ObFRrCCug3FYr3PtmnvzfWDZBWlvmbRbpIeN5ljwGr5veSuC6NXANYUGQ94HBl1wpuG0x0f6RGa9o3wH2KL9rUbPktNWjHvfkF2ysorGndGPoM/Hulu1qlcC15uigwe94QmRvyzggC6RgEgQuewTt5qiG24HR9ZBTzskI+WGn8x5F0GEYMKHCXBtBuOKSy41nLznpKjefw8nlnECs63lipOW6y+uJDKbgrRom3rRaRWR4IsmS60yo5cCN6knsR0pKCqbb8gqiGqDEfrM6Ng23GLCthDbp7L+72I9dxVf81ikRywINWYrcnJuJtT6dnaUjG5BqdY+a4clGXtldwAXqyipNG9Qq22G8v+2Lt7f2+e/O1kvzGyGcjEAAAAASUVORK5CYII%3D";this.di="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTOjTXLrppAAAC50lEQVRIx83WT2hcVRTH8c+bvMnMxMSkKU2Fqv1DhQ7aItJWRZEgiAUrKqJuXAZRN2ahRRfd+A+6EtFFF4roTrC4K0pBFDQRIsVakSht1FoUUtoG2oyTTPKui3kmmcmbIQ4Vcu/unvu+75z7O/fcE40G13DkXNMRJ9azd+H/wV1wUqWj8LrdYmcj7pyzYps7wC2aNymkwDjBJWcVdMt3gEsUFU0ZMIhcEJyWVxQLHcxIrKjHpCDUgw0KIp2LEim4IvwbbFcmLKfoLmXbzPjDuHPm2gC7JCuVbU7nkic9poBpW93tKT/41LdtfAzLuGbfYm8om/axH1Xk9XnE/XY55sO2uFz2Ab+p7HvP+UKvoiGJIw7p9rh9bYXJBUHSNA/Y47zD9jhg2CeeUXOb0w7p9qz8qv31GQS5RELDHwqG8bJbLRpTQL8zTqk56SNb7M30i0RSLwGN/hXc7mt/mjOvxyyuLtm+cdXBFr4tXbKkQYoBkTGb3Ktozn3o9bySqndN+8vezAxNWim7FWd0GVlSbGd6I9/xt2pGHjQlSmjYcFGwxe/GbVBx0QNOGHSdy4KcXAtcnREvoKZrhWFKZLfPHfWdxEsY8rQF0G/Ir2oZuJqF7Gpc9bOH9UqUMYckhbHfJsfbVb+wyvVZx+UdNul6kQFsTC39RnCi5a0IWTg+M+UeLxgXvKrsQbDRB3pxVKk1LstwxeuqHvK2HXqUlAw46JgbEGz2vg2tKssTgQnFVYabjbpT5DeXsEspLWKRIHLKK2aaTnxfOxxFuw27Q7ec87407QiCCMGE0Qxcm4exasJEw8qI90RpudzfukCtdfzkRZX0w2prKdbeCox5zbxI8FZmOxEHlCyuGfiVRw2ouLDqpANi2OGX9EzWMmaaNK0Hun35VhRtl/sPwOZXjBv1LL+zNYP6TJntqEeJ3aQ/7W/i+mJF3jZ9GUEsqKXa58Qr2o58Gk1FVbTULC3l3Twur7d2cX13n/8ANgFb4QoS+/QAAAAASUVORK5CYII%3D";this.Tg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTMCbeeCOrAAAC4ElEQVRIx83Wz2tcVRQH8M+bzGTixJmkaSNGSmpqtUi1LlREQSXYrRtFXIrgogtFV4ILV11UwYUU6krQP0BwUV23Xai4abQRqlCDDVqa1CS00cmbzMy7LuZHZqZvxnao2Ht4MLxz5vu+937PPedE7wS3cWXc1pVN3Mnswn8Dt2bZ5hAAIwpm7e6GW7ZqwswQcDVlS/4yuyPFdev2Gjd2y2BBoqToipJSi91V00pGDKNyZNSIuquKO5sdFxk+ZSLjykJrs7lUZhmjHnG/GZtWLVqxPUCQnGSHXbgBLu+I541i3YxHHXHRGT/1PcPG04YLPV87as6GLy2JZRU850n7nPbVAFmacIl6j+stc37xqcRedSWxz33rbfN+7cMwEZAJgpqky572oBUnzHlG1oQpVfv97GM5L8v2RDesJgitEpB0ndoTOOEh/KCo4rJ1cMEpL3rYQh9+zRKQqHdY1kHnrNhWlbeprNr2LSh7tiu6ZcnOJUu62BVFfrTLfmMqHZxjX1vzp0OpGZp0KtsZcC8uibzRVixq/jolFvdEpyhb7wrYEEy77Du7mrlOomijfTppcPUGXA2xXIfjN5EDzvjCokRO1ai4WWenTPndVgpcrJZejWNLXlCQONBkst0OO2zK6UHFvfc+sOWsrDctuVskkmmfXdGr+KbvrQhpcJy17HGvOddM8UbEpA8VcKxPXQxCeuv520kV89436y55eSXzPjGNYI8PTPQrVa8ELine4LjP6x4T+cMGHjAmEhAJIhd85HpX/KZ9g+DIO+gph+RkXPG9Ne+2szBYdCwFbkBjrDjvfNeb9xxvyhI5nJrGqVL0Wxcdt9X8Y6W/FFnRTdqCk6oiwWc9nmyD9UuBa7Rz699XUUlsvWtXQdRojLDHqpGbhttMmRYS96i2zi4xeUv8etsik5JGNQ6oKii4Jh5qRsmZEJQb5bPxsixnt/wQcImqsmrvBLU9oCn/b+PinT19/gPF4yPjYMxK2QAAAABJRU5ErkJggg%3D%3D";this.ei="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUUAAI4cucMAAAC30lEQVRIx83WT2hcVRTH8c97eTN5E5M2TWkq+Kd/UGjQFpG2KroorgpWVETducpCV2YhRRdd+Qe6EtFFF4rozkVxVxRBFGoiRIpakfinUWtRSGkbrB2nM5l3XeR1kkzejHGokHM3j3fe+3LOPb977okmgutosetqSWY9Rxf+H9x5p1R7Sq/sdretxJ11RmJrD7imuhkhByYZLjqjX1mpB1wmlZo1bARxEJxWkkqEHlYkkRowIwiLyQb9Ir0XJdLvsnAt2b5CWCx1rzHbzfvNlLOudgH2yZZXtl3OFU96TD/mbHOfp3zjA190iTEs4dpjS7xizJz3fauqZMgjHrTLce92xcXFG/yqMV951icGpUZljjqs7HH7uhYmDoKsbR20xzlH7HEQIwY03Om0w8qeUVr1/eIKwrUWsDzZ1AG84A5NkzJ/qmmCU97ztL1OdlBg3gJWxtfvLif97qq6AU1NCy3f5/5yqENsrUOWrYhuWGTSFg9IW9L40Qaj3jTnD3sLFZp1quw2/KTPeKtiUf70hr/VCnTQJpSw4oMLgpv8asomVRdsRnCDS4JY3AG3yEgW0NC3zDErsttHjvlSJlUXW8h9G436WaMA17BQ3I1rvvewQZkx1GQtGPttcaJb9wurQr/ihJIjZmwQicXKrdjG8XHHUxGKcHxo1v2eM5VLqA42e8cgjql0xhU5LntZzUNet9OAiophhxx3I4Kt3rapU2d5IjAtXeW41YR7RH5xEbtU8iYWCSJfe9F8247v64YjtdsBdyuLnfOpOUdbKgymTRTgulyMNdOmV7wZ91Yu6cj+zg1qrfad51XzH2udS7H2UWDSS+oiwWuF40QSUMkb0FrsM48aVnV+1U4HJLDTD61j/u8231bTxUR3LJ2K1A7xfwC232LcbGDpnm0YMWTWlZ5mlMQtNubzTbL4sqpku6GCJBY08trHkmVjRynPpqomag1LLd3VcWm9jYvre/r8BzXJTgadvkYEAAAAAElFTkSuQmCC";this.Mg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqC+Q6N4oAAAF8SURBVDjLrZRBThRREIa/mq5WmJGBZJgFRjFx4cJ4AY/hhgvIAUyUW8DGtV6AAxjvoSsXJqILI2qiSDOZ6a7fxYOB0N1Om8zbvaov/19VqZQ9o9PrdcPwWLKe/oP7cXTSCmT97dE5d/RtfauVK4uPf7bBg98/7wxW2jDFcO3rcIiL4/Ewa+/abmTV8RouGFjAg6ebdej76w9gg0J4kGcB7K6807Uhhd3ffQFkeeACBTB6v1/X23sUgFDi0gwba0xB4SKqFKqauAoghIsyWKBXCo+5dgOn81zgdPEFF7FQL9XXwVe4qBb2UQkvmeQpctZEnQFMyiXvs65w04b89JKbx8YPM7+2ytW47nu487JB8LCm9+rL3VJQygBkDuaf39b04k3HPswg/Pm9U4DBp4OyN9/M5Ot28cHs8a30uW0mIKUcXKzKLlt80uTaFz3YXHSKYgQ9KTawf1DGRkguZv3+r0n7fcnXVYADRT662W46K2YX85tOl3Ynl31P/wJHQa4shXXBLAAAAABJRU5ErkJggg%3D%3D";this.Vh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghCwySqXwAAAGGSURBVDjLrZS/ThRRFMZ/d+YMO26yamgWEzdxFRsbqaTlGXgEnoAHwG20puABaC1MfA5jYWJsaBaNjQUJFIQJ2TtzP4sZdgh7B5dkb3XvmV++b86fHLfPUidZDsPCivX0AO7se9FtuPZ6s+H+TG3YyVWzE22CBc6nvbWskwt5fvp0nUT6meWmzuMs759IJtRzgrfvny2K/f3wA1zvUlggdQIm/a+6U6Tg3kx2AZeGOt8AbHyLdPDoXd0GYYKmhNFKquVU312EczUnYSI02iGmFgCCsLCMb8BaoejkhAY2EZp/VUxNN74PzvceTsJKfFpHfIzyAL5c8TzrFjeLfJ+13Dw23ErvTKuvhou+x3ufIoLHC3qHv8deUAYHoMTAZb++LOhVn5fMI3FQZR9fXQIMpgc+bVsvbL4S6o7vPK5fI1HdXhomHrUByu2YbS4SePm/UmsMiZSPE3cP5Xjel0z49cHpVfd+sdGTAgwosheDuUfpBYllAJmD4toVN/WbcbGqPbnqffoPyHTE/GI3wZEAAAAASUVORK5CYII%3D";this.Og="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqK99UF0IAAAGmSURBVDjLrZTNahRREIW/un3bnx4zCYwuBAk+hb2ZbV7BB3AhZlAQRN9EEBGXQQJBfArXvoCLWYnBgEbGIdNdx0WmTd/uGY0wtbunT9epOrfq2lMuFeFyNKJvOJ/+g/dterqWkBW7oyVv+nX79lpeNfv8cxei8+PkzuBa8s0uipEPt74Mh0RxfGuYdbu+O20Qu5LVx1sEiYF5J/b2WwcbIEUn72Ur759U7VZyJwrkaW3lI07bkNA5r+WhOeUEQiohovA6yTae4KGNgYsoquTf8QQFSLBKRE+x8jFClvJwIolu+QxhoFQXovA/lureCzz0853X12BZPX5OnS2vq99vvcSC3wCTNVIXUYtYMc8b3aPqSXAD8F9t3rzqzPOHl4Rlwr/Ms+B92LcVEy5C+9Iwjt5g9DJKqa6Md28x/+ceyXTAg7BCt4sYB687tqzcS5kOeVjQ97mnweFoL+1aRIjd9kyvPsX24EeI4nrXWZk+JudCBLjpfeksGZcRBMl3+sa2V4Edl6JYFMX3+fr3Jd/WDCIwy0dX1/J8MVs0/p2dbeyd3PR7+hsfn9edOMpPUgAAAABJRU5ErkJggg%3D%3D";this.Xh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghLkeWfTsAAAGuSURBVDjLrZQ/axRRFMV/983b7BiMSgptFIxE8GOILkgaaz+Eha2FRfwL8Q9pg2ih6Mewt7FJkyYp7EQwpHCQnZl7LOIu897Okgj7qnl3zpxzz713rj3gVCecDkb0BfPpP3A/v1XzBZeur//Dfd+Pl+bi2vGe1iE6v/aHS4PknXWS8bI8uLBKkHYHZVRyXDfC5NliubwnBUlDU3buPetcbDiWolNY7nl0/0fTTaPwY7+e5jZ6zFFafhEFXbrgjJ5C0CxOnZi1bGziQQlOIgpPNDY28YCSmIvoqe7tJ7jJSHWdSPLtrS3cLLOGIArX1MPN13gQOZ8nfov2zhZNnGQ+36/OQZBNpFK/DXVxfKvtkx6FtgBQ3cXVTTbPn59TuJ00z4KP9jD0AEVaeePDm2mKSYKproy324S2Z/yzTgZ2tilO4gMP7LzM2tHDB268f8XZnG/2/xW8u3g3ZA2OPSvB9OJr4enSiOJMbk+mL0mgFAGu9UgnjrUGQSrXwkxh227tLy9LUdSrKwe/5++XeOV8BRGoBldXphpNLQhxADAwqP5YNZmDMYeL2pOL3qd/AZpy8NOvjvTnAAAAAElFTkSuQmCC";this.Ng="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrBRqZK8wAAAE8SURBVDjLrZTNSsRAEIRrfuJPwmYXogdB9mmy7+P7iIgIIoKIL+RhT+Ki4A8hbJIuD+qaSWbWCKnTUPmopjM9rU4wSHoYBisj5/Ef3PPyPQiYeJ59c8un6VGQq4uHjzlgBW8vx8leCKOkk8c0hSVWh6kJd612TLOaQJNIlPzqVLpSCUgtEpm2i7MeaCIRTYIOh/MuR5AeDhd+Tpq2AOCycSWkJmvp5AFXbmBNahH0OVy7nogG+nUB3Dh1AU2KJw+4dTqhJuHlcNfySE02fg73G68hbY0y8t9svjmV9ZZ5zofNs4MxyLlpDNXNh72jLhbIy4e9yz7m7cOTRljAKsdbqH5RwBL7bH9ZeNJiQgMHf60iyb7maga1hVKYCWmJKo5fy/B+iaYsAAugiLLdcNGqqH7+33o92p4ce59+Av+enpsD10kAAAAAAElFTkSuQmCC";this.Wh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiBLcA5y4AAAE5SURBVDjLrZS7TsNAEEWPN+vERIpAaWhAIigU7vkwPhIQRDxFkyYpaJGgwkJxmEsRiPzaxEi5lTU6vuNZz97oglZy7TC87dhP/+DeHrJww+7Z+Jd7nfnDIPe9mGoM3nif9bpxkLMkmR8McdJLnHgFFfmkP5WcpF5UqF/Wyd5CcmadIiau6mDHzElgBcG1VQSSkyi9DNxUDVecqhy39XG8sPovnpyXz0Y4s1pf4K5cM3OgykcDcF+sCZxkDX7wWKhZ87wrPW2fd6Xn0rxL8k7zBqTrp3y5YZ/TdvtcwhTkym4K9U3b3aMqFvBL293LOtY4R4ObcLVISBtDw0l72zASycHptujQCJyUjFy0gYo46kte5MPB/DOcL/54PwMPZPHJYN1jmQucjwHiCLKvKPs7vwUfu8rJXefpD93iniqiS4VUAAAAAElFTkSuQmCC";this.Lg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrJ8/5aigAAAJ5SURBVDjLrZTfSxRRFMe/d+aOq2v7I9fV/JEEYWVaGZrgQ2DYQ0HQW73ZSw+BPgRBUA9FPvUiRC+Bf0AQRBGR1ENEoWgERmhgij/a1owkdXSb3WZnzulhZnZHc8vA83bnfO73fO+dc4+4jC2FsjUMkrZZj/+D+5FYKwiowbqYyyW+R6oKcpYxk6oDJGF1qba0uBDGFA59C4chGYvxsFr41KJItRdDkAyUCgcTjHjTgZpUYvzTLz9ZajAkQcupBc6eBi9V13d+fjjuP4pGkAwwOWqip0l/MqWrFR3tV+6/8HkEQz2KVDE70dM8evvr3ob65YHJ9iOJefYCmR2QDLKdbZ1tk30nLmhiNpr60He1a0LPCRJDMizHXuA47rZdxNSDjwBGn5459CZ/hwyFCERERPH64XQXZm6NkWCiYdFOuQCRhFe3TLyL76Q7GcAGkEg02/m6gGSQU7cCC5oYTLopw2Da4A/OhxVEl3nMS6pSIf/NKMy2Y2Kem5LC8ixV1c7m/dnM0kJGAwDMfTnV/2hX2lVoKX6ezsllLF8/rw2o3ffeB5xF9XkeXd+GjVhxc3Otx4qeOYeM91aKfa+zwoXMqI8T2bGO1sbln4pWefJ6FYvylsFMnhPnMBfyxHd3t4iFJWW/wmABTF1zf93aHqgHoQc8bvXltFldFpp+/KpNQlC8wW0aMwK5vsuHhkoETAt6r2JJPux7v7zhYaYNwwJGbtiqLfL7+Q/OjZGbpsL9eU4CUmwGvr1Uo0+4GQlIRglvCiaTObUgQwHK/zWKKAYozBSF+AslECVmycgGg3qm8HzRImwAEoChxQKFi2aNrDevTHPb5uR2z9PfLQs68f4FXIYAAAAASUVORK5CYII%3D";this.Uh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiGzoI6tsAAALsSURBVEjHzdZNaBxlGAfw3+xOspvFYK2WSlvTpih40IJgP9RDIQcFEQLB6kFykUIvUj9zCR4KiiCItCB6UqEXDyqePAgpRhCtaSmYYonFJsGepHXrRzfE7mZeDztJZzezoV0r5HlPM++8//n/n6/3iV4KbqEV3FKLE+uZXfh/4C45Y6Ereb3uc28r3K8uiG3uAm7JNTNCChgnqLqgpFdPF3CJsrJZG2xEIQjO6lEWC12sSKysYkYQmmKDkkg2KM2nLfZ5yE5/Oe8HZyx2YBgp+VtYFltsAyPo87znEPzmTrs87bz3TXUELEqykU1amBW8Za/ffWRaVWyrYU846phPOnoxLPtOizcSwZv2+MazTtjhKSNKjjhsyYv2d/ChrO9apY4YMm3MsNf0iszY5KqTXnXUmB9Vc7mFZbGJbOX2eRLjhozjrA+cSne+ddyovb7MTZiAQhMqS3uLB01Y8ArOOWRKUEi/mRB5vIPYRCJuEs2y2ywyaZtNlryeJsfy/qxfPCLpEIgVsVnfbcVFJZGvzLUdqqmtHM0TmyZK9oMruMtlwelVB4tiBWHtRGld84Ld5kUaq/YGDPp5jZKLG6grZv4yb9YB7zpuQL2NwX4VX6x6C3WN/G78p88UjXvbSeWWnQEHBd+v1f1Cjic+dc6wl33XUvR3O+Y2kTf0I8pN5By4gpoxVQd96FEbVFRsN+pz9wvY5WN35JAIguiZwFSbKBg07jGRiy4reiCNZ0hZ/eRQW6kt2oPoQOBUDhwFQ4bsU8KcE/5wRK8g0hA7bbQNbjfNqujUtidMqIhEFjVwxXuKGmKJh288FFlbUHNVA0x6QUNRI/d67hCKtWzSYf8oCt7JhYtvdhT42ojtqqZzx4k4oM/STQDOrWoMUG7WLOz0X0eLYPB6KMoGFXLy/MYswjaV63dF3Ub9ZtW6mlFi97g9nW/i5XTosUN/joiGeuqKgjgzdvSkahYsilaGpZV79lraONfVuLi+p89/AdAUWQEn4HTQAAAAAElFTkSuQmCC";this.wn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNrsmT1Ow0AYRG1ER8glkCioyQk4ARIF9OEA3IeeBnEDJH4qkh4JRXAB6AgtZgxLg2SPKSx7d9+TRoqcr7BeNt7spKyqqoBmNlCAIAQhCEEIQhCCEAQIQlCagibKmXKvvCmvyl24tjX0zZUDH1Z3lAtl1vD+QjlRXnIUNFWulX0zt1QOlPfcvmLzDnKKsLrmOT6DjnqaTUbQbk+zyQiKosocUtDqH7NPOQq67Gk2mW1+O2zzMzO3CNv8OrcVVP+uOQ4CmngIM+scV9Av9XHiVDlU9sK1R+VKOVc+cj5q/F3Nk/C6XjGfY7ipkj8Ox3+aRxCCEmZzZB/W6B7SY2oUb4ufYuxZuSloFL+hUWyBRtFAo2igUTTQKBpoFA00igYaRQONooFGsSM0ijEfVmkUIzjNIwhBCUOjGMEKolFsgUaxBRpFA42igUbRQKNooFE00CgaaBQNNIoGGsWO0CjGDHUHghCEIAQhCEEIQhAgCEE98CXAAHw9kRr/el3HAAAAAElFTkSuQmCC";this.un="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbtJREFUeNrs20tKxEAQgOFEZyu6EA/gEbyYex+kwMfei3kEDyAudB+J3Rg3wmBM18vxLyiyGSbVH10d0k36aZo6YnvsQQAQQAABBBBAAP3T2Dje66jk43xtideSZ/N1p4D6ksclDxRq7ne1xcYk/8EaBBBAAAEEEEAEQAABBBBAAAHk/Rbu9kbfuh90Mhe75Hi2bpRp7ON87SttFv62/u559c0aj57PS96UfF+AVIs9VECq93lbeL/9ktclH6KAatyWvEy6hNyVvIpeg2oBkhBHWnE+52uZQUopU54QrXFpAmVBEs0xaQPVHAJxBu3xWABFzSSxGIsVkDeSWI3DEsir3QbLMVgDWc8ksa7fA8gKSTxq9wLSbrfBq25PIK2ZJJ41ewO1Iol3vRFAa9ttiKg1Cui3M0mi6owEWookkTVGA/3UbkN0fRmAts0kyVBbFqDvSJKlLo0tV824n68XWQrKBsTBIUAAAUQoHj1rHSdbRn0Krf6uo/Up9tS1f5xiHRXnNGoGaXyckrpLWtegscsfYyQQTzHjFk3fYq0DfPkDbdb0ZSLvYqxBAAEEEEAAAQQQARBAAPnHhwADADsGwOIWz5onAAAAAElFTkSuQmCC";this.gg="data:image/gif;base64,R0lGODlhAwAVAIABAJmZmf///yH5BAEKAAEALAAAAAADABUAAAINRBynaaje0pORrWnhKQA7";this.Qp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH3QkaAjcFsynwDgAAAMxJREFUKM+9kLEuRQEQRGeuV5FIJApBQZ5EReFP/IBCBIVvpFT4BR9AR+29cxTukyvRaEyzmd3Jzu4kI4Ad9d4JANVLdS1JhvwB/yBuu0jiL5pl22WSzNRBPVE3225MVW2TZA84bfsWYFDvgNX30zQY6wtwmCRRo96qy9V8Et2zevDjMKDqFfA+2fykzr9F6o16vnIALtRX4AE4GvtbwHVGq8epi3qm7k74HFjMRrINnLdd/6KS5FgdkpBkv206DkzykaSTbWkbdUyxs094zOEo59nhUAAAAABJRU5ErkJggg%3D%3D";this.Up="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgAwB/13ZqAAAADXSURBVCjPhZIxTkMxEETf2F9I0EaCI9DRUZEL0XINbpMzQJ2eG1DQpvszNDbyN4kylde7O+PxLgxIckgS2+mw3ePDWFumxrPnc/GmURKXMOfKXDAzX8LcWEfmTtLu6li42O4SD8ARuAHW6RVV0tH2PfANsAyMT8A7cJo9JSHJHfAsiSSoKa6S6jWfjWxNUrtiAbKtUQaSLh+gSEppSf3/3I1qBmIl0ejxC3BnHz02X2lTeASgr5ft3bXZ2d71NVyA1yS3pZSfJB/AS5I/xWGWn5L2tt+A0y9ldpXCCID4IwAAAABJRU5ErkJggg%3D%3D";this.aq="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gIDABU3A51oagAAAIpJREFUOMulk9ENgCAMRKkTOAqjMIKj6CSOghs4gm7gCM+fGgmCsXJJP0i4cj16zhkBjNwYreSeDJ1rhLVByM6TRf6gqgf3w7g6GTi0fGJUTHxaX19W8oVNK8f6RaYHZiqo8aTQqHhZROTrNy4VhcGybamJMRltBvpfGwcENXxryYJvzcLemp1HnE/SdAV9Q8z4YgAAAABJRU5ErkJggg%3D%3D";this.Pp="data:image/png;base64,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%3D%3D";this.cq="data:image/png;base64,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%3D%3D";this.Sp="data:image/gif;base64,R0lGODlhEAAPAKECAGZmZv///1FRUVFRUSH5BAEKAAIALAAAAAAQAA8AAAIrlI+pB7DYQAjtSTplTbdjB2Wixk3myDTnCnqr2b4vKFxyBtnsouP8/AgaCgA7";this.Tp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIXjG+Am8oH4mvyxWtvZdrl/U2QJ5Li+RQAOw%3D%3D";this.Vp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIYjAOnC7ncnmpRIuoerpBabF2ZxH3hiSoFADs%3D";this.fq="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Rp="data:image/png;base64,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%3D%3D";this.bq="data:image/gif;base64,R0lGODlhEAAPAIABAP///1FRUSH5BAEKAAEALAAAAAAQAA8AAAIkjI+pi+DhgJGMnrfsxEnDqHgRN3WjJp5Wel6mVzbsR8HMjScFADs%3D";this.$p="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUEyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUIyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxODI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxOTI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrESQzQAAAF3SURBVHjaYvz//z8DPQATA53A8LOIkRLNNpaWAkCqHogVgBjEbjxy/PgBbGpZKLRkPxAbQIUuAPEHXOqZsRhwX05WVhCIHzx68gSnRqB8O5AKQBKSAGIPoPhFoL4HBIMOaNF5JFcuAOKF6MEBVOMA9Q0ukAjUs4BQYkhECoIEkIFAg/dDDYeBfAIh2w9Ur0BMqkMPMgeohfOhBgQQsAiWSPAGHcig+3gMeQBNZYTAA2jogCy1Z8SRokAung9VRCkAWRiIK+guQBVQCj5AzalnITKOyAWg1HoQlHoZCWRIUBD2kxmEG4BJPJBgWQdUBPM2ufG0EaVkALkcmJN/YFMJyuHAnM4IzcAcpAQZ0KGF6PkoAGhZAzSosAUfP4m+AoVEINYiCGQRNLeDIu8iVE6fiIyJzRJHoG8u4CzrgJYlUBDxsBQWCI1b/PURtFSoh5ZxxIIL0HpoA8kVH1J55g9NCAJowXMBmj82YAsmrBaNtoIGvUUAAQYApBd2hzrzVVQAAAAASUVORK5CYII%3D";this.Xp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUUyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxQzI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxRDI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj8crNUAAAFxSURBVHjavFbNbYMwGDU0A7BA2oxAj5EqlU7QZgKSY4+ZgDJBmgmAY09JN8ihUo7NBqVVBmCD9H3qc4UsnCBi8qQnGwN+fL/GU8TdePyCIQZHyg1KsPjYbmVf5VEkwzBV/SCH2MyjJYnqF6lPd/WN2HcYk2O4hMYfJEaHSwj5l7JocOTeBgzAd84j8J6jM6E5U16EQq69go8uXZeDO4po6DpLXQoVYNWwHlrWOwuFaBk79qomMRseyNbpLQK34BOYca1i3BaGS/+Bj9N989A2GaSKv8AlNw8Ys1WvBStfimfEZZ82K2yo732yYPHwlDGbnZMMTRbJZmvOA+06iM1tlnWJUcXMyYwMi7BBxHt5l0PSdF1qdAMztSUTv120oNJSP6rmyvhU4NtYlNB9TYHfsKmOulpU1l7WwZYamtQ69Q3nXU/KcsDelhgFu3B8HBU6JVcMdB9YI/UnVzL72e/frodDj9YEDn8glxB5lotfAQYAtCJqk8z+2M8AAAAASUVORK5CYII%3D";this.Yp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0FBOEM3Q0EyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0FBOEM3Q0IyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMENEMDM3NTI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMENEMDM3NjI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptz3FgYAAAErSURBVHjaYmQAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJLFjiBBS2E4GYn4pxJsCCRdAQGHkPoIlkIzT+KAZM6L6BWQICQPYBaoUdukUCQF/A4wzILqCWRaDk/R9HkmSgZpJnwiFuQKIlFwgpwEgMwHhhRObDfIxDvBAoPgFJDBTs/dhSKhMFoZGIbAnUMaAixxGaRahjEchQoA8MgNgBTfwCtIyjjkVAC0BBdB6Uz4Bs9Ly2kZpBh5z0HQglDiZaFGygaoEuFpGSj0YtGoEWgUrv91Rs+eBsETFhKy5oABaALGokppinsLnVyPzoyZMfwCbXSlCTCIg1oDS1GpAzoKX8B4AAAwAuBFgKFwVWUgAAAABJRU5ErkJggg%3D%3D";this.Zp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gEfAAUcuIwRjAAAAVpJREFUSMftlrtKA0EUhr9ZFkEMCCpYCb6AIGJzdF7AUhRsREF9AQmCl1IhgpjGwkohb+Ab2Ew4ldZik8pOVOy8kNhMYAhBd5PZVB5Y2BnO8O3M/5+zYwCsyA6wD0wALeKEAZ6BY6daM1ZkA6hRbGwmQJniYy8FRnMsePVHOwSUcqwbSfJo4lTHnOo4sJx3S0mOXA3eh4sEHVmRnkVKM+adONXbDutGBT0CW0613mX+FGgGc4f9gK6AehdTPAAH7bEVMX+BkgxOy+LGVr9Ht2ZFZoDrUCMrMusLvRlLozn/OCA0wxSwXpS9+4p/UDu+iwJ12vetKFAp7HNOVYE7P/wC7oFqjF634FSrQR3hVOfDBCuyHWNHK1ZkMYCEgEy6GSvSAKYzAs+BS+AJ+PD/pUlgCbj45cMbac6WX+71jpEALwMoo/cEqAwAVDFe0FXgzN9uYsYnsOtUb34AitxcDYrQdlwAAAAASUVORK5CYII%3D";this.Wp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMTYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMTcyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNTQyQTc3NTI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNTQyQTc3NjI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkQAqvIAAADoSURBVHjaYmEAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJTFSME3xAgIlCAw4AcSAoDoBYEBjpjCCMTSELJZYADXUkVjElPppIimIWCpMtHACzyXt88U22j4DB9gA9wmkVdCQBcixqxJaykFJcIb18JEAvi+SxCYIK1f9kJgZGtFT3f8gmhlGLRi2i3KIPdLDnAwu0SVRAqk4SM/oCkI8a0esWGjS3GpkfPXnyA9jkWglqEgGxBpSmVgNyBhAnghqQAAEGADc+O4K5UN0FAAAAAElFTkSuQmCC";this.N=f.N;this.F.bc=-1;this.ff=!0;this.jb=new va;this.Ac=new wa;this.ro=new xa;this.yn=new ya;this.kq=new za;this.zn=function(){};this.En=function(c){var d=this;d.Ja=c;d.N.ab="FlipView"==d.F.H;if(!d.N.document.DisableOverflow){d.Na=d.F.Rb?jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.N.ab?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.N.ab?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;'></div>").parent();jQuery("#"+d.Ja).css("visibility","hidden");c=d.N;var h;if(!(h=d.N.config.document.PreviewMode)){var f;try{f=window.self!==window.top;}catch(l){f=!0;}h=f&&d.N.ld()&&600>d.N.ld()&&!d.N.Wb&&!FLOWPAPER.getLocationHashParameter("DisablePreview");}c.PreviewMode=h;null!=d.N.config.document.UIConfig?d.dl(null!=d.N.config.document.UIConfig?d.N.config.document.UIConfig:"UI_Zine.xml",function(){d.Jg=!0;d.F.Vg&&d.F.Vg();}):d.Vj();d.N.PreviewMode&&(d.Qk(),d.hh());eb.platform.touchonlydevice&&d.Na.append(String.format('<div class="flowpaper_toolbarios toolbarMore" style="visibility:hidden;z-index: 200;overflow: hidden;padding-top: 4px;padding-bottom: 3px;height: 38px;margin-right: 100px;display: block;margin-top: -6px;background-color: rgb(85, 85, 85);"></div>'));}};this.dl=function(c,d){var h=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){h.Vj();},success:function(c){h.Wc=c;c=eb.platform.touchonlydevice?"mobile":"desktop";!eb.platform.lb&&eb.platform.touchonlydevice&&0<jQuery(h.Wc).find("tablet").length&&(c="tablet");toolbar_el=jQuery(h.Wc).find(c).find("toolbar");var e=jQuery(h.Wc).find(c).find("general");h.readOnly="true"==jQuery(e).attr("ReadOnly");h.backgroundColor=jQuery(e).attr("backgroundColor");h.linkColor=null!=jQuery(e).attr("linkColor")?jQuery(e).attr("linkColor"):"#72e6ff";h.N.linkColor=h.linkColor;h.Ic=null!=jQuery(e).attr("linkAlpha")?jQuery(e).attr("linkAlpha"):0.4;h.N.Ic=h.Ic;h.xf=null!=jQuery(e).attr("arrowSize")?jQuery(e).attr("arrowSize"):22;h.N.xf=h.xf;h.backgroundImage=jQuery(e).attr("backgroundImage");h.uj=null==jQuery(e).attr("stretchBackgroundImage")||null!=jQuery(e).attr("stretchBackgroundImage")&&"true"==jQuery(e).attr("stretchBackgroundImage");h.F.Pe=null==jQuery(e).attr("enablePageShadows")||null!=jQuery(e).attr("enablePageShadows")&&"true"==jQuery(e).attr("enablePageShadows");h.Ea=("true"==jQuery(e).attr("forceSinglePage")||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.lh||h.F.Se||h.Fq)&&!(h.N.PreviewMode&&!eb.browser.lh);h.kb=jQuery(e).attr("panelColor");h.ob=null!=jQuery(e).attr("arrowColor")?jQuery(e).attr("arrowColor"):"#AAAAAA";h.Ge=jQuery(e).attr("backgroundAlpha");h.te=jQuery(e).attr("navPanelBackgroundAlpha");h.Ki=jQuery(e).attr("imageAssets");h.cb=!eb.platform.touchonlydevice&&(null==jQuery(e).attr("enableFisheyeThumbnails")||jQuery(e).attr("enableFisheyeThumbnails")&&"false"!=jQuery(e).attr("enableFisheyeThumbnails"))&&(!h.Ea||h.F.Se)&&!h.F.config.document.RTLMode;h.ff="false"!=jQuery(e).attr("navPanelsVisible");h.og="false"!=jQuery(e).attr("firstLastButtonsVisible");h.Op=null!=jQuery(e).attr("startWithTOCOpen")&&"false"!=jQuery(e).attr("startWithTOCOpen");h.tf=null!=jQuery(e).attr("zoomDragMode")&&"false"!=jQuery(e).attr("zoomDragMode");h.Er=null!=jQuery(e).attr("hideNavPanels")&&"false"!=jQuery(e).attr("hideNavPanels");h.Hn=null!=jQuery(e).attr("disableMouseWheel")&&"false"!=jQuery(e).attr("disableMouseWheel");h.lg=null!=jQuery(e).attr("disableZoom")&&"false"!=jQuery(e).attr("disableZoom");h.Ae=null!=jQuery(e).attr("flipAnimation")?jQuery(e).attr("flipAnimation"):"3D, Soft";h.Tc=null!=jQuery(e).attr("flipSpeed")?jQuery(e).attr("flipSpeed").toLowerCase():"medium";h.tb=h.tb&&!h.Ea;h.tn=null!=jQuery(e).attr("bindBindNavigationKeys")&&"false"!=jQuery(e).attr("bindBindNavigationKeys");h.yi=null!=jQuery(e).attr("flipSound")?jQuery(e).attr("flipSound"):null;jQuery(h.toolbar.K).css("visibility","hidden");if(h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.uj?(jQuery(h.N.L).css("background-color",""),jQuery(h.N.L).css("background",""),jQuery(h.N.O).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.N.L).css("background-size","cover")):(jQuery(h.N.L).css("background",""),jQuery(h.N.O).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.N.L).css("background-size",""),jQuery(h.N.L).css("background-position","center"),jQuery(h.N.O).css("background-position","center"),jQuery(h.N.L).css("background-repeat","no-repeat"),jQuery(h.N.O).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){var f=R(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Ge?parseFloat(h.Ge):1)+")";jQuery(h.N.L).css("background",f);jQuery(h.N.O).css("background",f);h.N.ab||jQuery(h.Na).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var n=h.backgroundColor.split(",");n[0]=n[0].toString().replace("[","");n[0]=n[0].toString().replace("]","");n[0]=n[0].toString().replace(" ","");n[1]=n[1].toString().replace("[","");n[1]=n[1].toString().replace("]","");n[1]=n[1].toString().replace(" ","");f=n[0].toString().substring(0,n[0].toString().length);n=n[1].toString().substring(0,n[1].toString().length);jQuery(h.N.L).css("background","");jQuery(h.N.O).css({background:"linear-gradient("+f+", "+n+")"});jQuery(h.N.O).css({background:"-webkit-linear-gradient("+f+", "+n+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.N.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+n+"');"),jQuery(h.N.O).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+n+"');"));}else{jQuery(h.N.O).css("background-color","#222222");}}}h.Yj();jQuery(h.toolbar.K).children().css("display","none");h.Zh=h.fa;h.$h=h.fa;h.Th=h.fa;h.Kg=h.fa;h.Pg=h.fa;h.bi=h.fa;h.Qg=h.fa;h.ci=h.fa;h.Rg=h.fa;h.di=h.fa;h.Tg=h.fa;h.ei=h.fa;h.Mg=h.fa;h.Vh=h.fa;h.Og=h.fa;h.Xh=h.fa;h.Ng=h.fa;h.Wh=h.fa;h.Lg=h.fa;h.Uh=h.fa;var p="",q=null,f=0;jQuery(toolbar_el).attr("visible")&&"false"==jQuery(toolbar_el).attr("visible")?h.qf=!1:h.qf=!0;!jQuery(toolbar_el).attr("width")||null!=jQuery(toolbar_el).attr("width")&&0<=jQuery(toolbar_el).attr("width").indexOf("%")?jQuery(h.toolbar.K).css("width",null):jQuery(toolbar_el).attr("width")&&jQuery(h.toolbar.K).css("width",parseInt(jQuery(toolbar_el).attr("width"))+60+"px");jQuery(toolbar_el).attr("backgroundColor")&&(jQuery(h.toolbar.K).css("background-color",jQuery(toolbar_el).attr("backgroundColor")),jQuery(".toolbarMore").css("background-color",jQuery(toolbar_el).attr("backgroundColor")));jQuery(toolbar_el).attr("borderColor")&&jQuery(h.toolbar.K).css("border-color",h.kb);jQuery(toolbar_el).attr("borderStyle")&&jQuery(h.toolbar.K).css("border-style",jQuery(toolbar_el).attr("borderStyle"));jQuery(toolbar_el).attr("borderThickness")&&jQuery(h.toolbar.K).css("border-width",jQuery(toolbar_el).attr("borderThickness"));jQuery(toolbar_el).attr("paddingTop")&&(jQuery(h.toolbar.K).css("padding-top",jQuery(toolbar_el).attr("paddingTop")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("paddingLeft")&&jQuery(h.toolbar.K).css("padding-left",jQuery(toolbar_el).attr("paddingLeft")+"px");jQuery(toolbar_el).attr("paddingRight")&&jQuery(h.toolbar.K).css("padding-right",jQuery(toolbar_el).attr("paddingRight")+"px");jQuery(toolbar_el).attr("paddingBottom")&&(jQuery(h.toolbar.K).css("padding-bottom",jQuery(toolbar_el).attr("paddingBottom")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("cornerRadius")&&jQuery(h.toolbar.K).css({"border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px","-moz-border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px"});jQuery(toolbar_el).attr("height")&&jQuery(h.toolbar.K).css("height",parseFloat(jQuery(toolbar_el).attr("height"))-f+"px");jQuery(toolbar_el).attr("location")&&"float"==jQuery(toolbar_el).attr("location")?h.Cg=!0:h.Cg=!1;jQuery(toolbar_el).attr("location")&&"bottom"==jQuery(toolbar_el).attr("location")&&(h.nf=!0,jQuery(h.toolbar.K).parent().detach().insertAfter(h.L),jQuery(h.toolbar.K).css("margin-top","0px"),jQuery(h.toolbar.K).css("margin-bottom","-5px"),jQuery(h.toolbar.K+"_wrap").css("bottom","0px"),jQuery(h.toolbar.K+"_wrap").css("background-color",h.kb),jQuery(jQuery(h.F.L).css("height",jQuery(h.F.L).height()-40+"px")));var t=1<eb.platform.Ya&&!eb.platform.touchonlydevice?"@2x":"";jQuery(jQuery(h.Wc).find(c)).find("toolbar").find("element").each(function(){"bttnPrint"!=jQuery(this).attr("id")&&"bttnDownload"!=jQuery(this).attr("id")&&"bttnTextSelect"!=jQuery(this).attr("id")&&"bttnHand"!=jQuery(this).attr("id")&&"barCursorTools"!=jQuery(this).attr("id")||!h.readOnly||jQuery(this).attr("visible",!1);"bttnDownload"!=jQuery(this).attr("id")||h.F.document.PDFFile||jQuery(this).attr("visible",!1);"bttnDownload"==jQuery(this).attr("id")&&h.N.renderer.config.signature&&0<h.N.renderer.config.signature.length&&jQuery(this).attr("visible",!1);switch(jQuery(this).attr("type")){case"button":p=".flowpaper_"+jQuery(this).attr("id");jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",jQuery(this).attr("paddingLeft")-6+"px");if(0==jQuery(p).length&&(jQuery(h.toolbar.K).append(String.format("<img id='{0}' class='{1} flowpaper_tbbutton'/>",jQuery(this).attr("id"),"flowpaper_"+jQuery(this).attr("id"))),jQuery(this).attr("onclick"))){var c=jQuery(this).attr("onclick");jQuery(p).bind("mousedown",function(){eval(c);});}if(jQuery(this).attr("fa-class")){jQuery(p).replaceWith(String.format('<span id="{0}" style="cursor:pointer;color:#ffffff" class="fa {1} {2}"></span>',jQuery(this).attr("id"),jQuery(this).attr("fa-class"),jQuery(p).get(0).className));}else{var d=jQuery(this).attr("id");jQuery(this).attr("src")&&(d=jQuery(this).attr("src"));}jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Ki+d+t+".png");jQuery(this).attr("icon_width")&&jQuery(p).css("width",jQuery(this).attr("icon_width")+"px");jQuery(this).attr("icon_height")&&jQuery(p).css("height",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("fa-class")&&jQuery(p).css("font-size",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",jQuery(this).attr("paddingRight")-6+"px");jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",jQuery(this).attr("paddingTop")+"px");h.Cg?jQuery(p).css("margin-top","0px"):jQuery(p).css("margin-top","2px");null!=q&&jQuery(p).insertAfter(q);q=jQuery(p);break;case"separator":p="#"+h.toolbar.Ja+"_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Ki+"bar"+t+".png");jQuery(this).attr("width")&&jQuery(p).css("width",jQuery(this).attr("width")+"px");jQuery(this).attr("height")&&jQuery(p).css("height",jQuery(this).attr("height")+"px");jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",+jQuery(this).attr("paddingTop"));jQuery(p).css("margin-top","0px");null!=q&&jQuery(p).insertAfter(q);q=jQuery(p);break;case"slider":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));h.Cg?jQuery(p).css("margin-top","-5px"):jQuery(p).css("margin-top","-3px");null!=q&&jQuery(p).insertAfter(q);q=jQuery(p);break;case"textinput":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));jQuery(this).attr("readonly")&&"true"==jQuery(this).attr("readonly")&&jQuery(p).attr("disabled","disabled");null!=q&&jQuery(p).insertAfter(q);eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"7px"):h.Cg?jQuery(p).css("margin-top","-2px"):jQuery(p).css("margin-top","0px");q=jQuery(p);break;case"label":p=".flowpaper_"+jQuery(this).attr("id"),jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block"),jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width")),jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height")),jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft")),jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight")),jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop")),null!=q&&jQuery(p).insertAfter(q),eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"9px"):h.Cg?jQuery(p).css("margin-top","1px"):jQuery(p).css("margin-top","3px"),q=jQuery(p);}});h.N.outline=jQuery(jQuery(h.Wc).find("outline"));h.N.labels=jQuery(jQuery(h.Wc).find("labels"));jQuery(h.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});jQuery(toolbar_el).attr("location")&&jQuery(toolbar_el).attr("location");350>jQuery(h.toolbar.K).width()&&jQuery(".flowpaper_txtSearch").css("width","40px");jQuery(e).attr("glow")&&"true"==jQuery(e).attr("glow")&&(h.Jq=!0,jQuery(h.toolbar.K).css({"box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-webkit-box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-moz-box-shadow":"0 0 35px rgba(22, 22, 22, 1)"}));h.kb?jQuery(h.toolbar.K).css("background-color",h.kb):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555");h.qf?jQuery(h.toolbar.K).css("visibility","visible"):jQuery(h.toolbar.K).hide();jQuery(jQuery(h.Wc).find("content")).find("page").each(function(){var c=jQuery(this);jQuery(this).find("link").each(function(){h.F.addLink(jQuery(c).attr("number"),jQuery(this).attr("href"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("showLinkIcon")?"true"==jQuery(this).attr("showLinkIcon"):!1,jQuery(this).attr("showMouseOverText")?"true"==jQuery(this).attr("showMouseOverText"):!1,jQuery(this).attr("mouseOverText"));});jQuery(this).find("video").each(function(){h.F.addVideo(jQuery(c).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizevideo"));});jQuery(this).find("iframe").each(function(){h.F.Xj(jQuery(c).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizeframe"));});jQuery(this).find("image").each(function(){h.F.addImage(jQuery(c).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("href"),jQuery(this).attr("hoversrc"));});});h.tn&&jQuery(window).bind("keydown",function(c){!c||Mouse.down||jQuery(c.target).hasClass("flowpaper_zoomSlider")||"INPUT"==jQuery(c.target).get(0).tagName||h.F.pages.animating||(h.N.pages.ee()||h.N.pages&&h.N.pages.animating)&&!h.$g||("37"==c.keyCode?h.N.previous():"39"==c.keyCode&&h.N.next());});d&&d();}});};this.hh=function(){this.F.O.find(".flowpaper_fisheye").hide();};this.rj=function(){this.pk();};this.Qk=function(){this.F.PreviewMode||jQuery(this.N.L).css("padding-top","20px");jQuery("#"+this.Ja).hide();};this.Ip=function(){jQuery(this.N.L).css("padding-top","0px");jQuery("#"+this.Ja).show();};this.Vj=function(){this.Ea=eb.platform.lb&&!this.N.PreviewMode;this.tf=!0;this.cb=!eb.platform.touchonlydevice;this.te=1;this.F.Pe=!0;jQuery(this.toolbar.K).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(this.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});this.N.config.document.PanelColor&&(this.kb=this.N.config.document.PanelColor);this.N.config.document.BackgroundColor?this.backgroundColor=this.N.config.document.BackgroundColor:this.backgroundColor="#222222";this.backgroundImage||jQuery(this.N.O).css("background-color",this.backgroundColor);this.kb?jQuery(this.toolbar.K).css("background-color",this.kb):eb.platform.touchonlydevice?jQuery(this.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(this.toolbar.K).css("background-color","#555555");this.Yj();this.Jg=!0;this.F.Vg&&this.F.Vg();};this.Yj=function(){if(eb.platform.touchonlydevice){var c=eb.platform.lb?-5:-1,d=eb.platform.lb?7:15,h=eb.platform.lb?40:60;jQuery(this.toolbar.K).html(String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_bttnDownload' style='margin-left:{1}px;'/>",this.un,d)+(this.toolbar.N.config.document.ViewModeToolsVisible?String.format("<img src='{0}' style='margin-left:{1}px' class='flowpaper_tbbutton_large flowpaper_twopage flowpaper_tbbutton_pressed flowpaper_bttnBookView flowpaper_viewmode'>",this.Th,d)+String.format("<img src='{0}' class='flowpaper_bttnSinglePage flowpaper_tbbutton_large flowpaper_singlepage flowpaper_viewmode' style='margin-left:{1}px;'>",this.Pg,c)+String.format("<img src='{0}' style='margin-left:{1}px;' class='flowpaper_tbbutton_large flowpaper_thumbview flowpaper_bttnThumbView flowpaper_viewmode' >",this.Qg,c)+"":"")+(this.toolbar.N.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:{1}px;' />",this.Rg,d)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:{1}px;' />",this.Tg,c)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullscreen' src='{0}' style='margin-left:{1}px;' />",this.Mg,c)+"":"")+(this.toolbar.N.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:{0}px;'/>",this.Og,d)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:{0}px;' />",h)+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel_large flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton_large flowpaper_next'/>",this.Ng)+"":"")+(this.toolbar.N.config.document.SearchToolsVisible?String.format("<input type='txtSearch' class='flowpaper_txtSearch flowpaper_tbtextinput_large' style='margin-left:{0}px;width:{1}px;text-align:right' value='{2}' />",d,eb.platform.lb?70:130,eb.platform.lb?"&#x1F50D":"")+String.format("<img src='{0}' class='flowpaper_bttnFind flowpaper_find flowpaper_tbbutton_large'  style=''/>",this.Lg)+"":"")+String.format("<img src='{0}' id='{1}' class='flowpaper_bttnMore flowpaper_tbbutton_large' style='display:none' />",this.wn,this.vn));jQuery(this.toolbar.K).removeClass("flowpaper_toolbarstd");jQuery(this.toolbar.K).addClass("flowpaper_toolbarios");jQuery(this.toolbar.K).parent().parent().css({"background-color":this.backgroundColor});}else{jQuery(this.toolbar.K).css("margin-top","15px"),c=this.N.renderer.config.signature&&0<this.N.renderer.config.signature.length,jQuery(this.toolbar.K).html(String.format("<img style='margin-left:10px;' src='{0}' class='flowpaper_bttnPrint flowpaper_tbbutton print'/>",this.Up)+(this.F.document.PDFFile&&0<this.F.document.PDFFile.length&&!c?String.format("<img src='{0}' class='flowpaper_bttnDownload flowpaper_tbbutton download'/>",this.Qp):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.gg,this.pn)+(this.N.config.document.ViewModeToolsVisible?String.format("<img style='margin-left:10px;' src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnBookView flowpaper_twopage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","FlipView"==this.N.vb?"flowpaper_tbbutton_pressed":"",this.cq)+String.format("<img src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnSinglePage flowpaper_singlepage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","Portrait"==this.N.vb?"flowpaper_tbbutton_pressed":"",this.Pp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.gg,this.rn):"")+(this.N.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_zoomSlider flowpaper_slider' style='background-image:url({1})'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?this.F.toolbar.Sl:"","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTIiPjxsaW5lIHgxPSIwIiB5MT0iNiIgeDI9Ijk1IiB5Mj0iNiIgc3R5bGU9InN0cm9rZTojQUFBQUFBO3N0cm9rZS13aWR0aDoxIiAvPjwvc3ZnPg==")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img style='margin-left:10px;' class='flowpaper_tbbutton flowpaper_bttnFullscreen' src='{0}' />",this.Rp):"")+(this.N.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",this.Tp)+String.format("<input type='text' class='flowpaper_txtPageNumber flowpaper_tbtextinput flowpaper_currPageNum' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton flowpaper_next'/>",this.Vp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.gg,this.nn):"")+(this.N.config.document.CursorToolsVisible?String.format("<img style='margin-top:5px;margin-left:6px;' src='{0}' class='flowpaper_tbbutton flowpaper_bttnTextSelect'/>",this.bq)+String.format("<img style='margin-top:4px;' src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",this.Sp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.gg,this.mn):"")+(this.N.config.document.SearchToolsVisible?String.format("<input id='{0}' type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:40px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",this.fq):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.gg,this.qn));}};this.nk=function(){var c=this;if(0<jQuery(c.Na).find(".toolbarMore").length){var d=jQuery(c.Na).find(".toolbarMore").children(),h=jQuery(c.toolbar.K),f=jQuery(c.Na).find(".flowpaper_bttnMore"),l=jQuery(c.Na).find(".toolbarMore"),k=(jQuery(c.Na).width()-jQuery(c.toolbar.K).width())/2-5,n=jQuery(c.Na).find(".flowpaper_bttnZoomIn").offset().top,p=!1,q=jQuery(c.toolbar.K).children();jQuery(c.toolbar.K).last();jQuery(c.Na).find(".toolbarMore").css({"margin-right":k+"px","margin-left":k+"px"});q.each(function(){jQuery(this).is(":visible")&&(p=p||20<jQuery(this).offset().top-h.offset().top);});d.each(function(){jQuery(this).insertBefore(f);});p&&(l.show(),l.css("background-color",jQuery(c.toolbar.K).css("background-color")));p?(f.show(),q.each(function(){!jQuery(this).hasClass("flowpaper_bttnMore")&&jQuery(this).is(":visible")&&35<jQuery(this).offset().top-n&&l.append(this);}),requestAnim(function(){20<f.offset().top-n&&l.prepend(jQuery(c.Na).find(".flowpaper_bttnMore").prev());},50),l.prepend(jQuery(c.Na).find(".flowpaper_bttnMore").prev())):(f.hide(),l.css("visibility","hidden"));}};this.bindEvents=function(){var c=this;eb.platform.touchonlydevice?(jQuery(c.Na).find(".flowpaper_txtSearch").on("touchstart focus",function(){!jQuery(".flowpaper_bttnFind").is(":visible")&&0<jQuery(this).val().length&&55357==jQuery(this).val().charCodeAt(0)?(jQuery(this).css("text-align","left"),jQuery(this).val(""),jQuery(this).data("original-width",jQuery(this).css("width")),0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"})):jQuery(".flowpaper_bttnFind").is(":visible")||"100%"==jQuery(this).width||(0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"}));}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){jQuery(".flowpaper_bttnFind").is(":visible")||0!=jQuery(this).val().length||(jQuery(this).css("text-align","right"),jQuery(this).val(String.fromCharCode(55357)+String.fromCharCode(56589)));jQuery(this).data("original-width")&&jQuery(this).animate({width:jQuery(this).data("original-width")},{duration:300,always:function(){for(var d=jQuery(c.toolbar.K).children(),h=0;h<d.length;h++){jQuery(d[h]).data("search-hide")&&jQuery(d[h]).show();}}});}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mousedown touchstart",function(){c.$h!=c.fa&&jQuery(this).attr("src",c.$h);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mouseup touchend",function(){c.Zh!=c.fa&&jQuery(this).attr("src",c.Zh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mousedown touchstart",function(){c.Kg!=c.fa&&jQuery(this).attr("src",c.Kg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mouseup touchend",function(){c.Kg!=c.fa&&jQuery(this).attr("src",c.Th);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mousedown touchstart",function(){c.bi!=c.fa&&jQuery(this).attr("src",c.bi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mouseup touchend",function(){c.Pg!=c.fa&&jQuery(this).attr("src",c.Pg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mousedown touchstart",function(){c.ci!=c.fa&&jQuery(this).attr("src",c.ci);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mouseup touchend",function(){c.Qg!=c.fa&&jQuery(this).attr("src",c.Qg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mousedown touchstart",function(){c.di!=c.fa&&jQuery(this).attr("src",c.di);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mouseup touchend",function(){c.Rg!=c.fa&&jQuery(this).attr("src",c.Rg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mousedown touchstart",function(){c.ei!=c.fa&&jQuery(this).attr("src",c.ei);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mouseup touchend",function(){c.Tg!=c.fa&&jQuery(this).attr("src",c.Tg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mousedown touchstart",function(){c.Vh!=c.fa&&jQuery(this).attr("src",c.Vh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mouseup touchend",function(){c.Mg!=c.fa&&jQuery(this).attr("src",c.Mg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mousedown touchstart",function(){c.Xh!=c.fa&&jQuery(this).attr("src",c.Xh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mouseup touchend",function(){c.Og!=c.fa&&jQuery(this).attr("src",c.Og);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mousedown touchstart",function(){c.Wh!=c.fa&&jQuery(this).attr("src",c.Wh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mouseup touchend",function(){c.Ng!=c.fa&&jQuery(this).attr("src",c.Ng);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mousedown touchstart",function(){c.Uh!=c.fa&&jQuery(this).attr("src",c.Uh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mouseup touchend",function(){c.Lg!=c.fa&&jQuery(this).attr("src",c.Lg);})):(jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("focus",function(){40>=jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()+60},100),jQuery(this).animate({width:jQuery(this).width()+60},100));}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){40<jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()-60},100),jQuery(this).animate({width:40},100));}));jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").bind("click",function(){c.N.pages.me(!0);});jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").bind("click",function(){c.N.pages.md();});0==c.F.O.find(".flowpaper_socialsharedialog").length&&c.F.O.prepend(String.format("<div id='modal-socialshare' class='modal-content flowpaper_socialsharedialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><img src='{0}' align='absmiddle' />&nbsp;<b>{15}</b></font><div style='width:530px;height:307px;margin-top:5px;padding-top:5px;padding-left:5px;background-color:#ffffff;box-shadow: 0px 2px 10px #aaa'><div style='position:absolute;left:20px;top:42px;color:#000000;font-weight:bold;'>{6}</div><div style='position:absolute;left:177px;top:42px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:62px;color:#000000;font-weight:bold;'><select class='flowpaper_ddlSharingOptions'><option>{7}</option><option>{16}</option></select></div><div style='position:absolute;left:175px;top:62px;color:#000000;font-weight:bold;'><input type='text' readonly style='width:355px;' class='flowpaper_socialsharing_txtUrl' /></div><div style='position:absolute;left:20px;top:102px;color:#000000;font-weight:bold;'>{8}</div><div style='position:absolute;left:177px;top:107px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:118px;color:#000000;font-size:10px;'>{9}</div><div style='position:absolute;left:20px;top:148px;color:#000000;font-weight:bold;'><input type='text' style='width:139px;' value='&lt;{10}&gt;' class='flowpaper_txtPublicationTitle' /></div><div style='position:absolute;left:165px;top:146px;color:#000000;'><img src='{1}' class='flowpaper_socialshare_twitter' style='cursor:pointer;' /></div><div style='position:absolute;left:200px;top:146px;color:#000000;'><img src='{2}' class='flowpaper_socialshare_facebook' style='cursor:pointer;' /></div><div style='position:absolute;left:235px;top:146px;color:#000000;'><img src='{3}' class='flowpaper_socialshare_googleplus' style='cursor:pointer;' /></div><div style='position:absolute;left:270px;top:146px;color:#000000;'><img src='{4}' class='flowpaper_socialshare_tumblr' style='cursor:pointer;' /></div><div style='position:absolute;left:305px;top:146px;color:#000000;'><img src='{5}' class='flowpaper_socialshare_linkedin' style='cursor:pointer;' /></div><div style='position:absolute;left:20px;top:192px;color:#000000;font-weight:bold;'>{11}</div><div style='position:absolute;left:20px;top:208px;color:#000000;font-size:10px;'>{12}</div><div style='position:absolute;left:20px;top:228px;color:#000000;font-size:10px;'><input type='radio' name='InsertCode' class='flowpaper_radio_miniature' checked />&nbsp;{13}&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='InsertCode' class='flowpaper_radio_fullembed' />&nbsp;{14}</div><div style='position:absolute;left:20px;top:251px;color:#000000;font-size:10px;'><textarea class='flowpaper_txtEmbedCode' readonly style='width:507px;height:52px'></textarea></div><div style='position:absolute;left:360px;top:315px;color:#000000;font-size:10px;'><a href='https://flowpaper.com/' target='_new'>Powered by FlowPaper PDF viewer</a></div></div></div>",c.aq,c.$p,c.Wp,c.Xp,c.Zp,c.Yp,c.F.toolbar.ua(c.F.toolbar.Ta,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.ua(c.F.toolbar.Ta,"DefaultStartPage","Default start page"),c.F.toolbar.ua(c.F.toolbar.Ta,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.ua(c.F.toolbar.Ta,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.ua(c.F.toolbar.Ta,"SharingTitle","Sharing Title"),c.F.toolbar.ua(c.F.toolbar.Ta,"EmbedOnSite","Embed on Site"),c.F.toolbar.ua(c.F.toolbar.Ta,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.ua(c.F.toolbar.Ta,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.ua(c.F.toolbar.Ta,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.ua(c.F.toolbar.Ta,"Share","Share"),c.F.toolbar.ua(c.F.toolbar.Ta,"StartOnCurrentPage","Start on current page")));c.F.O.find(".flowpaper_radio_miniature, .flowpaper_radio_fullembed, .flowpaper_ddlSharingOptions").on("change",function(){c.Gh();});c.F.O.find(".flowpaper_txtPublicationTitle").on("focus",function(c){-1!=jQuery(c.target).val().indexOf("Sharing Title")&&jQuery(c.target).val("");});c.F.O.find(".flowpaper_txtPublicationTitle").on("blur",function(c){0==jQuery(c.target).val().length&&jQuery(c.target).val("<Sharing Title>");});c.F.O.find(".flowpaper_txtPublicationTitle").on("keydown",function(){c.Gh();});c.Gh();jQuery(c.toolbar.K).find(".flowpaper_bttnSocialShare").bind("click",function(){c.Gh();jQuery("#modal-socialshare").css("background-color","#dedede");jQuery("#modal-socialshare").smodal({minHeight:350,minWidth:550,appendTo:c.F.O});jQuery("#modal-socialshare").parent().css("background-color","#dedede");});jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").bind("click",function(){eb.browser.msie&&8>=eb.browser.version?c.N.switchMode("BookView",c.N.getCurrPage()):c.N.switchMode("FlipView",c.N.getCurrPage()+1);jQuery(this).addClass("flowpaper_tbbutton_pressed");});jQuery(c.toolbar.K).find(".flowpaper_bttnMore").bind("click",function(){var d=(jQuery(c.Na).width()-jQuery(c.toolbar.K).width())/2-5;"hidden"==jQuery(c.Na).find(".toolbarMore").css("visibility")?jQuery(c.Na).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"visible"}):jQuery(c.Na).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"hidden"});});c.F.O.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("focus",function(){jQuery(this).select();});c.F.O.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("mouseup",function(){return !1;});c.F.O.find(".flowpaper_socialshare_twitter").bind("mousedown",function(){window.open("https://twitter.com/intent/tweet?url="+escape(c.Te(!1))+"&text="+escape(c.gh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Twitter");});c.F.O.find(".flowpaper_socialshare_facebook").bind("mousedown",function(){window.open("http://www.facebook.com/sharer.php?u="+escape(c.Te(!1),"_flowpaper_exturl"));c.F.L.trigger("onSocialMediaShareClicked","Facebook");});c.F.O.find(".flowpaper_socialshare_googleplus").bind("mousedown",function(){window.open("https://plus.google.com/share?url="+escape(c.Te(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","GooglePlus");});c.F.O.find(".flowpaper_socialshare_tumblr").bind("mousedown",function(){window.open("http://www.tumblr.com/share/link?name="+escape(c.gh())+"&url="+escape(c.Te(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Tumblr");});c.F.O.find(".flowpaper_socialshare_linkedin").bind("mousedown",function(){window.open("http://www.linkedin.com/shareArticle?mini=true&url="+escape(c.Te(!1))+"&title="+escape(c.gh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","LinkedIn");});};this.Gh=function(){this.F.O.find(".flowpaper_txtEmbedCode").val('<iframe frameborder="0"  width="400" height="300"  title="'+this.gh()+'" src="'+this.Te()+'" type="text/html" scrolling="no" marginwidth="0" marginheight="0" allowFullScreen></iframe>');this.F.O.find(".flowpaper_socialsharing_txtUrl").val(this.Te(!1));};this.gh=function(){return -1==this.F.O.find(".flowpaper_txtPublicationTitle").val().indexOf("Sharing Title")?this.F.O.find(".flowpaper_txtPublicationTitle").val():"";};this.Te=function(c){0==arguments.length&&(c=!0);var d=this.F.O.find(".flowpaper_ddlSharingOptions").prop("selectedIndex"),h=this.F.O.find(".flowpaper_radio_miniature").is(":checked"),f=location.protocol+"//"+location.host+location.pathname+(location.search?location.search:"");this.F.document.SharingUrl&&(f=this.F.document.SharingUrl);return f.substring(0)+(0<d?"#page="+this.F.getCurrPage():"")+(0<d&&h&&c?"&":h&&c?"#":"")+(h&&c?"PreviewMode=Miniature":"");};this.initialize=function(){var c=this.F;c.I.tb=c.I.ii();c.I.$g=!1;c.I.tb||(c.renderer.Wg=!0);eb.platform.ios&&8>eb.platform.iosversion&&(c.I.tb=!1);if(!c.config.document.InitViewMode||c.config.document.InitViewMode&&"Zine"==c.config.document.InitViewMode||"TwoPage"==c.config.document.InitViewMode||"Flip-SinglePage"==c.config.document.InitViewMode){c.L&&0.7>c.L.width()/c.L.height()&&(c.Se=!0),"Flip-SinglePage"!=c.config.document.InitViewMode||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.lh||(c.Se=!0),c.vb="FlipView",c.config.document.MinZoomSize=1,c.H=c.vb,"TwoPage"==c.H&&(c.H="FlipView"),c.scale=1;}c.config.document.jl=c.config.document.MinZoomSize;null===c.O&&(c.O=jQuery("<div style='"+c.L.attr("style")+";overflow-x: hidden;overflow-y: hidden;' class='flowpaper_viewer_container'/>"),c.O=c.L.wrap(c.O).parent(),c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer"),eb.browser.safari&&c.L.css("-webkit-transform","translateZ(0)"));jQuery(c.L).bind("onCurrentPageChanged",function(d,h){c.Wb&&(jQuery(".activeElement-label").remove(),jQuery(".activeElement").removeClass("activeElement"));c.T&&c.An();var f=window.location.search?window.location.search:"",l=eb.platform.mobilepreview?",mobilepreview="+FLOWPAPER.getLocationHashParameter("mobilepreview"):"";c.config.document.RTLMode&&(h=c.getTotalPages()-h+(0==c.getTotalPages()%2?1:0));window.history.replaceState&&!c.Wb&&window.history.replaceState(null,null,f+"#page="+h+l);if(f=jQuery(this).data("TrackingNumber")&&window.createTimeSpent&&!c.Wb){f=window.location.href.toString(),0==f.length&&(f=document.URL.toString()),f=!(0==f.indexOf("http://localhost/")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://192.168.")||0==f.indexOf("http://10.1.1.")||0==f.indexOf("file://")||0==f.indexOf("http://127.0.0.1")||(0==f.indexOf("http://")?0:0==f.indexOf("/")||0==f.indexOf("https://online.flowpaper.com")||0==f.indexOf("http://online.flowpaper.com")));}if(f){f=(-1<document.location.pathname.indexOf(".html")?document.location.pathname.substr(0,document.location.pathname.lastIndexOf(".html"))+"/":document.location.pathname)+"#page="+h;FLOWPAPER.ic||(FLOWPAPER.ic=[]);for(var k in FLOWPAPER.ic){FLOWPAPER.ic[k]&&(FLOWPAPER.ic[k].end(),FLOWPAPER.ic[k]=null);}FLOWPAPER.ic[f]||(FLOWPAPER.ic[f]=createTimeSpent(),FLOWPAPER.ic[f].init({location:f,gaTracker:"FlowPaperEventTracker"}));}});window.addEventListener("beforeunload",function(){FLOWPAPER.ic||(FLOWPAPER.ic=[]);for(var c in FLOWPAPER.ic){FLOWPAPER.ic[c]&&(FLOWPAPER.ic[c].end(),FLOWPAPER.ic[c]=null);}});};this.jq=function(d){eb.platform.touchonlydevice?c.switchMode("SinglePage",d):c.switchMode("Portrait",d);};FlowPaperViewer_HTML.prototype.ul=function(c){var d=this;if(d.bc!=c){var h=(c-20+1)/2,f=h+9+1,l=1,k=null!=d.I.kb?d.I.kb:"#555555";d.T.find(".flowpaper_fisheye_item").parent().parent().remove();0>d.getTotalPages()-c&&(f=f+(d.getTotalPages()-c)/2+(c-d.getTotalPages())%2);19<c?d.T.find(".flowpaper_fisheye_panelLeft").animate({opacity:1},150):d.T.find(".flowpaper_fisheye_panelLeft").animate({opacity:0},150);c<d.getTotalPages()?d.T.find(".flowpaper_fisheye_panelRight").animate({opacity:1},150):d.T.find(".flowpaper_fisheye_panelRight").animate({opacity:0},150);for(i=h;i<f;i++){d.en(l),l++;}d.T.find(".flowpaper_fisheye_item, .flowpaper_fisheye_panelLeft, .flowpaper_fisheye_panelRight").bind("mouseover",function(){if(!d.pages.animating&&0!=d.T.css("opacity")){var c=(1-Math.min(1,Math.max(0,1/d.Ak)))*d.yk+d.Ib;d.T.css({"z-index":12,"pointer-events":"auto"});jQuery(this).parent().parent().parent().find("span").css({display:"none"});jQuery(this).parent().find("span").css({display:"inline-block"});jQuery(this).parent().parent().parent().find("p").remove();var e=jQuery(this).context.dataset&&1==jQuery(this).context.dataset.pageindex?d.bh/2:0;jQuery(this).parent().find("span").after(String.format("<p style='width: 0;height: 0;border-left: 7px solid transparent;border-right: 7px solid transparent;border-top: 7px solid {0};margin-top:-35px;margin-left:{1}px;'></p>",k,c/2-20+e));}});d.T.find(".flowpaper_fisheye_item").bind("mouseout",function(c){d.pages.animating||0==d.T.css("opacity")||(d.vi=c.pageX,d.wi=c.pageY,d.je=c.target,jQuery(d.je).get(0),d.Rl(),d.T.css({"z-index":9,"pointer-events":"none"}),jQuery(this).parent().find("span").css({display:"none"}),jQuery(this).parent().find("p").remove());});d.T.find("li").each(function(){jQuery(this).bind("mousemove",function(c){d.pages.animating||0<c.buttons||!d.T.is(":visible")||(d.je=c.target,d.vi=c.pageX,d.wi=c.pageY,jQuery(d.je).get(0),d.xi=!0,d.ql());});});jQuery(d.T).bind("mouseleave",function(){d.T.find("li").each(function(){var c=this;requestAnim(function(){jQuery(c).find("a").css({width:d.Ib,top:d.Ib/3});},10);});});jQuery(d.pages.J+", "+d.pages.J+"_parent, #"+d.P).bind("mouseover",function(){if(d.T&&(d.T.css({"z-index":9,"pointer-events":"none"}),(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb)&&d.je)){d.je=null;var c=d.T.find("a").find("canvas").data("origwidth"),e=d.T.find("a").find("canvas").data("origheight");d.T.find("li").each(function(){jQuery(this).find("a").css({height:e,width:c,top:d.Ib/3});jQuery(this).find("a").find("canvas").css({height:e,width:c,top:d.Ib/3});});}});}d.bc=c;};FlowPaperViewer_HTML.prototype.An=function(){(this.da>this.bc||this.da<=this.bc-20)&&-1!=this.bc&&this.mh(this.da>this.bc?20:-20);};FlowPaperViewer_HTML.prototype.mh=function(c){var d=this;0!=c&&d.ul(d.bc+c);window.setTimeout(function(){d.Xd=(d.bc-20+1)/2+1;d.Aj=d.Xd+9;0>d.getTotalPages()-d.bc&&(d.Aj=d.Aj+(d.getTotalPages()-d.bc)/2+(d.bc-d.getTotalPages())%2);d.Xd<=d.getTotalPages()&&d.renderer.Oe(d,d.Xd,2*d.ie);},300);};FlowPaperViewer_HTML.prototype.en=function(c){var d=0==i?1:2*i+1,h=this;if(h.T){var f=null!=h.I.kb?h.I.kb:"#555555",l="";h.config.document.RTLMode&&(d=h.getTotalPages()-parseInt(d)+1);1!=d||h.config.document.RTLMode?1==d&&h.config.document.RTLMode?l="&nbsp;&nbsp;"+d+"&nbsp;&nbsp;":d==h.getTotalPages()&&0==h.getTotalPages()%2?l=(d-1).toString():d>h.getTotalPages()?l=(d-1).toString():l=d-1+"-"+d:l="&nbsp;&nbsp;"+c+"&nbsp;&nbsp;";l=h.toolbar.Wf(d,l);c=jQuery(String.format("<li><a style='height:{2}px;width:{7}px;top:{9}px;' class='flowpaper_thumbitem'><span style='margin-left:{8}px;background-color:{0}'>{4}</span><canvas data-pageIndex='{5}' data-ThumbIndex='{6}' class='flowpaper_fisheye_item' style='pointer-events: auto;' /></a></li>",f,h.Bf,0.8*h.ie,h.bh,l,d,c,h.Ib,1==d?h.bh:0,h.Ib/3));c.insertBefore(h.T.find(".flowpaper_fisheye_panelRight").parent());c.find(".flowpaper_fisheye_item").css({opacity:0});jQuery(c).bind("mousedown",function(){1!=!h.scale&&(h.T&&h.T.css({"z-index":9,"pointer-events":"none"}),d>h.getTotalPages()&&(d=h.getTotalPages()),h.gotoPage(d));});}};this.pk=function(){var c=this.F;if("FlipView"==c.H){0<c.O.find(".flowpaper_fisheye").length&&c.O.find(".flowpaper_fisheye").remove();c.bc=-1;var d=0;0<c.getDimensions(0).length&&(d=c.getDimensions(0)[0].ma/c.getDimensions(0)[0].za-0.3);c.qr=25;c.ie=0.25*c.L.height();c.bh=0.41*c.ie;c.Bf=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-c.O.offset().top+c.nc;c.Ak=1.25*c.ie;c.Ib=c.ie/(3.5-d);c.Un=2.5*c.Ib;c.Vn=-(c.Ib/3);d=null!=c.I.kb?c.I.kb:"#555555";c.I.te&&(d=R(d),d="rgba("+d.r+","+d.g+","+d.b+","+c.I.te+")");c.O.append(jQuery(String.format("<div class='flowpaper_fisheye' style='position:absolute;pointer-events: none;top:{1}px;z-index:12;left:{4}px;"+(c.I.nf||!c.I.qf?"margin-top:2.5%;":"")+"'><ul><li><div class='flowpaper_fisheye_panelLeft' style='pointer-events: auto;position:relative;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;background-color:{0};left:0px;width:22px;'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_leftArrow' style='position:absolute;top:20%;left:3px'></div></div></li><li><div class='flowpaper_fisheye_panelRight' style='pointer-events: auto;position:relative;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;background-color:{0};left:0px;width:22px;'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_rightArrow' style='position:absolute;top:20%;left:3px;'></div></div></li></ul></div>",d,c.Bf,0.8*c.ie,c.bh,c.Vn)));c.T=c.O.find(".flowpaper_fisheye");c.T.css({top:c.Bf-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2});c.yk=c.Un-c.Ib;c.vi=-1;c.wi=-1;c.ui=!1;c.xi=!1;c.pg=c.Ib-0.4*c.Ib;c.pr=c.pg/c.Ib;c.T.find(".flowpaper_fisheye_panelLeft").bind("mousedown",function(){c.mh(-20);});c.T.find(".flowpaper_fisheye_panelRight").bind("mousedown",function(){c.mh(20);});36<c.pg&&(c.pg=36);c.T.find(".flowpaper_fisheye_panelLeft").css({opacity:0,height:c.pg+"px",top:"-10px"});c.T.find(".flowpaper_fisheye_panelRight").css({height:c.pg+"px",top:"-10px"});c.T.css({top:c.Bf-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/3});c.ah=30<c.T.find(".flowpaper_fisheye_panelLeft").height()?11:0.35*c.T.find(".flowpaper_fisheye_panelLeft").height();c.T.find(".flowpaper_fisheye_leftArrow").we(c.ah,c.I.ob?c.I.ob:"#AAAAAA");c.T.find(".flowpaper_fisheye_rightArrow").vd(c.ah,c.I.ob?c.I.ob:"#AAAAAA");jQuery(c).unbind("onThumbPanelThumbAdded");jQuery(c).bind("onThumbPanelThumbAdded",function(d,g){var f=c.T.find(String.format('*[data-thumbIndex="{0}"]',g.lf));f.data("pageIndex");var k=(g.lf-1)%10;f&&f.animate({opacity:1},300);c.Xd<c.Aj&&(c.bc-20+1)/2+k+2>c.Xd&&(c.mq?(c.Xd++,c.mq=!1):c.Xd=(c.bc-20+1)/2+k+2,c.Xd<=c.getTotalPages()&&c.renderer.Oe(c,c.Xd,2*c.ie));0==k&&f.height()-10<c.T.find(".flowpaper_fisheye_panelRight").height()&&(c.T.find(".flowpaper_fisheye_panelLeft").css("top",c.T.find(".flowpaper_fisheye_panelLeft").height()-f.height()+5+"px"),c.T.find(".flowpaper_fisheye_panelLeft").height(c.T.find(".flowpaper_fisheye_panelLeft").height()-3),c.T.find(".flowpaper_fisheye_panelRight").css("top",c.T.find(".flowpaper_fisheye_panelRight").height()-f.height()+5+"px"),c.T.find(".flowpaper_fisheye_panelRight").height(c.T.find(".flowpaper_fisheye_panelRight").height()-3));});c.ul(19);c.PreviewMode||c.mh(0);1!=c.scale&&c.T.animate({opacity:0},0);c.Pa&&c.I.Ch();c.$a&&c.I.Ql();}};this.vh=function(){c.I.nk();if("FlipView"==c.H&&window.zine){c.nc=c.ab&&!c.I.nf?c.I.Na.height():0;c.Rb&&c.ab&&(c.nc=5);c.document.StartAtPage&&!c.Ig&&(c.Ig=0==c.document.StartAtPage%2||c.I.Ea?c.document.StartAtPage:c.document.StartAtPage-1);c.Zf=!1;var d=1400;"very fast"==c.I.Tc&&(d=300);"fast"==c.I.Tc&&(d=700);"slow"==c.I.Tc&&(d=2300);"very slow"==c.I.Tc&&(d=6300);c.Zl=600;c.ra=jQuery(c.pages.J).turn({gradients:!eb.platform.android,acceleration:!0,elevation:50,duration:d,page:c.Ig?c.Ig:1,display:c.I.Ea?"single":"double",pages:c.getTotalPages(),cornerDragging:c.document.EnableCornerDragging,disableCornerNavigation:c.I.tb,when:{turning:function(d,e){c.pages.animating=!0;c.pages.Uf=null;c.pages.R=0!=e%2||c.I.Ea?e:e+1;c.pages.R>c.getTotalPages()&&(c.pages.R=c.pages.R-1);if(1!=e||c.I.Ea){c.I.Ea?c.I.Ea&&c.nc&&jQuery(c.pages.J+"_parent").transition({x:0,y:c.nc},0):jQuery(c.pages.J+"_parent").transition({x:0,y:c.nc},c.Zl,"ease",function(){});}else{var g=c.Zf?c.Zl:0;jQuery(c.pages.J+"_parent").transition({x:-(c.pages.kd()/4),y:c.nc},g,"ease",function(){});}c.da=1<e?c.pages.R:e;c.renderer.he&&c.Zf&&c.pages.Ze(e-1);c.renderer.he&&c.Zf&&c.pages.Ze(e);"FlipView"==c.H&&(!c.pages.pages[e-1]||c.pages.pages[e-1].uc||c.pages.pages[e-1].oa||(c.pages.pages[e-1].uc=!0,c.pages.pages[e-1].Qc()),e<c.getTotalPages()&&c.pages.pages[e]&&!c.pages.pages[e].uc&&!c.pages.pages[e].oa&&(c.pages.pages[e].uc=!0,c.pages.pages[e].Qc()));},turned:function(d,e){c.I.tb&&c.ra?c.pages.ee()||(c.ra.css({opacity:1}),c.Qf?(c.Zf=!0,c.pages.animating=!1,c.Gc(e),c.pages.jc(),c.L.trigger("onCurrentPageChanged",e),null!=c.Yd&&(c.Yd(),c.Yd=null)):jQuery("#"+c.pages.Nb).animate({opacity:0.5},{duration:50,always:function(){jQuery("#"+c.pages.Nb).animate({opacity:0},{duration:50,always:function(){jQuery("#"+c.pages.Nb).css("z-index",-1);c.Zf=!0;c.pages.animating=!1;c.Gc(e);c.pages.jc();c.L.trigger("onCurrentPageChanged",e);null!=c.Yd&&(c.Yd(),c.Yd=null);}});}})):(c.Zf=!0,c.pages.animating=!1,c.Gc(e),c.pages.jc(),c.L.trigger("onCurrentPageChanged",e),null!=c.Yd&&(c.Yd(),c.Yd=null));},pageAdded:function(d,e){var g=c.pages.getPage(e-1);g.Uk();c.I.Ac.vo(g);},foldedPageClicked:function(d,e){0<c.O.find(".simplemodal-container").length||c.dj||(c.pages.ee()||c.pages.animating)&&!c.I.$g||c.Pa||c.$a||requestAnim(function(){window.clearTimeout(c.Qf);c.Qf=null;e>=c.pages.R&&e<c.getTotalPages()?c.pages.Cj("next"):c.pages.Cj("previous");});},destroyed:function(){c.Jn&&c.L.parent().remove();}}});jQuery(c.ra).bind("cornerActivated",function(){c.T&&c.T.css({"z-index":9,"pointer-events":"none"});});jQuery(c.K).trigger("onScaleChanged",1/c.document.MaxZoomSize);}if(c.backgroundColor&&-1==c.backgroundColor.indexOf("[")&&!this.backgroundImage){d=R(this.backgroundColor),d="rgba("+d.r+","+d.g+","+d.b+","+(null!=this.Ge?parseFloat(this.Ge):1)+")",jQuery(this.N.L).css("background",d),this.N.ab||jQuery(this.Na).css("background",d);}else{if(c.backgroundColor&&0<=c.backgroundColor.indexOf("[")&&!this.backgroundImage){var g=c.backgroundColor.split(",");g[0]=g[0].toString().replace("[","");g[0]=g[0].toString().replace("]","");g[0]=g[0].toString().replace(" ","");g[1]=g[1].toString().replace("[","");g[1]=g[1].toString().replace("]","");g[1]=g[1].toString().replace(" ","");d=g[0].toString().substring(0,g[0].toString().length);g=g[1].toString().substring(0,g[1].toString().length);jQuery(c.N.L).css("backgroundImage","linear-gradient(top, "+d+", "+g+")");}}"FlipView"==c.H&&!eb.platform.touchonlydevice&&c.I.rj&&c.I.cb?(c.I.pk(),c.PreviewMode&&c.I.hh()):(c.T&&(c.T.remove(),c.T=null),c.bc=-1);FlowPaperViewer_HTML.prototype.distance=function(c,d,e,g){c=e-c;d=g-d;return Math.sqrt(c*c+d*d);};FlowPaperViewer_HTML.prototype.turn=function(c){var d=this;d.I.yi&&"None"!=d.I.yi&&(d.$i&&d.$i.remove(),window.setTimeout(function(){d.$i=new ma(d.I.Ki+"../sounds/"+d.I.yi+".mp3");d.$i.start();},200));var e=arguments[0],g=2==arguments.length?arguments[1]:null;!d.I.tb||"next"!=e&&"previous"!=e||d.Pa||d.$a?(jQuery("#"+d.pages.Nb).css("z-index",-1),d.ra&&(1==arguments.length&&d.ra.turn(arguments[0]),2==arguments.length&&d.ra.turn(arguments[0],arguments[1]))):!d.pages.ee()&&!d.pages.animating||d.I.$g?requestAnim(function(){window.clearTimeout(d.Qf);d.Qf=null;d.pages.Cj(e,g);}):(window.clearTimeout(d.Qf),d.Qf=window.setTimeout(function(){d.turn(e,g);},500));};FlowPaperViewer_HTML.prototype.ql=function(){var c=this;c.ui||(c.ui=!0,c.xk&&window.clearTimeout(c.xk),c.xk=requestAnim(function(){c.Tn(c);},40));};FlowPaperViewer_HTML.prototype.Tn=function(c){c.Rl();c.ui=!1;c.xi&&(c.xi=!1,c.ql());};FlowPaperViewer_HTML.prototype.Rl=function(){var c=this;c.T.find("li").each(function(){var d=c.je;if(!(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb)||c.je){if(d&&jQuery(d).get(0).tagName&&"IMG"!=jQuery(d).get(0).tagName&&"LI"!=jQuery(d).get(0).tagName&&"DIV"!=jQuery(d).get(0).tagName&&"CANVAS"!=jQuery(d).get(0).tagName){c.T.find("li").each(function(){jQuery(this).find("a").css({width:c.Ib,top:c.Ib/3});});}else{var d=jQuery(this).offset().left+jQuery(this).outerWidth()/2,e=jQuery(this).offset().top+jQuery(this).outerHeight()/2,d=c.distance(d,e,c.vi,c.wi),d=(1-Math.min(1,Math.max(0,d/c.Ak)))*c.yk+c.Ib,e=jQuery(this).find("a").find("canvas").data("origwidth"),g=jQuery(this).find("a").find("canvas").data("origheight"),f=d/e;e&&g&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb?(jQuery(this).find("a").animate({height:g*f,width:d,top:d/3},0),jQuery(this).find("a").find("canvas").css({height:g*f,width:d,top:d/3}),c.Mr=c.je):jQuery(this).find("a").css({width:d,top:d/3}));}}});};jQuery(c.toolbar.K).css("visibility","visible");c.T&&c.T.css({"z-index":9,"pointer-events":"none"});c.I.Na.animate({opacity:1},300);c.I.Op&&c.expandOutline();};this.dispose=function(){c.ra.turn("destroy");delete c.ra;};this.zg=function(){c.ra=null;};this.switchMode=function(d,g){c.ra&&c.ra.turn("destroy");c.ra=null;"Portrait"==d||"SinglePage"==d?(c.Rd=c.L.height(),c.Rd=c.Rd-jQuery(c.K).outerHeight()+20,c.L.height(c.Rd)):(c.Ig=0!=g%2?g-1:g,c.Rd=null,c.L.css({left:"0px",top:"0px",position:"relative",width:c.L.parent().width()+"px",height:c.L.parent().height()+"px"}),c.ak());"FlipView"==c.H&&"FlipView"!=d&&(c.config.document.MinZoomSize=1,jQuery(c.pages.J).turn("destroy"),c.T&&c.T.remove());c.pages.Zd&&c.pages.Fd&&c.pages.Fd();"FlipView"!=d&&c.config.document.jl&&(c.config.document.MinZoomSize=c.config.document.jl);"FlipView"==d&&(c.scale=1,c.H="FlipView",c.I.tb=c.I.ii());};this.ii=function(){return c.config.document.EnableWebGL&&!eb.platform.lb&&!eb.platform.android&&!eb.browser.lh&&!c.I.Ea&&eb.browser.capabilities.wq&&"Flip-SinglePage"!=c.config.document.InitViewMode&&window.THREE;};this.gotoPage=function(d,g){"FlipView"==c.H&&c.pages.lo(d,g);};this.Gc=function(d){if("FlipView"==c.H){1<c.pages.R&&1==c.scale?jQuery(c.pages.J+"_panelLeft").animate({opacity:1},100):1==c.pages.R&&jQuery(c.pages.J+"_panelLeft").animate({opacity:0},100);if(c.pages.R<c.getTotalPages()&&1.1>=c.scale){1<c.getTotalPages()&&jQuery(c.pages.J+"_panelRight").animate({opacity:1},100),c.T&&"1"!=c.T.css("opacity")&&window.setTimeout(function(){1.1>=c.scale&&(c.T.show(),c.T.animate({opacity:1},100));},700);}else{if(1.1<c.scale||c.pages.R+2>=c.getTotalPages()||0!=c.getTotalPages()%2&&c.pages.R+1>=c.getTotalPages()){jQuery(c.pages.J+"_panelRight").animate({opacity:0},100),1==c.scale&&0==c.getTotalPages()%2&&c.pages.R-1<=c.getTotalPages()?c.T&&(c.T.show(),c.T.animate({opacity:1},100)):c.T&&c.T.animate({opacity:0},0,function(){c.T.hide();});}}eb.platform.touchonlydevice||(window.clearTimeout(c.Ao),c.Ao=setTimeout(function(){0!=parseInt(d)%2&&(d=d-1);var g=[d-1];1<d&&parseInt(d)+1<=c.document.numPages&&!c.Ea&&g.push(d);for(var h=0;h<g.length;h++){jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).stop(),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).css({background:c.linkColor,opacity:c.Ic}),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).animate({opacity:0},{duration:1700,complete:function(){}});}},100));}};this.Ch=function(){this.F.T&&(this.zk=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.Pa.width()+"px"},200));};this.Ql=function(){this.F.T&&(this.zk=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.$a.width()+"px"},200));};this.Jf=function(){this.F.T&&this.F.T.animate({"margin-left":parseFloat(this.zk)+"px"},200);};this.resize=function(d,g,h,f){c.nc=c.ab&&!c.I.nf?c.I.Na.height():0;c.I.nk();if("FlipView"==c.H&&c.pages){var l=-1<c.L.get(0).style.width.indexOf("%"),k=-1<c.L.get(0).style.width.indexOf("%");l&&(c.Pa||c.$a)&&(c.L.data("pct-width",c.L.get(0).style.width),l=!1);k&&(c.Pa||c.$a)&&(c.L.data("pct-height",c.L.get(0).style.height),k=!1);l||!c.L.data("pct-width")||c.Pa||c.$a||(c.L.css("width",c.L.data("pct-width")),l=!0);k||!c.L.data("pct-height")||c.Pa||c.$a||(c.L.css("height",c.L.data("pct-height")),k=!0);c.L.css({width:l?c.L.get(0).style.width:d-(c.Pa?c.Pa.width():0)-(c.$a?c.$a.width():0),height:k?c.L.get(0).style.height:g-35});d=c.L.width();g=c.L.height();l&&k||(d-5<jQuery(document.body).width()&&d+5>jQuery(document.body).width()&&g+37-5<jQuery(document.body).height()&&g+37+5>jQuery(document.body).height()?(c.O.css({width:"100%",height:"100%"}),c.I.nf&&jQuery(jQuery(c.L).css("height",jQuery(c.L).height()-40+"px"))):null!=h&&1!=h||c.O.css({width:d+(c.Pa?c.Pa.width():0)+(c.$a?c.$a.width():0),height:g+37}));c.pages.resize(d,g,f);c.T&&c.L&&(c.Bf=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-jQuery(c.O).offset().top+c.nc,c.T.css({top:c.Bf-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2}),c.ie=0.25*c.L.height());for(d=0;d<c.document.numPages;d++){c.pages.Sa(d)&&(c.pages.pages[d].Bl=!0,c.pages.pages[d].oa=!1);}window.clearTimeout(c.xq);c.xq=setTimeout(function(){c.jc();c.pages.Da();},350);}};this.setCurrentCursor=function(){};this.Bp=function(c,d){var h=this.I;"brandingUrl"==c&&(h.N.config.document.BrandingUrl=d);"brandingLogo"==c&&((h.N.config.document.BrandingLogo=d)&&0<d.length?(h.N.O.append(String.format("<div class='flowpaper_custom_logo'><a href='#' data-brandingUrl='{1}'><img src='{0}' border='0' width='80'></a></div>",h.N.config.document.BrandingLogo,h.N.config.document.BrandingUrl?h.N.config.document.BrandingUrl:"#")),h.N.O.find(".flowpaper_custom_logo").bind("click",function(){jQuery(h.N.L).trigger("onExternalLinkClicked",$(this).find("a").attr("data-brandingUrl"));})):h.N.O.find(".flowpaper_custom_logo").remove());if("backgroundColor"==c||"backgroundAlpha"==c||"stretchBackground"==c||"backgroundImage"==c){if("backgroundColor"==c&&(h.backgroundColor=d),"backgroundAlpha"==c&&(h.Ge=d),"stretchBackground"==c&&(h.uj=d),"backgroundImage"==c&&(h.backgroundImage=d),h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.uj?(jQuery(h.N.L).css("background-color",""),jQuery(h.N.L).css("background",""),jQuery(h.N.O).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.N.L).css("background-size","cover")):(jQuery(h.N.L).css("background",""),jQuery(h.N.O).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.N.L).css("background-size",""),jQuery(h.N.L).css("background-position","center"),jQuery(h.N.O).css("background-position","center"),jQuery(h.N.L).css("background-repeat","no-repeat"),jQuery(h.N.O).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){var f=R(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Ge?parseFloat(h.Ge):1)+")";jQuery(h.N.L).css("background",f);jQuery(h.N.O).css("background",f);h.N.ab||jQuery(h.Na).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var l=h.backgroundColor.split(",");l[0]=l[0].toString().replace("[","");l[0]=l[0].toString().replace("]","");l[0]=l[0].toString().replace(" ","");l[1]=l[1].toString().replace("[","");l[1]=l[1].toString().replace("]","");l[1]=l[1].toString().replace(" ","");f=l[0].toString().substring(0,l[0].toString().length);l=l[1].toString().substring(0,l[1].toString().length);jQuery(h.N.L).css("background","");jQuery(h.N.O).css({background:"linear-gradient("+f+", "+l+")"});jQuery(h.N.O).css({background:"-webkit-linear-gradient("+f+", "+l+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.N.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+l+"');"),jQuery(h.N.O).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+l+"');"));}else{jQuery(h.N.O).css("background-color","#222222");}}}}if("panelColor"==c||"navPanelBackgroundAlpha"==c){"panelColor"==c&&(h.kb=d),"navPanelBackgroundAlpha"==c&&(h.te=d),h.kb?(jQuery(h.toolbar.K).css("background-color",h.kb),jQuery(h.toolbar.K).css("border-color",h.kb)):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555"),f=R(h.kb),jQuery(h.F.pages.J+"_panelLeft").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.te+")"),jQuery(h.F.pages.J+"_panelRight").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.te+")");}"linkColor"==c&&(h.linkColor=d,h.N.linkColor=h.linkColor,jQuery("a.flowpaper_interactiveobject_documentViewer").css("background-color",h.linkColor),h.Gc(h.N.getCurrPage()));"linkAlpha"==c&&(h.Ic=d,h.N.Ic=h.Ic,jQuery("a.flowpaper_interactiveobject_documentViewer").css("opacity",h.Ic),h.Gc(h.N.getCurrPage()));"arrowColor"==c&&(h.N.ob=d,h.N.I.ob=d,h.N.T.find(".flowpaper_fisheye_leftArrow").we(h.N.ah,h.N.I.ob?h.N.I.ob:"#AAAAAA"),h.N.T.find(".flowpaper_fisheye_rightArrow").vd(h.N.ah,h.N.I.ob?h.N.I.ob:"#AAAAAA"),f=jQuery(h.N.pages.J+"_arrowleft").css("border-bottom"),f=parseInt(f.substr(0,f.indexOf("px"))),jQuery(h.N.pages.J+"_arrowleft").we(f,h.N.ob),jQuery(h.N.pages.J+"_arrowright").vd(f,h.N.ob),h.N.I.og&&(f=jQuery(h.N.pages.J+"_arrowleftbottom").css("border-bottom"),f=f.substr(0,f.indexOf("px")),jQuery(h.N.pages.J+"_arrowleftbottom").we(f,h.N.ob),jQuery(h.N.pages.J+"_arrowleftbottommarker").fj(f,h.N.ob,jQuery(h.N.pages.J+"_arrowleftbottom")),jQuery(h.N.pages.J+"_arrowrightbottom").vd(f,h.N.ob),jQuery(h.N.pages.J+"_arrowrightbottommarker").gj(f,h.N.ob,jQuery(h.N.pages.J+"_arrowrightbottom"))));"enablePageShadows"==c&&(h.N.Pe=d,h.N.Pe?(jQuery(".flowpaper_zine_page_left_noshadow").addClass("flowpaper_zine_page_left").removeClass("flowpaper_zine_page_left_noshadow"),jQuery(".flowpaper_zine_page_right_noshadow").addClass("flowpaper_zine_page_right").removeClass("flowpaper_zine_page_right_noshadow")):(jQuery(".flowpaper_zine_page_left").addClass("flowpaper_zine_page_left_noshadow").removeClass("flowpaper_zine_page_left"),jQuery(".flowpaper_zine_page_right").addClass("flowpaper_zine_page_right_noshadow").removeClass("flowpaper_zine_page_right")),jQuery(window).trigger("resize"));if("arrowSize"==c){h.N.I.xf=h.N.pages.ga=h.N.xf=d;jQuery(window).trigger("resize");var f=h.N.pages,l=h.N.I.ob?h.N.I.ob:"#AAAAAA",k=f.Ve();jQuery(f.J+"_arrowleft").we(f.ga-0.4*f.ga,l);jQuery(f.J+"_arrowright").vd(f.ga-0.4*f.ga,l);jQuery(f.J+"_arrowleft").css({left:(f.ga-(f.ga-0.4*f.ga))/2+"px",top:k/2-f.ga+"px"});jQuery(f.J+"_arrowright").css({left:(f.ga-(f.ga-0.4*f.ga))/2+"px",top:k/2-f.ga+"px"});}};this.Pn=function(c,d){var h=this.I;d?jQuery(".flowpaper_"+c).show():jQuery(".flowpaper_"+c).hide();"txtPageNumber"==c&&(d?jQuery(".flowpaper_lblTotalPages").show():jQuery(".flowpaper_lblTotalPages").hide());"txtSearch"==c&&(d?jQuery(".flowpaper_bttnFind").show():jQuery(".flowpaper_bttnFind").hide());"firstLastButton"==c&&(h.N.I.og=d,h.N.I.og?(jQuery(h.N.pages.J+"_arrowleftbottom").css("opacity",1),jQuery(h.N.pages.J+"_arrowleftbottommarker").css("opacity",1),jQuery(h.N.pages.J+"_arrowrightbottom").css("opacity",1),jQuery(h.N.pages.J+"_arrowrightbottommarker").css("opacity",1)):(jQuery(h.N.pages.J+"_arrowleftbottom").css("opacity",0),jQuery(h.N.pages.J+"_arrowleftbottommarker").css("opacity",0),jQuery(h.N.pages.J+"_arrowrightbottom").css("opacity",0),jQuery(h.N.pages.J+"_arrowrightbottommarker").css("opacity",0)));if("toolbarstd"==c){var f=h.N.pages.Ve(),l=h.N.I.Na.height();jQuery(h.N.pages.J+"_parent").css("padding-top","");jQuery(h.N.pages.J+"_parent").css("margin-top","");h.qf=d;h.N.pages.Db=h.N.Rb&&!h.N.I.cb||0==l?(h.L.height()-f)/2:0;h.N.pages.Db=0==h.N.pages.Db&&h.N.ab&&!h.N.Rb&&0<l&&!h.N.I.cb?(h.L.height()-f)/2-l:h.N.pages.Db;h.N.ab||h.N.I.cb?0<h.N.pages.Db&&!h.N.I.cb&&jQuery(h.N.pages.J+"_parent").css("padding-top",h.N.pages.Db+"px"):jQuery(h.N.pages.J+"_parent").css("margin-top","2.5%");jQuery(window).trigger("resize");}"navPanelsVisible"==c&&(h.ff=d,h.ff?(jQuery(h.N.pages.J+"_panelLeft").css("opacity",1),jQuery(h.N.pages.J+"_panelRight").css("opacity",1)):(jQuery(h.N.pages.J+"_panelLeft").css("opacity",0),jQuery(h.N.pages.J+"_panelRight").css("opacity",0)));"fisheye"==c&&(h.cb=d,f=h.N.pages.Ve(),l=h.N.I.Na.height(),jQuery(h.N.pages.J+"_parent").css("padding-top",""),jQuery(h.N.pages.J+"_parent").css("margin-top",""),h.N.pages.Db=h.N.Rb&&!h.N.I.cb||0==l?(h.L.height()-f)/2:0,h.N.pages.Db=0==h.N.pages.Db&&h.N.ab&&!h.N.Rb&&0<l&&!h.N.I.cb?(h.L.height()-f)/2-l:h.N.pages.Db,h.N.ab||h.N.I.cb?0<h.N.pages.Db&&!h.N.I.cb?(jQuery(h.N.pages.J+"_parent").css("margin-top",""),jQuery(h.N.pages.J+"_parent").css("padding-top",h.N.pages.Db+"px")):jQuery(h.N.pages.J+"_parent").css("padding-top",""):(jQuery(h.N.pages.J+"_parent").css("padding-top",""),jQuery(h.N.pages.J+"_parent").css("margin-top","2.5%")),h.cb?jQuery(".flowpaper_fisheye").css("visibility",""):jQuery(".flowpaper_fisheye").css("visibility","hidden"),jQuery(window).trigger("resize"));};window[this.N.$e].setStyleSetting=this.Bp;FLOWPAPER.setStyleSetting=function(c,d){$FlowPaper("documentViewer").setStyleSetting(c,d);};window[this.N.$e].enableDisableUIControl=this.Pn;FLOWPAPER.enableDisableUIControl=function(c,d){$FlowPaper("documentViewer").enableDisableUIControl(c,d);};window[this.N.$e].changeConfigSetting=this.zn;window[this.N.$e].loadUIConfig=function(c){var d=this;jQuery("#"+d.Ja+"_wrap").remove();d.Toolbar=d.O.prepend("<div id='"+d.Ja+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent();d.I.Na=d.Rb?jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.ab?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.ab?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;'></div>").parent();d.I.dl(c,function(){d.toolbar.bindEvents(d.L);d.toolbar.yc=null;d.toolbar.$j(d.config.document.MinZoomSize,d.config.document.MaxZoomSize);});};};window.FlowPaper_Resources=function(f){this.F=f;this.L=this.F.L;this.ea={};this.ea.lm="";this.ea.Qm="";this.ea.Km="";this.ea.rm="";this.ea.Pm="";this.ea.Um="";this.ea.Sm="";this.ea.Im="";this.ea.Hm="";this.ea.ym="";this.ea.mm="";this.ea.om="";this.ea.Rm="";this.ea.Bm="";this.ea.vm="";this.ea.Nm="";this.ek="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAL4AAABTCAMAAAAWcE3zAAAC7lBMVEUAAAD////////////////////////qdiT/////////////////////////////+uz////////////////////RtGz////////////////////q3mD////////////XTy/////aPBn+01r////////////////////PQg3////9qzP9yUj9zlP////tdVLLJgP6kS3////JLQX6exj4xnTgNQT5mkA6iq3UtKbWmp41gZ7ir3pmjHO9v3HekWeUi2SdrGHTUF6qWFq9JVrDNVhgLVHviUb+1l/yJAB4SIHqa0P+5F/+hwn9bgv////9zT/////8w023EgDAQySqGQDIOgb+1mH9mjP3zlHILwX+pQ7ENQb+oyrNRRD7fxzefGH90DzJUBnvGgD+21/0jETuZzrbYCvocDf+01T1RQPYNAL8yWfpQizKURn+kiHdVSDqbyzqi1L4UBL90T/aaC3+3mH7SgDJPAG0HQD8TAHHTiTVNSDfGwD2GQDZqadHiJXGOVr+oTL4sF7lFQD6UAXcf1XuFQDLTQqttmifcl/hrbP8vF/fTR9hLVH////sdQD2FwDACgDqRDD+2Vz8uVb1HQDfJwD9kS/XUzHaNwHHNgDiIQDYNgzbc1PbZDT8bQHmJgDfHQD8vFnYSADaXwDaPwL7XgH5VwDBEwDspTb8hxPWHgDTFADbXinbRhj7ZQHGLQD90WjgZUXTYzfGJgDVbELcUSP7ehDqbgXpXwP7TgHbZCv8dAPCHQD5mTnraDnCURbIQQHZMAHIGwDdbU/SYi3rmSnlGwD8zlHQXSfss1b7klD7ozn4bi3ukyH7jx/aYBvKSQD8wWP7qEncbCvQVjr5eDHWKwXpFgD8oEfVZjvsozHrYTH7mSvpPCPpNA3wq0HTVxnuRgT7iwHDTir6fAHRHQDrsGHjWjnuijfPPAPhrbP8qlLwnEbNSzDvulz2fz/0kzXlcSjiUwD/PQD7s0/9NADRWUjtfyrhRQRjg2wtAAAAjnRSTlMA3Aqk+u0lCdX1fhvks3IFZBWvLhATzbt5XZT+i041FTwd/sWFq51HMiA/HGNU/q5gaEclmnVO/v7+/v7+/v7+/v7+/v7+/tVeO/z5jXlsU0Ms/v39zLGspIp2bGhcQ/63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";this.sn="data:image/png;base64,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";this.ap=function(){var c=this.F,d=this;jQuery(".flowpaper_tbloader").hide();jQuery(".flowpaper_floatright").show();eb.platform.touchdevice||2==jQuery(".flowpaper_floatright").length&&jQuery(".flowpaper_floatright").is(":visible")&&jQuery(".flowpaper_bttnI").children(0).attr("src");c.Si=new Image;jQuery(c.Si).bind("load",function(){jQuery(d).trigger("onPostinitialized");});c.Si.src=c.Sj;};this.initialize=function(){var c=this.F,d=this;c.O.prepend(String.format("<div id='modal-I' class='modal-content'><p><a href='https://flowpaper.com/?ref=FlowPaper' target='_new'><img src='{0}' style='display:block;width:100px;heigh:auto;padding-bottom:10px;' border='0' /></a></p>FlowPaper  3.2.7. Developed by Devaldi Ltd.<br/><a href='https://flowpaper.com/' target='_new'>Click here for more information about this PDF viewer</a></div>","data:image/png;base64,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"));var e=String.format("<div class='flowpaper_floatright flowpaper_bttnI' style='display:none'><img src='{0}' /></div>",c.resources.ea.lm);c.about=FLOWPAPER.about=function(){jQuery("#modal-I").smodal();};eb.platform.touchdevice||jQuery(c.toolbar.K).append(e);jQuery(c.L).bind("onPagesContainerCreated",function(){c.L.append("<div id='fpabtbox' style='-moz-user-select:none;-webkit-user-select:none;right:0px;bottom:0px;position:absolute;margin-top:0px;margin-right:10px;z-index:11'><a href='#' onClick='dlInfoBox()'><img id='fpabt' src='"+d.ek+"' border='0' width='95' style=''></a></div>");jQuery("#fpabt").bind("mouseover",function(){jQuery("#fpabt").attr("src",c.resources.sn);});jQuery("#fpabt").bind("mouseout",function(){jQuery("#fpabt").attr("src",d.ek);});});jQuery(c.toolbar.K).find(".flowpaper_bttnI").bind("click",function(){jQuery("#modal-I").smodal();});jQuery(c.toolbar.K).bind("onProgressChanged",function(d,e){1==e&&jQuery(c.K).find(".flowpaper_bttnI").show();});};this.ea.Lm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAZMw/s7MUAAAPsSURBVEjHvVffTyJXFP4Ogq4D4ccMlAimqxiXl5I0G6P/wJZmq131tfvcTbr/QbP/zbbvW7fafehu9RXTNiHUiE9gJQQVVkdWhDhzTx/44cAMA+xqTzK5cOfm3O9+5zvn3CEYLJvNcrVaRa1WgxACd2UulwterxeKokCSJAQCAQIAai9IpVI8Pj4OWZYxNTWFu7ZcLodisYhoNIpgMAhZlskJANvb2+zz+RCbm+MWQDYC7WPcGsnmP/WMnfezsRhkWUY2mwVz8xVls1lWVRXxeBxutwc9QPqBGwbsMMZnZ+/p4OAAsdkYnKqqIhqNYlKSWLCw3WxzcxO/vHqFYYGsra9jZWXFkpm2+fx+DoVCVHlfgaPRaCAYDjMTYdDzUUcfwu/M3ByrqgqnruuA6HtS6hp5VCQw+iYb/9A0DU4AoLaCzPoYRdDWp2EeBLfj19mkUvRmCFtkycjUMAQbfPdjpUNEE8wNOCsWOuLj0XkhHkxoNzOGXSyY+cQsZthmk4kZiKGAQ7vWRsKhXWsDfHdbSzNsCtPFxQXevPmN/slksLi4RN8+eYKJexMjgZm4NwEmpl9fv8buboq+SCTw+PE38Hq9/cPEbIb/808vkU6nAQBHhSMwCySTSSwsLGBsbGxg7HRdhyzLYBY4Khzh5OQEf7x7h0q5jB+eP+/PDJhMmkmn051JoQt8qF7C6XTC7wu0wdv2JiIH168apGkaC110fKXTaeN+VtnEdtmEvb09vHjxo7WQ+s91it11j9a4Oy+7w0Q22UREEEJHo6F/UkckopvuzDbZxMRWFbc5wYzbMKMfi4QxCrhvO7gTMwBji6JHNEAPt4yGLPdyDirzxljflmbYrujZdG0wM2ZmZvHVo0cAEcYcDojmelsGHUTQhQCY8fvbt8jnc1ad3Kprm7NJURSqVCoAgIAcwJcPH370HfjPv/+iNhhFUXrKjLnOmE753dOn2NjYwL+Hh02KwdhNpbC1tQW3JBHMNz/DkRiXtRotLy9jcWmJqLX28/v3sbq62lvXOp8vTpfLhdPjYwRDn3V5fvAgjmffP8OHy0tIkgQWjFKphEq5jMqQOimVSmDBWFtbRzL5NTxuN3x+P1h0q+Ywn4PX6wVlMhmu1+sIhUII+BXTFcxUeCw+E/rFys5He81p+RiFQgHz8/NwJBIJqtfrOD8/x9l5BUzMzaLEYGI2ju2nvYbBzXJKDG49aM1x72h4h9bvk9MSisUiIpEIotHoTeB3dnbY4/FgcnIS09PTDAaBDIcyXtmo6zpGXXPG/20fN2OHxPxhHqqqIhwOIx6Pk6no7O/vc7VaxdXV1f/yrR0MBhGJRDoY/gMkxwIzT9ZCwQAAAABJRU5ErkJggg%3D%3D";this.ea.sm="data:image/gif;base64,R0lGODlhBgAqAKEBAJmZmf///////////yH+GkNyZWF0ZWQgd2l0aCBHSU1QIG9uIGEgTWFjACH5BAEKAAIALAAAAAAGACoAAAIkBBJmuOjPTlIR2hlbu05TzHWSMkohSFYn+m2h561svMKlbEcFADs%3D";this.ea.Om="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAYCdD7BDYAAAMVSURBVEjHvVfdSuNQEP6mJEJjaG2aUtsorC3SKxHfwYfwB8HFfYPFB/ERll3cl7AoiBfe2gXjjbogZV1XbShoLWlmL5rEY9qkUVMHhsn5yZw53/yccwgCmabJ7XYbDw8PcBwH4yJZlpHJZJDP56EoCnK5HAEAeROOj495YmICmqahVCph3HRxcYFmswnDMKDrOjRNIwkA9vf3OZvNolKtsmsgi4aGELuSItoUkP74XKUCTdNgmiaY+0NkmiZbloVarYbJSRUBQ8KMi2NsHOL7+zs6OztDZa4CybIsGIaBtKKww87Qxb5sbQUXHjCEiPwdLi8vY2V1NRIZj7JTU1woFOj27happ6cn6MUiMxHCONYWmSHLMr5ub2Nvbw8/d3cpSqfIn6pVtiwLUq/XA5xQyF/lCkVRoCoKNE1DvV4HAKysrlOELr/Ptm2kAICY2WUI0v+OS91uF5IkYXFxEQBQr9fx4/s3CPqC7K8FABIAMDnBDBkWxCPJtm1Ml6axtr7GqqrSyckJDg8PYds2Nj9vcggqfiyl+i3ymAISDIrtql6vh1+NX2AQLS0tYWNjA7Ozszg6OvJ0iiyuST4yYEQgE99NjuNgZ2fHzy5ZlmHbtqeGQ2LH7+8bE1n531ZOmBndblewdPQ/bsywuHJSBe2lccQjM7ZvDDtjP4virOHGDEVlU2LQxIqZ59gao5sQ000UmU3JEMXNJiG4Ig+1ZLw0gAoHApg5xE2JIcQ81E084KbA0UzvLjLDoRlZxKTX1dj3BHDMokcf4KaQ03/QTQKCY8smJsSuM4lcrt5QZ0h8vqRkWcbN9TXY4VBOxJgI/Zfn58hkMqBGo8GdTgeFQgG5qfyAM4OFB0OeCWHvlSgd3pybf9e4urrC/Pw8UgsLC9TpdNBqtXDfuoV7/3SBZRalx94cBvfLNzHYZbh9HJTCGNzvvzd/0Gw2US6XYRjGc305ODhgVVWRTqcxMzPDYBBI2BQLgNCL6xi96BPbno5n6YN4+fsSlmWhWCyiVqvRQICenp5yu93G4+Pjh7y1dV1HuVz2bfgP5BfYXgA24coAAAAASUVORK5CYII%3D";this.ea.Vm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAUJ6CYRvUAAAPBSURBVEjHxZfNThtXFMd/Z/wh4VAbPKYIG1mNkeUVUkpC+gY067as0k0CPEfUXdRnaHbNl8kD2Nl4JFasmqgLjJIIwsJqQsGMLAEGz5wu7DFjYzupXZorXZ25H+fec8/5/8+9I/hKuVzWWq3G8fExrutyVSUUChGNRjFNk0gkwuTkpACIN2Fzc1PD4TDxeJyZmRmuuuzs7FCpVEilUiQSCeLxuAQBSqWSxmIxMnNz2jJQ/Yb2KdqSMqAtXbI9fj2TIR6PUy6XUW0OSblcVtu2yeVyXLs2Tpch/Yz7HGM/p2i1eijb29tkrmcI2rZNKpViLBJRV5s4cV1XDcMQgPX1dYqFQjOmIt4pOgz57dEjVldWLu3km8/3d+6wvLysgLiui2EYAMQmJnRqakoODg8w6vU6ielpVRFUBEcVCQRQEfL5vBQLBbLZLOFwuL3wpeNJbyepKuFwmGw2S7FQIJ/Pi4oggQCOKt6e38zNqW3bGI7jgIt41cAQXOTF8zwvi0VM0+Te/VUikUh/Zw8gXiQS4d79VUzT5GWxyIvneXDBwOjYt9FoYACIqrYqoqrPnj6hWCwAsLBwk1AgoPV6ve+G0sdjAPV6nVAgwMLCTQCKxQLPnj7B26slAQg23dw+mj7+/bFsbGyQyWS48e0NXVpaIhAI0Gg0+qNQ3L6AbjQaTMRj+uNPP/BVdJxXf7wSyyrhOA3u/ny3g4VGsyVeFcuySKfTrKytsbh4m/rZubx5+w7HcQZwXPoyy3Ec3rx9J/Wzc1m8/Z2srK2RTqexLKu9p6cf7MgQLcru7e3xy4MHnJ+fSy/29M04veDkuvz68GGbXaFQ6OJg2pmfgr0A6DjOQE/8GwB3s+vs7KyvXgsz7aMNlch8+sPoSacxOtqlOKx+t14LMzJamtchb4amXidmlBHDxJBhokeYREe7AIeEjKfX5RlR+TRJrwTA/qeFB2DVkcKkQxrTVJRuAI/2NhkewHI5z4z6QvqP9ILerT1KmGTIMEmvMPm8PBSbRkszF2ySUqmkC7du8aXLn69fEwyFQux/+EBi6usvZsj73R2i0ShGLBajWq1yVD1EVNqVHhJfW7r6e7UHreH1/b3/kWq1immaGPPz83J6esrR0RHVowNa789mshZVv/SqN0fRZhoVRVuVVp92S98Yre+P+39RqVRIJpOkUqkLnluWpePj44yNjTE7O6sogvj+m9QHbOl4jklHn7/trXEh24zdfb+LbdtMT0+Ty+XkEpW3tra0VqtxcnLyv/xrJxIJkslk24Z/AJjcAKCwx1DkAAAAAElFTkSuQmCC";this.ea.Tm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAWLXJ7zWkAAAL7SURBVEjHzVdRTxpBEP7G3JGABOTuCJHzoUIMT77VtOkP8keYCpEafoR/5nxqJPbNB88XtYkhtRblQgKY6E0fuDsW2Fs51KaTbJa9b3Z3dma+2YUgiOu63O/3MRgM4Ps+3kt0XUcul4NpmshkMigUCgQAFCq0221OpVIwDAPr6+t4b7m6ukKn04Ft27AsC4ZhkAYAjuNwPp9HpVrlwEAWDY0RDnpSjGmmj/DNSgWGYcB1XTCPIXJdlz3PQ61Ww+pqFjOGxBm3iLGLCD883NPFxQUqmxVonufBtm2kMxn22U+y2as8E0p+bY2LxSJ177vQHh8fYZVKzJLdDup1AoBut0sAYJomAKDRbIoYAowEDAAowCiYR41mU7YNPlSrfHpyQtrz8zPgJ3S5St9PNC8aPz09QQMAYhZdGIUoPPXu7i4A4OjoCKF+6C0JpponC3VkkAYATP5sHihzRtBPirHEK5EjxsZM9p3yTCqVmjpZOGbQspjsgNOeASORZ8AqjrGKf7J1I8+Q4zj8+dMXjrFYVWfwBtSO1jlpfw/CRCwN07fmgZTa+/WGiE1RO8Ck1N6vN/BimJiTXYoq/WUxIWdImjNxFAUTlsSUOaNN8mo+TOo8XAp7mU0Uw6Y4ihLH0/4FbAHPEMsYoCherCiIjATY1F7kOA5/3NnhmDC9+xMiXOfH6WmUwCSLYat1KKX23t5XarUOMUPtEIMKi8uXCbWXOM5bY0IC/1e3drK7iUmV3EpsoTojXSL+9mVSYMp5cTmj6zpWdF3H3e0t2Oe5FnvCV2Cydn15iVwuBzo7O+PRaIRisYjCmjkXTFnhoQVf5ao1Qp27P7e4ubnB1tYWVra3t2k0GqHX6+Gh1wUT87g4MZiYxT5soQ6DxyWXGBw0BN94thcwBL9/3/1Cp9NBuVyGbduT+nJ8fMzZbBbpdBobGxsMBoGEQwnPweA7ID4Tw2/iOFxj0kdOvP55Dc/zUCqVUKvVaK7onJ+fc7/fx3A4/Cf/tS3LQrlcjmz4C6V4EUpXdwN6AAAAAElFTkSuQmCC";this.ea.xm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAWE7Ma0MIAAAM+SURBVEjHxVdNT9tAEH0TESQCSsBxGhFzKOGQE5eKHxbshL8Q2/yocOWIesCcgEtUSsGxIvEhgaeHeDfrzTpJW1FGenrrnTe7Y3u86yUoFkURTyYTPD09IU1TfJSVy2VUq1XU63VUKhXs7OwQAJAQnJ+f8/r6OizLwu7uLj7arq+vMRqN4DgObNuGZVm0BgDD4ZBrtRraBwecJchqogXGGdOCa9JY+vfbbViWhSiKwDx1URRFnCQJOp0ONje3oCVSlNwqya5iHMePdHV1hfZ+G2tJksBxHGxUKpxy+ieT/dOTEVbb3uZGo0EPjw8ovb6+wm42mYnwWfh6cMBJkqD0/v4OpCADYGAB8rpd0vop60dBLJnGEXh7e0MJAIiZM0BhFPTBc7vI4uYAAJ7bNfoMYDWuBABMqQBrrLfhesezopn6chA+1zs2+hWo4/MsGZAAaZxre66nVTCRDtXvuR6ZNIbxSSYDlmCNAWaAgZ7rmr4nFv4shnVJz3Xzfs7Nl4ubJpMuAqHnuebPPPPn9Abree6SOaDWDAuQxuj13eKFRtFl7cK1qdd3SdPPxU2T4dSIfs9buPCZYhZZv+cVzqXUDAmw4JN+f4XFXOpnj3eJnfT76ny5uBJytcUkOAhPl+cy04v20v0qCE/V+XJx2aInwSqHwenCO1X0or1QHwanqn4urqQU4lzxMjEFYbjkLeVR/ERCLiheGZcVsDRSWPTDDwI2F7DUibbxNflBgNmOI/VQ5lIXPbmFQmG1Tb4fmh7NPPRE/NCs0+eaFfBqGGgJmTSqDfxw5bGVAl591/YHgVLA5l0bAPxB8Le7tgRrbMTAn9aQpmOm6U0O/MA0FheMK+NoOBzyt6MjfLZ9v7jAWrlcxv3dHezGl09L5PbmGtVqFaVarYY4jjGOH0FMEjAwlGvS+k3Xi8YQfb/ufyKOY9TrdZQODw/p5eUF4/EY8fgBWSWLxZ5Vlj8gmYahLaNZHBSfZMWHrP3z/gdGoxFarRYcx5n9mZ2dnfHW1hY2Njawt7fHYBBIOWawcsQg5SsW/aJPvRZjzFgeVW5ub5AkCZrNJjqdDs2dYS4vL3kymeD5+fm/nLVt20ar1ZI5/AZC6tu9dBzKcQAAAABJRU5ErkJggg%3D%3D";this.ea.Jm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAVHAiInpAAAAMSSURBVEjHzVfbTuJQFF2bUBOJcimMoPgwI4n8XmmJ8wXQwlz8JE184gvsEzjJjEaYDENINBrtnof2HA71lJtx4iGLda6rq7uHfShBKb7v83Q6xd3dHYIgwFsVwzCQzWZRLBaRyWRQKBQIAEhM6PV6vLW1BdM0sb+/j7cug8EA19fXqFarKJVKME2T0gBwdnbGuVwOR7UaRwZZNZpQOGJa0KYYy/FPR0cwTRO+74M5HEr5vs+ZTAaVSgUEIgJxxIjqKkNpk5jXsCyo7ehDGlbHkc8XuF6vYzgc4tfPX0y9Xo+r1So+7O1x7M5Jc3fxqMBuNGT/99NTXjUyqs6g36fHx0ekHh4eUCqXmYmwLlQjwtgmOh9rNZ5MJkg9Pz8DAUgDaFiAHMvS7inHspCwlnQ6Ak9PT0gBADFzBCiMhD44trVwZzu2BXX+AkhdAKEZpkCAYxyvw3YaK/10bach1iZB1eeZGZAAxXiu7tjOWrnEsR2K1uug6pM0A5bgGAPMAANN294ouTVtW9VWdDHfL80Ei0BoOja9Jts2HXvJNcJ56XDPsC63yPLl6zddnlnLIIOT5sv+0AwHeA8lHdqmeGZ987NJp5OOQrjwMS0L75I2JYzrH9Nsy7yHyBDrBOTCzycny6KwNDKdbjcpKjIUYdKbFVJY9MPrdPg1G9PrdDA7cRgKxLXUpCePUCis1snzupsZ8bpQ9OKYXWt2HKwGd01DrtddWVuaWefU9tzOahFxO5ue2hIcYy1cb/Eecr2OTosTdJkJ6qnNpAE0LD7U9jytkbbnIWEt6XQEDMNAyjAMjG5vwQGvjVbbnTPSarsb6Vz1+8hms0jlcjmMx2P8Hf8J//NHgIahtAVarTBC7ZY3N2+Zhuj7PRpiPB6jWCyGCeni4oJ3d3eRz+eRL5hh4hPfDJI8S1XqnJf5NOm9IlYfjW5xc3ODSqWC4+NjklLn5+e8s7OD7e1tHB4ezkwIyZdmhCjN9alt9UZIHoEEAFc/rjCZTFAul1Gv1+lFCr+8vOTpdIr7+/v/8q5dKpVwcHAgPfwDmoUpP5Jd2SsAAAAASUVORK5CYII%3D";this.ea.Wm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wEAwEtNTlGiyEAAAOcSURBVEjHxZfNbttGEMd/Q0ty5MhULFF1LPkQy0B1MuDXiN+hybXIpS1a9yGaB2lO6SPYQHPxJTmazsXOoURiVaYIAZZUWJweRFKstKTktmkXWCx3ZjmcnfnPB4XUcF1XB4MBt7e3hGHI5xrFYhHbtqnX62xsbLC1tSUAEh84OzvTUqlErVZjZ2eHzz0uLy/xPI9Wq4XjONRqNSkAnJycaLVapb2/r5GCmlY0Y2i0Ss5e5taEv9duU6vVcF0X1SlLXNfVIAjodDo8fFhhTpEs5ZJ9GIaoKqqKiGBZFiKyqoHU92/k4uKC9l6bQhAEtFotyhsbGmq48LGllhFERBBEp0SV6Ka5lolH9dEjbTQa0rvpYY3HY5ztbVUR/q/5ZH9fgyCgMJlMIMy0gphuk2E1WfJu7jt3d3cUAGK7GvCxFDNv3vzK619eA3B4eMizr54nhyaTCWtra8tcncgtAKiE8xGihigxYsb76EkqT8WyFCBkgpUN5oUonCozU85kBclQSABsu5oQHMeJZQnAWqGYeROTqwpzdzdYRrNSiQKUSqVEWKm0Dqpp/tJoWrAM4UqKGzE4CAbJ82g0glD+dlaOMKN5bsrV0n3vJgTP+21e1rJoWnSTqtk06Wj48fh4WWgDcPzD90b6Ty9frmYZVIyY0RCw5N+pjDOT5WNGyXCTzHhP9vawbZv3FxfU63VK6+uMRyN832c4HCaSm80m6w8e8Md4TK/X48tOh7hMrOQmyYimNbES3ouvX5huw6tXP8vbd28BaDQafPvNdxgTpq4YTSpqyrggSFQ8Za4SJ2ce7zyGd1NipVJJA3jRU1Flz8phEYCzy4Gq5pYDUsJFhJmoxWhK8bLLASpZyUQkzqhq9nP3upsKbQ8TNMIwnPY5UxBmRmUhr/isMsrlcvK8ublprhuWtdI3/nHVXviw3utqpqqdV5vyO72nR0fy9Ogo2euKPXBenrl3cxXjwOT/yNBxBK7UXBWLRQrFYpHup084jS/uhRVB0DDfJbqiyz5cXWLbNla1WsX3ffr+DaKSTAwrqb3M0U37PBkx7ffuNb7vU6/XsQ4ODmQ0GtHv9/H7vWlvL5r0+ek1nvEZRafpWxSNJhFN59cUj+j5uvsRz/NoNpu0Wq1Zfjk9PdVKpUK5XGZ3d1fRqScS8KXawb9kHU3qmC7sYxmzNcHJ1YcrgiBge3ubTqcjC6A6Pz/XwWDAcDj8T/61Hceh2WwmOvwJjz3t/SbNLJ0AAAAASUVORK5CYII%3D";this.ea.Xm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wEAwEuF8cLmQYAAALYSURBVEjHzVfNbtpAEP7G2CQQZCe2KYqdQwCpPuW9qtzTh2geCq55gpheSC6oSUqMhRSgCjs9+AcHvMbkp+lIq/Xs2rOz334zsyZkxPd9nk6neHp6ghACHyWapkHXdViWhXq9jqOjIwIASl64urriarUK0zRxfHyMj5bhcIjRaATXdWHbNkzTJBUAer0eG4aBTrfLsYOcdVQiHPdUoNNan863Ox2Ypgnf98EcTZHv+xyGITzPw8FBA2uOyJxLdSEEmBnMDCKCoiggorIAcRA80mAwQKfdgRqGIVzXRa1eZ8FiY7GtyBCIiEAgjgaZ4p0WIpOIcXjIzWaTxo9jKIvFAnarxUyEz2qn3S6HYQh1uVwCQooC5e1Gghpt+bbwm+fnZ6gAkOCaw4+tnHmjvLCjAgCTWI8QzokSWTTl7ZZLOLIRhZEzK+fyUJAZpxILYQenImQyS+Ugw7JUEitMBfrWaNpABgIlN7kLb3eXmDNcdExlj+I10bR5TMz50CyXS1QqFQDA94uLN23/x+VlOWTAlMsZFgCU94jgF/AXc4YhOSZazZ2229B1HT8HA1iWhereHhbzOYIgwGw2Sy07joO9/X38WSwwHo/x1fOQlIlSx0SSaKqQks6dfzuX5ZhyVZtLRhMT5xlAVP1YRk7e+aTiyi6zExP4XcrB1mhaLVNQDsBEWxLLm5KJECK650QklNpR8Rq8dxRSlFJr/I9Vu6g2fcwduCjPfPrlStM0qJqm4eHuDnbzCz5Lbm+G0HUdimEYCIIAk+ARxJQ25PTI6LQ2nqcX2UjGfj/cIwgCWJYF5ezsjObzOSaTCYLJOLrbE6f3/GyftOQdBkfpmxgcN8RjvN5n5hA/3z/8wmg0guM4cF13lV/6/T43Gg3UajWcnJwwGATKkC9zHYzHE/rRi7GsnthY9SlPbm5vEIYhWq0WPM+jDVJdX1/zdDrFbDb7J//atm3DcZzUh7/MEqJMe2pkgAAAAABJRU5ErkJggg%3D%3D";this.ea.zm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAAUOVqXe5YAAAPASURBVEjHvVfLbttGFD1HpIxIMWRboqxY9EYKBMELbws4yKZ110m2ydIfEHQXoB9QIIsa7Q80u/Qn2trwKkaXTiE5BSoHMAQ/ZD0gwNRC4u2CIsXHkJILpwMIw+Ednrlz77kPEb7RbDZlOBzi9vYWtm3jS410Oo1cLodCoYBsNou1tTUCAN0Nx8fHsrS0hHw+j42NDXzp0Wq10G63YZomDMNAPp+nDgAHBweysrKC6uPHMlVQ/IrGDJnOTFgzNHvySrWKfD6PZrMJEUfEZrMpg8EA9XodDx8uI6RInHKLKLvIkF6vy9PTU1QrVeiDwQCmaSKTzYotHk/k70+f+Mu7d7zpdECSIgLSO//OiogICoaBvb091Go17/3K6qoUi0XedG/Ao6Mj+WpnR8Iff//mDa3RCJVKxQPzKRM4BIBSFv6u1Woh8+ABfnj7Nuxq/PnhA/XJZALY0Zt2u11sbW3h9evv7o20P/+0j0ajAcwC1Tt3PB5DBwC611Pwg47oXjlD77ggjg4AQjtsNgFA27YhtGVONEXOipPZtk0RcTEjUegoA0JpGRICxoEnWUYtI8EZZmSvHrpjwDIQACJxqWS6ECasg3lGpowQdb5ylEnK/DbnXJh3MJiLqX495Ywo3eT4VxZ1RdyaM946YR7CDBFY7DgXx8r+UxRxesEYTN1zs4ozQdl91CaSDGOGoynBTbhfNykwg25iTDQRRDxl7m4ZgiQjmCHLUFQAEHrk5qKJLbFYMhIUAZwpgdXlQNc0txAuUg7muknXNCeaksoBRJ0R+/0+Wv+0MJnYnEwmd0wms6FpGlKpFHq9vqOIqFsRPa7IfP3NLv74/Tfs7/84t09xbxvXRvhbjd3db2P9G1u1Xzx7jlKxKFdXV9R0PXANzTU3puUirIQIXEuKr0Uora9jZ+fJvKodjSZqKT55+jSOI6Jw2cI9sACJeYZxJd9/QCqVwng8xq/v3/Py4gKZTMZPRpKEZVkoPXqEl69eUdd1JYaKe+l0Gno6ncb15SWM4roiqwV1FNupuH99/AjLsmL50el0AHH2KzFC4/NZC7lcDjw5OZHRaIRisYi11UIkdkWRVLhg5kvCcPdcdy5xfn6OWq2G1Pb2NkejEfr9Pnr9GwhFnKQkEDrNhzu7P3ePQBwG0Elk7nfwybzZJ8P0+er6Au12G+VyGaZpzsLg8PBQlpeXkclksLm5KXAsHGiMfFfyFxAG3vnXLsZs9ox49vkMg8EApVIJ9XqdkaTTaDRkOBzCsqz/5b+2YRgol8ueDv8CmAsGVvaUUeAAAAAASUVORK5CYII%3D";this.ea.nm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAARF/s2ghwAAAMOSURBVEjHvVfRTuJAFD2XUBOQgJQSIvVhhRie/LbVAv7BSmE/Sl999sH6om5iyLouSkOimGjvPrSdDmVaCsadyc3pTKenZ+7cuZ0SpOI4Ds9mM7y8vMDzPHxV0TQN5XIZtVoNxWIR1WqVAIDCARcXF7y1tQVd17G7u4uvLre3txiPxzBNE4ZhQNd1ygPA2dkZVyoVtNptDgSyLDShcICU0qYYivv7rRZ0XYfjOGD2b5HjOOy6LjqdDra3S4gJSRKXRWyWws/PT3R9fY3Wfgs513VhmiYKxSJ7foWEacaxceyxx0dH3xHj4ITx8NhDZWeH6/U6Jk8T5N7e3mA0GsxE+KxZx8cEYO3nvrXb7Lou8h8fH4CX6HKKIRLa6FpHUZ+nfJZS+PH+/o48AFAYQcvxkSlmrO7x4hsE3eqYkXnyvlu9+A5hxS5R7qau1V2aMZOXRc3SLvTFROJUXqAEQdSzrASVtM5OW/SM9CqFZ1iZSnpda1UGSs0zqnyVlwJulXBx3etb6TPf8EsSxAynLdNC6fe6q6PS58uym5aXiTnbVE76/WxbhL3NPQOmtN3kCznprZHkaaOYyfktUSmGog5HP7NrUXORijfsB4Ccn6SEcQwXbDTMJiiBixN4fYWhGCZRISFUfcPRKFMAZzTBG4mJCkkY9ssIZoY9HHJ6ADMkDhlJ5pHeFS2T9AmFhEjoA5jItkfpAZzNIl7hmQ1tkCBoEy4pgIUPISES+hba9mCoCGDOaoJHCmBhHMM043DcwB6qVokVyEk80jIpYz0t78TH4dS2N8kzgkfTNOQ0TcPjwwPY40/bj9OBL2bN5+5ublAul0GXl5c8n89Rr9dR3aktHcFYcaChjP8raRzhmMe/D7i/v8fBwQFyh4eHNJ/PMZ1O8TydIIjkcPFYxtDCMYxYGg2eg3RPoHQPwfWfx98Yj8doNpswTTM6kZ2fn3OpVEKhUMDe3h6DQSBpUtJxMOgXx7qFPrkdckQonHj36w6u66LRaKDT6dDSF/Tq6opnsxleX1//y7+2YRhoNptCwz/m1JcKyxmy4QAAAABJRU5ErkJggg%3D%3D";this.ea.pm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAdCAYAAAAgqdWEAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wDCAATL+ECWAAAAAMHSURBVEjHvVdRT+JAEP6GFBOQgJRyROrDCTE8+dvEAvcPTgr+KH312QfrE5oYcp6n0pAoJtq5B7btsm2BHnpDvsxud/djdmc6syVI4jgOT6dTvLy8wPM8fJVks1kUi0VUKhXk83mUy2UCAPInXFxc8NbWFnRdx+7uLr5aRqMRxuMxTNOEYRjQdZ00ADg7O+NSqYRGs8nCQJYNTRAWmpb0SdHB+H6jAV3X4TgOmOdD5DgOu66LVquF7e0CFEOSjFvH2HWEn5+f6Pr6Go39BjKu68I0TeTyefbmP0g6Ee32kTqPY/qqjvCWdna4Wq3i8ekRmbe3Nxi1GjMR0gAArONjSrsuDt+bTXZdF5mPjw/AA8UAMRpBX0in3YY0hxbmRHWUR+D9/R0ZACBmFoCkkfAM5Eecb5DVhjK+LgJeAHNjmDwfrGi1HUAVq3Osrl8FmZ9DY0A+SNFqO0CcdKyOvH4VZH4KjAEHYEUDzFhsc5gxYqRrWUlcvMi78J/hyShBpYCUtugvkW7HWsEZgzBm2AcpOhGrpNuzKIYzjpeYOHQTs5ca60iv20nFJ2KGfLCik7Gm/Oj1ZO443uCoNYgYkorYZ9UdAMBgeOrzJ3EGz7V50otU4k8xaDg49XdKMVU9Uv01EcBxVVpeSEm7ST6RIfNqf8r/JdwUpnf6jCuEPRiAmWnFhiI8mghgSth16pOx7eHSpLiMR5Odtqn07eFGXJpftTd1k90fzEtFyptexE1SmP3T29S3B+CUd+Dktyk56lfGzIltJ+WRdQKY5M8XLZvN4uH+Hkb1W2of/zzpg73NI+72ZoRisQi6vLzk2WyGarWK8k4l4kz1jBETPEnfK8s4/DkPf+5xd3eHg4MDZA4PD2k2m2EymeB58ghx/xTOm19efB1cQMQcBs/T90I1F31VS2MQ7d8PvzAej1Gv12GaZphfzs/PuVAoIJfLYW9vj8EgkLQp+XpHkAsILTyT+z5HqINDvLm9geu6qNVqaLVaFAmqq6srnk6neH19/S/f2oZhoF6vBzb8BbU1MGBi7Vj6AAAAAElFTkSuQmCC";this.ea.wm="data:image/png;base64,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";this.ea.Gq="";this.ea.Hq="";this.ea.Iq="";this.ea.Mq="";this.ea.Lq="";this.ea.Oq="";this.ea.Pq="";this.ea.Qq="";this.ea.Nq="";this.ea.Rq="";};window.dlInfoBox=function(){jQuery("#modal-I").smodal();};var ya=function(){function f(){}f.prototype={Jd:function(c,d){if(d.Xa&&(d.Oi||d.create(d.pages.J),!d.initialized)){c.rb=d.rb=c.config.MixedMode;c.cm=!1;c.dm=!1;var e=d.V;0==jQuery(e).length&&(e=jQuery(d.Mc).find(d.V));if("FlipView"==d.H){var g=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(g="flowpaper_zine_page_left_noshadow");d.F.Pe||(g=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");jQuery(e).append("<div id='"+d.aa+"_canvascontainer' style='height:100%;width:100%;position:relative;'><canvas id='"+c.Ba(1,d)+"' style='position:relative;left:0px;top:0px;height:100%;width:100%;"+(c.cm?"":"background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;")+"display:none;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_flipview_canvas flowpaper_flipview_page' width='100%' height='100%' ></canvas><canvas id='"+c.Ba(2,d)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;display:none;' class='flowpaper_border flowpaper_interactivearea flowpaper_grab flowpaper_rescale flowpaper_flipview_canvas_highres flowpaper_flipview_page' width='100%' height='100%'></canvas><div id='"+d.aa+"_textoverlay' style='position:absolute;z-index:11;left:0px;top:0px;width:100%;height:100%;' class='"+g+"'></div></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+c.Ba(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Ba(2,d)).css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}eb.browser.mozilla&&(jQuery("#"+c.Ba(1,d)).css("backface-visibility","hidden"),jQuery("#"+c.Ba(2,d)).css("backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","hidden"));}d.initialized=!0;}},Fp:function(c,d){if("FlipView"==d.H&&0==jQuery("#"+c.Ba(1,d)).length||"FlipView"==d.H&&d.oa){return !1;}"FlipView"!=d.H||null!=d.context||d.uc||d.oa||(d.Qc(),d.uc=!0);return !0;},Ep:function(c,d){return 1==d.scale||1<d.scale&&d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2;},$b:function(c,d,e,g){1==d.scale&&eb.browser.safari?(jQuery("#"+c.Ba(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Ba(2,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+c.Ba(1,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.Ba(2,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if("FlipView"!=d.H||0!=jQuery("#"+c.Ba(1,d)).length){if("FlipView"!=d.H||!d.oa){if("FlipView"==d.H&&1<d.scale){if(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2){jQuery(c).trigger("UIBlockingRenderingOperation",{P:c.P,Zo:!0});var h=3>d.scale?2236:3236;magnifier=h*Math.sqrt(1/(d.wa()*d.Ha()));d.ia.width=d.wa()*magnifier;d.ia.height=d.Ha()*magnifier;}else{c.si=!1,d.ia.width=2*d.wa(),d.ia.height=2*d.Ha(),d.oa=!0,jQuery("#"+d.Eb).xd(),c.Pk(d),eb.platform.touchdevice&&(null!=c.Ji&&window.clearTimeout(c.Ji),c.Ji=setTimeout(function(){},1500)),null!=g&&g();}}else{d.rb&&c.pageImagePattern&&!d.mi?(d.Jc&&d.Jc(c.ja(d.pageNumber+1),c.ja(d.pageNumber+2)),d.dimensions.loaded||c.tc(d.pageNumber+1,!0,function(){c.Dc(d);},!0,d),d.an=!0,c.cm?(d.U=new Image,jQuery(d.U).bind("load",function(){d.Hr=!0;d.We=!0;d.Xe=this.height;d.Ye=this.width;c.Dp(d);d.dimensions.ma>d.dimensions.width&&(d.dimensions.width=d.dimensions.ma,d.dimensions.height=d.dimensions.za);d.Fb=!1;c.fe();}),jQuery(d.U).attr("src",c.ja(d.pageNumber+1))):null==d.U?(d.Fb=!0,d.U=new Image,jQuery(d.U).bind("load",function(){jQuery(d.Yb).remove();jQuery(d.ia).css("background-image","url('"+c.ja(d.pageNumber+1)+"')");d.Fb=!1;c.fe();}),jQuery(d.U).bind("error",function(){jQuery.ajax({url:this.src,type:"HEAD",error:function(h){if(404==h.status||500<=h.status){d.mi=!0,d.Fb=!1,d.an=!0,d.oa=!1,1==d.pageNumber&&d.F.pages.Fd&&d.F.pages.Fd(),c.$b(d,e,g);}},success:function(){}});}),jQuery(d.U).bind("error",function(){jQuery(d.Yb).remove();jQuery(d.ia).css("background-image","url('"+c.ja(d.pageNumber+1)+"')");d.Fb=!1;c.fe();}),jQuery(d.U).attr("src",c.ja(d.pageNumber+1)),c.Ji=setTimeout(function(){d.Fb&&("none"==jQuery(d.ia).css("background-image")&&jQuery(d.ia).css("background-image","url('"+c.ja(d.pageNumber+1)+"')"),d.Fb=!1,c.fe());},6000)):d.Fb||"none"==jQuery(d.ia).css("background-image")&&jQuery(d.ia).css("background-image","url('"+c.ja(d.pageNumber+1)+"')"),c.Re(d,g)):!c.va&&c.fb?(magnifier=1236*Math.sqrt(1/(d.wa()*d.Ha())),d.ia.width=d.wa()*magnifier,d.ia.height=d.Ha()*magnifier):(d.ia.width=1*d.wa(),d.ia.height=1*d.Ha());}}}},sq:function(c,d){return"FlipView"==d.H;},pj:function(c,d){"FlipView"==d.H&&(1<d.scale?(d.Eb=c.Ba(2,d),d.Lf=c.Ba(1,d)):(d.Eb=c.Ba(1,d),d.Lf=c.Ba(2,d)));},Re:function(c,d){"FlipView"==d.H&&(1<d.scale?requestAnim(function(){var e=jQuery("#"+c.Ba(2,d)).get(0);eb.browser.safari&&c.dm&&(jQuery(e).css("background-image","url('"+e.toDataURL()+"')"),e.width=100,e.height=100);jQuery("#"+c.Ba(1,d)).rc();}):(jQuery("#"+c.Ba(1,d)).xd(),jQuery("#"+c.Ba(2,d)).rc(),eb.browser.safari&&c.dm&&jQuery("#"+c.Ba(2,d)).css("background-image","")),d.rb&&c.pageImagePattern&&1==d.scale||jQuery(d.Yb).remove());jQuery(c).trigger("UIBlockingRenderingOperationCompleted",{P:c.P});c.fe();}};CanvasPageRenderer.prototype.qh=function(c){return"FlipView"==c.H?1:1.4;};CanvasPageRenderer.prototype.Dp=function(c){var d=c.ia;if(1==c.scale&&d&&(100==d.width||jQuery(d).hasClass("flowpaper_redraw"))&&d){d.width=c.wa();d.height=c.Ha();var e=d.getContext("2d"),g=document.createElement("canvas"),h=g.getContext("2d");g.width=c.U.width;g.height=c.U.height;h.drawImage(c.U,0,0,g.width,g.height);h.drawImage(g,0,0,0.5*g.width,0.5*g.height);e.drawImage(g,0,0,0.5*g.width,0.5*g.height,0,0,d.width,d.height);jQuery(d).removeClass("flowpaper_redraw");1==c.scale&&(jQuery(c.V+"_canvas").xd(),jQuery(c.V+"_canvas_highres").rc());1<c.pageNumber&&jQuery(c.V+"_pixel").css({width:2*c.wa(),height:2*c.Ha()});}jQuery(c.Yb).remove();};CanvasPageRenderer.prototype.Oe=function(c,d,e){var g=this;if(null!=g.pageThumbImagePattern&&0<g.pageThumbImagePattern.length){for(var h=0,f=null,l=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height,k=1;k<d;k++){h+=2;}0.5>l&&g.config.JSONDataType&&c.getDimensions(0)[0].ma<c.getDimensions(0)[0].za&&(l=0.7);var n=1==d?h+1:h,p=new Image;jQuery(p).bind("load",function(){var f=d%10;0==f&&(f=10);var m=c.O.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',f)).get(0);m.width=e*l-2;m.height=e/l/2-2;var k=jQuery(m).parent().width()/m.width;m.getContext("2d").fillStyle="#999999";var q=(m.height-m.height*l)/2,t=m.height*l;0>q&&(m.height+=m.width-t,q+=(m.width-t)/2);eb.browser.msie&&jQuery(m).css({width:m.width*k+"px",height:m.height*k+"px"});jQuery(m).data("origwidth",m.width*k);jQuery(m).data("origheight",m.height*k);m.getContext("2d").fillRect(1==d?m.width/2:0,q,n==c.getTotalPages()?m.width/2+2:m.width+2,t+2);m.getContext("2d").drawImage(p,1==d?m.width/2+1:1,q+1,m.width/2,t);if(1<d&&h+1<=c.getTotalPages()&&n+1<=c.getTotalPages()){var u=new Image;jQuery(u).bind("load",function(){m.getContext("2d").drawImage(u,m.width/2+1,q+1,m.width/2,t);m.getContext("2d").strokeStyle="#999999";m.getContext("2d").moveTo(m.width-1,q);m.getContext("2d").lineTo(m.width-1,t+1);m.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{lf:f,thumbData:m});});jQuery(u).attr("src",g.ja(n+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{lf:f,thumbData:m});}});n<=c.getTotalPages()&&jQuery(p).attr("src",g.ja(n,200));}else{if(-1<g.Ca(null)||1!=c.scale){window.clearTimeout(g.mf),g.mf=setTimeout(function(){g.Oe(c,d,e);},50);}else{h=0;f=null;l=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height;for(k=1;k<d;k++){h+=2;}var n=1==d?h+1:h,p=new Image,q=d%10;0==q&&(q=10);f=c.O.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',q)).get(0);f.width=e*l;f.height=e/l/2;k=jQuery(f).parent().width()/f.width;eb.browser.msie&&jQuery(f).css({width:f.width*k+"px",height:f.height*k+"px"});jQuery(f).data("origwidth",f.width*k);jQuery(f).data("origheight",f.height*k);var t=f.height/g.getDimensions()[n-1].height;g.Ia(null,"thumb_"+n);g.Ga.getPage(n).then(function(k){var p=k.getViewport(t),C=f.getContext("2d"),v=document.createElement("canvas");v.height=f.height;v.width=v.height*l;var w={canvasContext:v.getContext("2d"),viewport:p,Eh:null,pageNumber:n,continueCallback:function(h){1!=c.scale?(window.clearTimeout(g.mf),g.mf=setTimeout(function(){g.Oe(c,d,e);},50)):h();}};k.render(w).promise.then(function(){var k=(f.height-f.height*l)/2,r=f.height*l;0>k&&(f.height+=f.width-r,k+=(f.width-r)/2);g.Ia(null,-1,"thumb_"+n);1<d&&h+1<=c.getTotalPages()&&n+1<=c.getTotalPages()?-1<g.Ca(null)||1!=c.scale?(window.clearTimeout(g.mf),g.mf=setTimeout(function(){g.Oe(c,d,e);},50)):(g.Ia(null,"thumb_"+(n+1)),g.Ga.getPage(n+1).then(function(h){p=h.getViewport(t);var l=document.createElement("canvas");l.width=v.width;l.height=v.height;w={canvasContext:l.getContext("2d"),viewport:p,Eh:null,pageNumber:n+1,continueCallback:function(h){1!=c.scale?(window.clearTimeout(g.mf),g.mf=setTimeout(function(){g.Oe(c,d,e);},50)):h();}};h.render(w).promise.then(function(){g.Ia(null,-1);C.fillStyle="#ffffff";C.fillRect(1==d?f.width/2:0,k,f.width/2,r);1!=d&&C.fillRect(f.width/2,k,f.width/2,r);C.drawImage(v,1==d?f.width/2:0,k,f.width/2,r);1!=d&&C.drawImage(l,f.width/2,k,f.width/2,r);jQuery(c).trigger("onThumbPanelThumbAdded",{lf:q,thumbData:f});},function(){g.Ia(null,-1,"thumb_"+(n+1));});})):(C.fillStyle="#ffffff",C.fillRect(1==d?f.width/2:0,k,f.width/2,r),1!=d&&C.fillRect(f.width/2,k,f.width/2,r),C.drawImage(v,1==d?f.width/2:0,k,f.width/2,r),jQuery(c).trigger("onThumbPanelThumbAdded",{lf:q,thumbData:f}));},function(){g.Ia(null,-1);});});}}};return f;}(),xa=function(){function f(){}f.prototype={Jd:function(c,d){if(d.Xa&&(d.Oi||d.create(d.pages.J),!d.initialized)){c.mb=!c.qa&&null!=c.aj&&0<c.aj.length&&eb.platform.touchonlydevice&&!eb.platform.mobilepreview;if("FlipView"==d.H){var e=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(e="flowpaper_zine_page_left_noshadow");d.F.Pe||(e=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");var g=d.V;0==jQuery(g).length&&(g=jQuery(d.Mc).find(d.V));c.kh(d,g);c.qa&&c.rf(c,d)?(jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"),c.$o=new Image,jQuery(c.$o).attr("src",c.fa)):c.zb?jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;background-color:#ffffff;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"):jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='image-rendering:-webkit-optimize-contrast;display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}}d.initialized=!0;}},$b:function(c,d,e,g){d.initialized||c.Jd(d);if(!d.oa&&"FlipView"==d.H){if(-1<c.Ca(d)&&c.Ca(d)!=d.pageNumber&&d.pageNumber!=d.pages.R&&d.pageNumber!=d.pages.R-2&&d.pageNumber!=d.pages.R-1){if(window.clearTimeout(d.kc),d.pageNumber==d.pages.R||d.pageNumber==d.pages.R-2||d.pageNumber==d.pages.R-1){d.kc=setTimeout(function(){c.$b(d,e,g);},250);}}else{1==d.scale&&d.Jc&&!c.qa&&d.Jc(c.ja(d.pageNumber+1),c.ja(d.pageNumber+2));if(!d.oa){c.ar=d.scale;c.Ia(d,d.pageNumber);1==d.scale&&d.Qc();d.Fb=!0;if(!d.U||d.yo!=d.scale||c.rf(c,d)||!c.rf(c,d)&&c.qa){d.yo=d.scale,d.U=new Image,jQuery(d.U).data("pageNumber",d.pageNumber),jQuery(d.U).bind("load",function(){d.Fb=!1;d.We=!0;d.Xe=this.height;d.Ye=this.width;d.Jb();c.Pc(d);d.dimensions.ma>d.dimensions.width&&(d.dimensions.width=d.dimensions.ma,d.dimensions.height=d.dimensions.za);}),jQuery(d.U).bind("abort",function(){jQuery(this).yh(function(){d.Fb=!1;c.Ia(d,-1);});}),jQuery(d.U).bind("error",function(){jQuery(this).yh(function(){d.Fb=!1;c.Ia(d,-1);});});}1>=d.scale?jQuery(d.U).attr("src",c.ja(d.pageNumber+1,null,c.zb)):c.mb&&1<d.scale?d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.U).attr("src",c.ja(d.pageNumber+1,null,c.zb)):c.qa||jQuery(d.U).attr("src",c.fa):d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?(!c.zb||-1!=jQuery(d.U).attr("src").indexOf(".svg")&&d.Io==d.scale||c.Ca(d)!=d.pageNumber||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?d.vj==d.scale&&(jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide()):(jQuery(c).trigger("UIBlockingRenderingOperation",c.P),d.Io=d.scale,jQuery(d.U).attr("src",c.ja(d.pageNumber+1,null,c.zb))),c.zb||jQuery(d.U).attr("src",c.ja(d.pageNumber+1,null,c.zb))):c.qa||jQuery(d.U).attr("src",c.fa);}jQuery(d.V).removeClass("flowpaper_load_on_demand");!d.oa&&jQuery(d.na).attr("src")==c.fa&&d.We&&c.Pc(d);null!=g&&g();}}},Pc:function(c,d){if("FlipView"==d.H){jQuery(d.V).removeClass("flowpaper_hidden");1==d.scale&&eb.browser.safari?(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if(c.rf(c,d)){1==d.scale?(jQuery(d.ta).css("background-image","url('"+c.ja(d.pageNumber+1,null,c.zb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),c.Fc(d)):(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.ta).css("background-image","url('"+c.ja(d.pageNumber+1)+"')"):jQuery(d.ta).css("background-image","url("+c.fa+")"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),jQuery(d.V+"_canvas").hide(),c.mb&&d.scale>d.qg()&&(d.kc=setTimeout(function(){c.Nc(d);jQuery(".flowpaper_flipview_canvas_highres").show();jQuery(".flowpaper_flipview_canvas").hide();},500)));}else{var e=document.getElementById(d.aa+"_canvas");c.qa?(jQuery(d.ta).css("background-image","url('"+c.ja(d.pageNumber+1,null,c.zb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible")):jQuery(d.ta).css("background-image","url("+c.fa+")");if(1==d.scale&&e&&(100==e.width||jQuery(e).hasClass("flowpaper_redraw"))){var g=e;if(g){var h=d.wa(),f=d.Ha();g.width=2*h;g.height=2*f;h=g.getContext("2d");h.ag=h.mozImageSmoothingEnabled=h.imageSmoothingEnabled=!0;h.drawImage(d.U,0,0,g.width,g.height);jQuery(g).data("needs-overlay",1);jQuery(e).removeClass("flowpaper_redraw");1==d.scale&&(jQuery(d.V+"_canvas").show(),jQuery(d.V+"_canvas_highres").hide());1<d.pageNumber&&jQuery(d.V+"_pixel").css({width:2*d.wa(),height:2*d.Ha()});jQuery(g).data("needs-overlay",1);c.Fc(d);}}else{1==d.scale&&e&&100!=e.width&&(jQuery(d.V+"_canvas").show(),jQuery(d.V+"_canvas_highres").hide(),c.Fc(d));}if(1<d.scale&&!c.qa){if(g=document.getElementById(d.aa+"_canvas_highres")){!(c.zb&&d.vj!=d.scale||c.qa&&d.vj!=d.scale||100==g.width||jQuery(g).hasClass("flowpaper_redraw"))||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?(jQuery(d.V+"_pixel").css({width:2*d.wa(),height:2*d.Ha()}),jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide(),c.mb&&jQuery(d.V+"_canvas_highres").css("z-index","-1")):(d.vj=d.scale,e=1000<d.L.width()||1000<d.L.height()?1:2,h=(d.L.width()-30)*d.scale,c.qa&&1==e&&(e=c.Ya),eb.platform.ios&&(1500<h*d.ke()||535<d.Cf())&&(e=2236*Math.sqrt(1/(d.wa()*d.Ha()))),eb.browser.safari&&!eb.platform.touchdevice&&3>e&&(e=3),h=g.getContext("2d"),h.ag||h.mozImageSmoothingEnabled||h.imageSmoothingEnabled?(h.ag=h.mozImageSmoothingEnabled=h.imageSmoothingEnabled=!1,c.zb||c.qa?(g.width=d.wa()*e,g.height=d.Ha()*e,h.drawImage(d.U,0,0,d.wa()*e,d.Ha()*e)):(g.width=d.U.width,g.height=d.U.height,h.drawImage(d.U,0,0))):(g.width=d.wa()*e,g.height=d.Ha()*e,h.drawImage(d.U,0,0,d.wa()*e,d.Ha()*e)),c.zb?c.Do(d,g.width/d.U.width,function(){jQuery(g).removeClass("flowpaper_redraw");jQuery(d.V+"_canvas_highres").show();jQuery(d.V+"_canvas").hide();jQuery(d.V+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres");jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas");c.Ia(d,-1);}):(jQuery(g).removeClass("flowpaper_redraw"),c.qa||(jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide(),jQuery(d.V+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres"),jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas")),c.mb&&jQuery(d.V+"_canvas_highres").css("z-index","-1")));}d.kc=setTimeout(function(){c.Nc(d);},500);}}c.qa&&1==d.scale&&(jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas"),jQuery(d.V+"_canvas").show(),g=document.getElementById(d.aa+"_canvas"),h=d.wa(),f=d.Ha(),e=1.5<c.Ya?c.Ya:1,g.width!=h*e&&c.rf(c,d)?(d.oa||(g.width=100),g.width!=h*e&&c.rf(c,d)&&(g.width=h*e,g.height=f*e),jQuery(g).css({width:g.width/e+"px",height:g.height/e+"px"}),c.El=!0,jQuery(g).data("needs-overlay",1),d.Td(g).then(function(){d.Jc(c.ja(d.pageNumber+1),c.ja(d.pageNumber+2),!0);})):c.rf(c,d)||1!=jQuery(g).data("needs-overlay")?d.oa||d.Jc(c.ja(d.pageNumber+1),c.ja(d.pageNumber+2),!0):d.Td(g).then(function(){d.Jc(c.ja(d.pageNumber+1),c.ja(d.pageNumber+2),!0);}));d.oa=0<jQuery(d.ta).length;}},unload:function(c,d){d.U=null;jQuery(d.ta).css("background-image","url("+c.fa+")");var e=document.getElementById(d.aa+"_canvas");e&&(e.width=100,e.height=100);if(e=document.getElementById(d.aa+"_canvas_highres")){e.width=100,e.height=100;}}};ImagePageRenderer.prototype.rf=function(c,d){return c.qa&&(eb.platform.ios||eb.browser.mozilla&&57>eb.browser.version)?!1:c.qa?!0:eb.platform.touchdevice&&(eb.platform.Kd||d&&d.Ye&&d.Xe&&5000000<d.Ye*d.Xe||eb.platform.android)&&(eb.platform.Kd||eb.platform.android)||eb.browser.chrome||eb.browser.mozilla||c.qa||eb.browser.safari&&!eb.platform.touchdevice;};ImagePageRenderer.prototype.resize=function(c,d){this.kh(d);};ImagePageRenderer.prototype.Do=function(c,d,e){var g=this;window.Lh=d;jQuery.ajax({type:"GET",url:g.ja(c.pageNumber+1,null,g.zb),cache:!0,dataType:"xml",success:function(h){var f=new Image;jQuery(f).bind("load",function(){var g=document.getElementById(c.aa+"_canvas"),k=document.getElementById(c.aa+"_canvas_highres").getContext("2d");k.ag=k.mozImageSmoothingEnabled=k.imageSmoothingEnabled=!1;var n=g.getContext("2d");n.ag=n.mozImageSmoothingEnabled=n.imageSmoothingEnabled=!1;g.width=c.U.width*d;g.height=c.U.height*d;n.drawImage(f,0,0,c.U.width*d,c.U.height*d);if(c.Xl){p=c.Xl;}else{var p=[];jQuery(h).find("image").each(function(){var c={};c.id=jQuery(this).attr("id");c.width=S(jQuery(this).attr("width"));c.height=S(jQuery(this).attr("height"));c.data=jQuery(this).attr("xlink:href");c.dataType=0<c.data.length?c.data.substr(0,15):"";p[p.length]=c;jQuery(h).find("use[xlink\\:href='#"+c.id+"']").each(function(){if(jQuery(this).attr("transform")&&(c.transform=jQuery(this).attr("transform"),c.transform=c.transform.substr(7,c.transform.length-8),c.Fh=c.transform.split(" "),c.x=S(c.Fh[c.Fh.length-2]),c.y=S(c.Fh[c.Fh.length-1]),"g"==jQuery(this).parent()[0].nodeName&&null!=jQuery(this).parent().attr("clip-path"))){var d=jQuery(this).parent().attr("clip-path"),d=d.substr(5,d.length-6);jQuery(h).find("*[id='"+d+"']").each(function(){c.ig=[];jQuery(this).find("path").each(function(){var d={};d.d=jQuery(this).attr("d");c.ig[c.ig.length]=d;});});}});});c.Xl=p;}for(n=0;n<p.length;n++){if(p[n].ig){for(var q=0;q<p[n].ig.length;q++){for(var t=p[n].ig[q].d.replace(/M/g,"M\x00").replace(/m/g,"m\x00").replace(/v/g,"v\x00").replace(/l/g,"l\x00").replace(/h/g,"h\x00").replace(/c/g,"c\x00").replace(/s/g,"s\x00").replace(/z/g,"z\x00").split(/(?=M|m|v|h|s|c|l|z)|\0/),r=0,x=0,C=0,v=0,w=!1,u,D=!0,B=0;B<t.length;B+=2){if("M"==t[B]&&t.length>B+1&&(u=T(t[B+1]),C=r=S(u[0]),v=x=S(u[1]),D&&(w=!0)),"m"==t[B]&&t.length>B+1&&(u=T(t[B+1]),C=r+=S(u[0]),v=x+=S(u[1]),D&&(w=!0)),"l"==t[B]&&t.length>B+1&&(u=T(t[B+1]),r+=S(u[0]),x+=S(u[1])),"h"==t[B]&&t.length>B+1&&(u=T(t[B+1]),r+=S(u[0])),"v"==t[B]&&t.length>B+1&&(u=T(t[B+1]),x+=S(u[0])),"s"==t[B]&&t.length>B+1&&(u=T(t[B+1])),"c"==t[B]&&t.length>B+1&&(u=T(t[B+1])),"z"==t[B]&&t.length>B+1&&(r=C,x=v,u=null),w&&(k.save(),k.beginPath(),D=w=!1),"M"==t[B]||"m"==t[B]){k.moveTo(r,x);}else{if("c"==t[B]&&null!=u){for(var H=0;H<u.length;H+=6){var z=r+S(u[H+0]),G=x+S(u[H+1]),A=r+S(u[H+2]),F=x+S(u[H+3]),y=r+S(u[H+4]),E=x+S(u[H+5]);k.bezierCurveTo(z,G,A,F,y,E);r=y;x=E;}}else{"s"==t[B]&&null!=u?(A=r+S(u[0]),F=x+S(u[1]),y=r+S(u[2]),E=x+S(u[3]),k.bezierCurveTo(r,x,A,F,y,E),r=y,x=E):"z"==t[B]?(k.lineTo(r,x),k.closePath(),k.clip(),k.drawImage(g,0,0),k.restore(),D=!0,B--):k.lineTo(r,x);}}}}}else{M("no clip path for image!");}}e&&e();});f.src=g.ja(c.pageNumber+1);}});};ImagePageRenderer.prototype.Oe=function(c,d,e){var g=this,h=0,f=c.getDimensions(d)[d-1].ma/c.getDimensions(d)[d-1].za;g.fb&&1<d&&(f=c.getDimensions(1)[0].ma/c.getDimensions(1)[0].za);0.5>f&&g.config.JSONDataType&&c.getDimensions(0)[0].ma<c.getDimensions(0)[0].za&&(f=0.7);for(var l=1;l<d;l++){h+=2;}var k=1==d?h+1:h,n=new Image;jQuery(n).bind("load",function(){var l=d%10;0==l&&(l=10);var q=jQuery(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',l)).get(0);q.width=e*f-2;q.height=e/f/2-2;var t=jQuery(q).parent().width()/q.width;q.getContext("2d").fillStyle="#999999";var r=(q.height-q.height*f)/2,x=q.height*f;0>r&&(q.height+=q.width-x,r+=(q.width-x)/2);jQuery(q).data("origwidth",q.width*t);jQuery(q).data("origheight",q.height*t);(eb.browser.msie||eb.browser.safari&&5>eb.browser.Kb)&&jQuery(q).css({width:q.width*t+"px",height:q.height*t+"px"});q.getContext("2d").fillRect(1==d?q.width/2:0,r,k==c.getTotalPages()?q.width/2+2:q.width+2,x+2);q.getContext("2d").drawImage(n,1==d?q.width/2+1:1,r+1,q.width/2,x);if(1<d&&h+1<=c.getTotalPages()&&k+1<=c.getTotalPages()){var C=new Image;jQuery(C).bind("load",function(){q.getContext("2d").drawImage(C,q.width/2+1,r+1,q.width/2,x);q.getContext("2d").strokeStyle="#999999";q.getContext("2d").moveTo(q.width-1,r);q.getContext("2d").lineTo(q.width-1,x+1);q.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{lf:l,thumbData:q});});jQuery(C).attr("src",g.ja(k+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{lf:l,thumbData:q});}});k<=c.getTotalPages()&&jQuery(n).attr("src",g.ja(k,200));};return f;}(),va=function(){function f(){}W.prototype.Ve=function(){var c=this.F.I.ff,d=this.fh(0),d=d.ma/d.za,e=Math.round(this.L.height()-10);this.F.O.find(".flowpaper_fisheye");var g=eb.platform.touchdevice?90==window.orientation||-90==window.orientation||jQuery(window).height()>jQuery(window).width():!1,h=this.F.I.qf?this.F.I.Na.height():0;if(this.F.I.cb&&!this.F.PreviewMode){e-=eb.platform.touchonlydevice?this.F.ab?h:0:this.L.height()*(this.F.ab?0.2:0.15);}else{if(this.F.PreviewMode){this.F.PreviewMode&&(e=this.F.O.height()-15,e-=eb.platform.touchonlydevice?this.F.ab?h+30:0:this.L.height()*(g?0.5:0.09));}else{var f=0.07;this.F.I.cb||(f=0.07);eb.platform.touchonlydevice?e=this.F.Rb?e-(this.F.ab?5:0):e-(this.F.ab?h:0):(h=this.F.I.qf?jQuery(this.F.K).parent().height()||0:0,0==h&&this.F.I.qf&&(h=this.L.height()*f),e-=this.F.ab&&!this.F.I.nf?h:this.L.height()*(g?0.5:f));}}g=this.L.width();2*e*d>g-(c?2.4*this.ga:0)&&!this.F.I.Ea&&(e=g/2/d-+(c?1.5*this.ga:75));if(e*d>g-(c?2.4*this.ga:0)&&this.F.I.Ea){for(f=10;e*d>g-(c?2.4*this.ga:0)&&1000>f;){e=g/d-f+(c?0:50),f+=10;}}if(!eb.browser.nr){for(c=2.5*Math.floor(e*(this.F.I.Ea?1:2)*d),g=0;0!=c%4&&20>g;){e+=0.5,c=2.5*Math.floor(e*(this.F.I.Ea?1:2)*d),g++;}}return e;};W.prototype.Cd=function(c){var d=this,e=c?c:d.F.scale;if(1==e&&1==d.ba){jQuery(d.J+"_glyphcanvas").css("z-index",-1).rc(),jQuery(".flowpaper_flipview_canvas").xd(),d.cd();}else{if(d.F.renderer.qa&&d.F.I.W==d.F.H&&(c=jQuery(d.J+"_glyphcanvas").get(0),void 0==d.kk&&(d.kk=jQuery(c).offset().left),void 0==d.lk&&(d.lk=jQuery(c).offset().top),void 0==d.gm&&(d.gm=jQuery(d.F.O).position().left),void 0==d.hm&&(d.hm=jQuery(d.F.O).position().top),1<e)){var g=c.getContext("2d"),h=1<d.R?d.R-(d.F.I.Ea||0==d.R%2||d.R+(0==d.R%2?1:0)>d.F.getTotalPages()?1:2):0,f=d.F.I.Ea||0==h||null==d.pages[h+1]?1:2,l=0,k=eb.platform.Ya,n=0,p=d.kk-d.gm,q=d.lk-d.hm;d.F.Pa&&(n=parseFloat(d.L.css("left")));d.F.$a&&(n=parseFloat(d.L.css("left")));if(!k||1>k){k=1;}for(var t=0;t<f;t++){var r=jQuery(d.pages[h+t].V),x=r.get(0).getBoundingClientRect(),r=x.right<d.L.width()?x.right-(0<x.left?x.left:0):d.L.width()-(0<x.left?x.left:0),l=l+(0<r?r:0);}for(t=0;t<f;t++){var h=h+t,r=jQuery(d.pages[h].V),x=r.get(0).getBoundingClientRect(),C=0<x.left?x.left:0+p,v=0<x.top?x.top:0+q,r=l,w=x.bottom<d.L.height()?x.bottom-(0<x.top?x.top:0):d.L.height()-(0<x.top?x.top:0),u=d.getPage(h);jQuery(c).data("needs-overlay",f);0==t&&(jQuery(c).css({left:C+"px",top:v+"px","z-index":49,display:"block"}),g.clearRect(0,0,c.width,c.height),c.width=r+n,c.height=w,1<k&&(c.width=(r+n)*k,c.height=w*k,jQuery(c).css({width:c.width/k+"px",height:c.height/k+"px"})));r=0>x.left?x.left*k:0;C=0>x.top?x.top*k:0;1<f&&0<t&&0<x.left&&(r+=x.left*k,v=jQuery(d.pages[h-1].V),0<v.length&&(v=v.get(0).getBoundingClientRect(),0<v.left&&(r-=v.left*k)));u.Td(c,0,x.width*k,r,C).then(function(){if(d.F.Z[h]){g.save();g.globalCompositeOperation="destination-out";g.beginPath();for(var c=x.width/(u.mg()*u.La)*k,l=0;l<d.F.Z[h].length;l++){"video"==d.F.Z[h][l].type&&g.rect(d.F.Z[h][l].Fj*c,d.F.Z[h][l].Gj*c,d.F.Z[h][l].width*c,d.F.Z[h][l].height*c),"image"==d.F.Z[h][l].type&&g.rect(d.F.Z[h][l].ih*c,d.F.Z[h][l].jh*c,d.F.Z[h][l].width*c,d.F.Z[h][l].height*c);}g.closePath();g.fill();g.restore();}u.Mk=e;t==f-1&&requestAnim(function(){jQuery(".flowpaper_flipview_canvas").rc();},50);});}}}};W.prototype.lo=function(c,d){var e=this;c=parseInt(c);e.F.Yd=d;e.F.renderer.he&&e.Ze(c);1!=this.F.scale?e.Oa(1,!0,function(){e.F.turn("page",c);}):e.F.turn("page",c);};W.prototype.Ci=function(){return(this.L.width()-this.kd())/2;};W.prototype.kd=function(){var c=this.fh(0),c=c.ma/c.za;return Math.floor(this.Ve()*(this.F.I.Ea?1:2)*c);};W.prototype.ld=function(){if("FlipView"==this.F.H){return 0<this.width?this.width:this.width=this.M(this.J).width();}};W.prototype.Cf=function(){if("FlipView"==this.F.H){return 0<this.height?this.height:this.height=this.M(this.J).height();}};f.prototype={Ze:function(c,d){for(var e=d-10;e<d+10;e++){0<e&&e+1<c.F.getTotalPages()+1&&!c.getPage(e).initialized&&(c.getPage(e).Xa=!0,c.F.renderer.Jd(c.getPage(e)),c.getPage(e).Xa=!1);}},jc:function(c){null!=c.Ud&&(window.clearTimeout(c.Ud),c.Ud=null);var d=1<c.R?c.R-1:c.R;if(!c.F.renderer.sb||c.F.renderer.rb&&1==c.F.scale){1<=c.R?(c.pages[d-1].load(function(){1<c.R&&c.pages[d]&&c.pages[d].load(function(){c.pages[d].Da();for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),h=0;h<c.document.numPages;h++){c.Sa(h)&&(c.pages[h].Hc(e,g,!0)?(c.pages[h].Xa=!0,c.pages[h].load(function(){}),c.pages[h].Da()):c.pages[h].unload());}});}),c.pages[d-1].Da()):c.pages[d]&&c.pages[d].load(function(){c.pages[d].Da();for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),h=0;h<c.document.numPages;h++){c.Sa(h)&&(c.pages[h].Hc(e,g,!0)?(c.pages[h].Xa=!0,c.pages[h].load(function(){}),c.pages[h].Da()):c.pages[h].unload());}});}else{1<c.R?(c.pages[d-1]&&c.pages[d-1].load(function(){}),c.pages[d-0]&&c.pages[d-0].load(function(){})):c.pages[d]&&c.pages[d].load(function(){});for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),h=0;h<c.document.numPages;h++){c.Sa(h)&&(c.pages[h].Hc(e,g,!0)?(c.pages[h].Xa=!0,c.pages[h].load(function(){}),c.pages[h].Da()):c.pages[h].unload());}}},Yi:function(c){1.1<c.F.scale&&c.F.ra&&(c.F.ra.data().opts.cornerDragging=!1);c.ri=setTimeout(function(){c.F.pages&&"FlipView"==c.F.H&&(1.1<c.F.scale||!c.F.ra||!c.F.ra.data().opts||(c.F.ra.data().opts.cornerDragging=!0),c.uh=!1);},1000);},Mb:function(c){return"FlipView"==c.F.H;},Oa:function(c,d,e,g,h){jQuery(c).trigger("onScaleChanged");1<e&&0<jQuery("#"+c.Nb).length&&jQuery("#"+c.Nb).css("z-index",-1);1<e&&(jQuery(".flowpaper_shadow").hide(),c.F.T&&c.F.T.hide());if("FlipView"==c.F.H&&(e>=1+c.F.document.ZoomInterval?jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomIn").addClass("flowpaper_page_zoomOut"):jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomOut").addClass("flowpaper_page_zoomIn"),jQuery(c.J).data().totalPages)){var f=c.fh(0),l=f.ma/f.za,f=c.Ve()*e,l=2*f*l;c.F.renderer.qa&&0==g.vf&&setTimeout(function(){c.animating=!1;},50);if(!g||!c.Mb()||1<d&&!c.M(c.J+"_parent").Hf()){if(c.M(c.J+"_parent").Hf()&&e>=1+c.F.document.ZoomInterval&&((d=c.Fi())?(c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.M(c.J+"_parent").transition({x:0,y:0,scale:1},0),g.Ob=d.left,g.oc=d.top,g.Vc=!0):(k=1!=c.F.da||c.F.I.Ea?0:-(c.kd()/4),c.M(c.J+"_parent").transition({x:k,y:c.F.nc,scale:1},0))),c.M(c.J).Hf()&&c.M(c.J).transition({x:0,y:0,scale:1},0),!c.animating){c.wh||(c.wh=c.F.ra.width(),c.cp=c.F.ra.height());1==e&&c.wh?(turnwidth=c.wh,turnheight=c.cp):(turnwidth=l-(c.M(c.J+"_panelLeft").width()+c.M(c.J+"_panelRight").width()+40),turnheight=f);c.M(c.J).css({width:l,height:f});c.F.ra.turn("size",turnwidth,turnheight,!1);e>=1+c.F.document.ZoomInterval?(g.Vc||eb.platform.touchonlydevice)&&requestAnim(function(){c.L.scrollTo({left:jQuery(c.L).scrollLeft()+g.Ob/e+"px",top:jQuery(c.L).scrollTop()+g.oc/e+"px"});},500):c.He();for(f=0;f<c.document.numPages;f++){c.Sa(f)&&(c.pages[f].oa=!1);}1<e?c.F.ra.turn("setCornerDragging",!1):(c.M(c.J+"_panelLeft").show(),c.M(c.J+"_panelRight").show(),c.F.ra.turn("setCornerDragging",!0),jQuery(".flowpaper_shadow").show());c.ed();c.cd();setTimeout(function(){null!=h&&h();},200);}}else{if(!c.animating||!c.ck){c.animating=!0;c.ck=g.Vc;jQuery(".flowpaper_flipview_canvas").xd();jQuery(".flowpaper_flipview_canvas_highres").rc();c.F.renderer.qa&&jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc();jQuery("#"+c.Nb).css("z-index",-1);jQuery(c).trigger("onScaleChanged");f=400;d="snap";c.F.document.ZoomTime&&(f=1000*parseFloat(c.F.document.ZoomTime));c.F.document.ZoomTransition&&("easeOut"==c.F.document.ZoomTransition&&(d="snap"),"easeIn"==c.F.document.ZoomTransition&&(d="ease-in",f/=2));g&&g.Ob&&g.oc?(g.Vc&&(g.Ob=g.Ob+c.Ci()),g.Vc||eb.platform.touchonlydevice?(c.Ad=g.Ob,c.Bd=g.oc):(l=c.M(c.J+"_parent").css("transformOrigin").split(" "),2==l.length?(l[0]=l[0].replace("px",""),l[1]=l[1].replace("px",""),c.Ad=parseFloat(l[0]),c.Bd=parseFloat(l[1])):(c.Ad=g.Ob,c.Bd=g.oc),c.Dl=!0),g.vf&&(f=g.vf)):(c.Ad=0,c.Bd=0);c.F.renderer.sb&&c.F.renderer.mb&&1==e&&(l=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Fc(c.pages[l-1]),c.F.renderer.Fc(c.pages[l]));"undefined"!=g.vf&&(f=g.vf);e>=1+c.F.document.ZoomInterval?("preserve-3d"==c.M(c.J+"_parent").css("transform-style")&&(f=0),(g.Vc||eb.platform.touchonlydevice)&&c.M(c.J+"_parent").css({transformOrigin:c.Ad+"px "+c.Bd+"px"}),c.F.ra.turn("setCornerDragging",!1)):(c.M(c.J).transition({x:0,y:0},0),c.F.ra.turn("setCornerDragging",!0));var k=1!=c.F.da||c.F.I.Ea?0:-(c.kd()/4);c.M(c.J+"_parent").transition({x:k,y:c.F.nc,scale:e},f,d,function(){c.M(c.J+"_parent").css("will-change","");c.Cd();c.cd();null!=c.ve&&(window.clearTimeout(c.ve),c.ve=null);c.ve=setTimeout(function(){if(!c.F.renderer.qa){for(var d=0;d<c.document.numPages;d++){c.pages[d].oa=!1;}}c.rd=0;c.se=0;c.ed();c.animating=!1;c.ck=!1;},50);1==e&&c.M(c.J+"_parent").css("-webkit-transform-origin:","");1==e&&(jQuery(".flowpaper_shadow").show(),jQuery(".flowpaper_zine_page_left").fadeIn(),jQuery(".flowpaper_zine_page_right").fadeIn());null!=h&&h();});}}}},resize:function(c,d,e,g){c.width=-1;c.height=-1;jQuery(".flowpaper_pageword_"+c.P+", .flowpaper_interactiveobject_"+c.P).remove();if("FlipView"==c.F.H){c.F.renderer.qa&&c.F.renderer.El&&(jQuery(".flowpaper_flipview_page").css({height:"100%",width:"100%"}),c.F.renderer.El=!1);1!=c.F.da||c.F.I.Ea?c.F.I.Ea||jQuery(c.J+"_parent").transition({x:0,y:c.F.nc},0,"snap",function(){}):jQuery(c.J+"_parent").transition({x:-(c.kd()/4),y:c.F.nc},0,"snap",function(){});var h=c.Ve(),f=c.kd();c.M(c.J+"_parent").css({width:d,height:h});c.jd=f;c.eg=h;d=c.Ci();c.F.ra&&c.F.ra.turn("size",f,h,!1);c.M(c.J+"_panelLeft").css({"margin-left":d-c.ga,width:c.ga,height:h-30});c.M(c.J+"_arrowleft").css({top:(h-30)/2+"px"});c.M(c.J+"_arrowright").css({top:(h-30)/2+"px"});c.M(c.J+"_panelRight").css({width:c.ga,height:h-30});c.F.PreviewMode?(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide()):(jQuery(c.J+"_arrowleftbottom").show(),jQuery(c.J+"_arrowleftbottommarker").show(),jQuery(c.J+"_arrowrightbottom").show(),jQuery(c.J+"_arrowrightbottommarker").show());c.wh=null;c.Yr=null;c.Cd();}jQuery(".flowpaper_flipview_page").addClass("flowpaper_redraw");for(d=0;d<c.document.numPages;d++){c.Sa(d)&&c.pages[d].Oa();}"FlipView"==c.F.H?(window.clearTimeout(c.pp),c.pp=setTimeout(function(){c.Al&&c.Al();for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].oa=!1,null!=c.F.renderer.resize&&c.F.renderer.resize(c.F.renderer,c.pages[d]));}c.ed();jQuery(c.F).trigger("onResizeCompleted");c.F.I.tb&&jQuery("#"+c.pages.container+"_webglcanvas").css({width:f,height:h});g&&g();},300)):g&&g();},me:function(c,d){if(c.F.PreviewMode){c.F.openFullScreen();}else{if(!c.ee()){var e=c.document.TouchZoomInterval?c.F.scale+c.document.TouchZoomInterval:2.5;"FlipView"==c.F.H?d?c.Oa(e,{Ob:jQuery(c.J+"_parent").width()/2,oc:jQuery(c.J+"_parent").height()/2}):c.Oa(e,{Ob:c.Zc,oc:c.$c}):c.Oa(1);c.cd();}}},md:function(c,d){"FlipView"==c.F.H?c.Oa(1,!0,d):c.Oa(window.FitHeightScale);c.cd();},Xi:function(c){"FlipView"==c.F.H&&(this.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){c.Be=!0;setTimeout(function(){c.Be=!1;},3800);c.Xf=null;null==c.ba&&(c.F.ra.turn("cornerActivated")||c.animating||1==c.F.scale&&c.next());},wipeRight:function(){c.Be=!0;setTimeout(function(){c.Be=!1;},3800);c.Xf=null;c.F.ra.turn("cornerActivated")||c.animating||null==c.ba&&1==c.F.scale&&c.previous();},preventDefaultEvents:!0,min_move_x:100,min_move_y:100}));},fk:function(c){if(c.F.Wb||!eb.platform.touchdevice||c.F.I.lg){c.F.Wb?(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Mi);d.preventDefault();d.stopImmediatePropagation();},null,300,!0)):(d=c.M(c.J),d.doubletap(function(c){c.preventDefault();},null,300));}else{var d=c.M(c.J);d.doubletap(function(d){c.Xf=null;if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?1!=c.F.scale||"FlipView"!=c.F.H||c.uh?"FlipView"==c.F.H&&1<=c.F.scale&&!c.bj?c.md():"TwoPage"==c.F.H&&1==c.F.scale&&c.md():c.me():c.me(),d.preventDefault(),c.bj=!1,c.uh=!1;}},null,300);}},ji:function(c,d){if("FlipView"==c.F.H){c.F.I.xf&&(c.ga=c.F.I.xf);var e=c.Ve(),g=c.kd(),h=c.Ci(),f=c.F.I.ff&&(430<g||c.F.PreviewMode||c.F.I.Ea),l=f?0:h,h=h-c.ga,k=c.F.I.kb?c.F.I.kb:"#555555",n=c.F.I.ob?c.F.I.ob:"#AAAAAA",p=c.F.I.Na.height();c.Db=c.F.Rb&&!c.F.I.cb||0==p?(c.L.height()-e)/2:0;c.Db=0==c.Db&&c.F.ab&&!c.F.Rb&&0<p&&!c.F.I.cb?(c.L.height()-e)/2-p:c.Db;c.jd=g;c.eg=e;d.append("<div id='"+c.container+"_parent' style='white-space:nowrap;width:100%;height:"+e+"px;"+(!c.F.ab&&!c.F.I.cb||c.F.I.nf?"margin-top:2.5%;":0<c.Db?"padding-top:"+c.Db+"px;":"")+"z-index:10"+(!eb.browser.mozilla||!eb.platform.mac||eb.platform.mac&&(18>parseFloat(eb.browser.version)||33<parseFloat(eb.browser.version))?"":";transform-style:preserve-3d;")+"'>"+(f?"<div id='"+c.container+"_panelLeft' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;position:relative;float:left;background-color:"+k+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ga+"px;margin-left:"+h+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ga-(c.ga-0.4*c.ga))/2+"px;top:"+(e/2-c.ga)+"px' id='"+c.container+"_arrowleft' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ga-(c.ga-0.55*c.ga))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottom' class='flowpaper_arrow flowpaper_arrow_start'></div><div style='position:absolute;left:"+(c.ga-0.8*c.ga)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottommarker' class='flowpaper_arrow flowpaper_arrow_start'></div></div>":"")+"<div id='"+c.container+"' style='float:left;position:relative;height:"+e+"px;width:"+g+"px;margin-left:"+l+"px;z-index:10;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;' class='flowpaper_twopage_container flowpaper_hidden'></div>"+(f?"<div id='"+c.container+"_panelRight' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;position:relative;display:inline-block;background-color:"+k+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ga+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ga-(c.ga-0.4*c.ga))/2+"px;top:"+(e/2-c.ga)+"px' id='"+c.container+"_arrowright' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ga-(c.ga-0.55*c.ga))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottom' class='flowpaper_arrow flowpaper_arrow_end'></div><div style='position:absolute;left:"+((c.ga-(c.ga-0.55*c.ga))/2+c.ga-0.55*c.ga)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottommarker' class='flowpaper_arrow flowpaper_arrow_end'></div></div>":"")+"</div>");g=R(k);c.F.renderer.qa&&(c.F.O.append("<canvas id='"+c.container+"_glyphcanvas' style='pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;' class='flowpaper_glyphcanvas'></canvas>"),eb.browser.msie&&11>eb.browser.version&&PointerEventsPolyfill.initialize({selector:"#"+c.container+"_glyphcanvas",mouseEvents:["click","dblclick","mousedown","mouseup","mousemove"]}),jQuery(c.F.renderer).bind("onTextDataUpdated",function(d,e){for(var g=e+12,h=e-2;h<g;h++){var f=c.getPage(h);if(f){var l=f?document.getElementById(f.aa+"_canvas"):null;if(l){var k=f.wa(),m=f.Ha(),p=1.5<c.F.renderer.Ya?c.F.renderer.Ya:1.5;l.width!=k*p&&(jQuery(l).data("needs-overlay",1),l.width=k*p,l.height=m*p,f.Td(l).then(function(){}));}}}}));jQuery(c.J+"_panelLeft").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.te+")");jQuery(c.J+"_panelRight").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.te+")");jQuery(c.J+"_arrowleft").we(c.ga-0.4*c.ga,n);jQuery(c.J+"_arrowright").vd(c.ga-0.4*c.ga,n);c.F.I.og&&!c.F.Wb&&(jQuery(c.J+"_arrowleftbottom").we(c.ga-0.55*c.ga,n),jQuery(c.J+"_arrowleftbottommarker").fj(c.ga-0.55*c.ga,n,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").vd(c.ga-0.55*c.ga,n),jQuery(c.J+"_arrowrightbottommarker").gj(c.ga-0.55*c.ga,n,jQuery(c.J+"_arrowrightbottom")));c.F.Wb&&(jQuery(c.J+"_arrowleftbottom").we(c.ga-0.55*c.ga,n),jQuery(c.J+"_arrowleftbottommarker").fj(c.ga-0.55*c.ga,n,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").vd(c.ga-0.55*c.ga,n),jQuery(c.J+"_arrowrightbottommarker").gj(c.ga-0.55*c.ga,n,jQuery(c.J+"_arrowrightbottom")),c.F.I.og||(jQuery(c.J+"_arrowleftbottom").css("opacity",0),jQuery(c.J+"_arrowleftbottommarker").css("opacity",0),jQuery(c.J+"_arrowrightbottom").css("opacity",0),jQuery(c.J+"_arrowrightbottommarker").css("opacity",0)));!c.F.I.Ea||c.F.Se||c.F.ab||d.css("top",(d.height()-e)/2.1+"px");c.F.I.ff||(jQuery(c.J+"_panelLeft").attr("id",c.J+"_panelLeft_disabled").css("visibility","none"),jQuery(c.J+"_panelRight").attr("id",c.J+"_panelRight_disabled").css("visibility","none"));c.F.PreviewMode&&(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide());jQuery(c.J).on(c.F.I.tf?"mouseup":"mousedown",function(d){if(jQuery(d.target).hasClass("flowpaper_mark")){return !1;}var e=!0;c.F.I.tf&&(c.bm(),null==c.wb||d.pageX&&d.pageY&&d.pageX<=c.wb+2&&d.pageX>=c.wb-2&&d.pageY<=c.sc+2&&d.pageY>=c.sc-2||(e=!1),c.wb=null,c.sc=null,c.Kf&&(eb.browser.safari||c.F.renderer.qa)&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide(),c.Kf=!1,c.Cd()));if((!c.F.I.tf||e)&&!c.F.I.lg){var g=!1,e=0<jQuery(d.target).parents(".flowpaper_page").children().find(".flowpaper_zine_page_left, .flowpaper_zine_page_left_noshadow").length;c.Uf=e?c.F.da-2:c.F.da-1;jQuery(d.target).hasClass("flowpaper_interactiveobject_"+c.P)&&(g=!0);if(c.F.ra.turn("cornerActivated")||c.animating||jQuery(d.target).hasClass("turn-page-wrapper")||jQuery(d.target).hasClass("flowpaper_shadow")&&jQuery(d.target).Hf()){return;}if(c.F.PreviewMode&&"A"!=d.target.tagName){c.F.openFullScreen();return;}eb.platform.mobilepreview||c.ee()||"transform"==c.M(c.J+"_parent").css("will-change")||(c.F.Wb?(clearTimeout(c.Mi),c.Mi=setTimeout(function(){c.Mb()&&c.M(c.J+"_parent").css("will-change","transform");var e=jQuery(c.J).Gf(d.pageX,d.pageY);g||c.F.mc||1!=c.F.scale?!g&&!c.F.mc&&1<c.F.scale?c.F.Zoom(1,{Vc:!0,Ob:e.x,oc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{Vc:!0,Ob:e.x,oc:e.y});},350)):(c.Mb()&&c.M(c.J+"_parent").css("will-change","transform"),requestAnim(function(){var e=jQuery(c.J).Gf(d.pageX,d.pageY);g||c.F.mc||1!=c.F.scale?!g&&!c.F.mc&&1<c.F.scale?c.F.Zoom(1,{Vc:!0,Ob:e.x,oc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{Vc:!0,Ob:e.x,oc:e.y});},50)));var h={};jQuery(jQuery(d.target).attr("class").split(" ")).each(function(){""!==this&&(h[this]=this);});for(class_name in h){0==class_name.indexOf("gotoPage")&&c.gotoPage(parseInt(class_name.substr(class_name.indexOf("_")+1)));}}if(c.F.renderer.sb&&c.F.renderer.mb&&1<c.F.scale){var f=1<c.R?c.R-1:c.R;setTimeout(function(){1<c.F.scale?(1<c.R&&c.F.renderer.Nc(c.pages[f-1]),c.F.renderer.Nc(c.pages[f])):(1<c.R&&c.F.renderer.Fc(c.pages[f-1]),c.F.renderer.Fc(c.pages[f]));},500);}});jQuery(c.J+"_parent").on("mousemove",function(d){if(1<c.F.scale&&!c.F.mc){if(c.F.I.tf&&"down"==c.F.rh){c.wb||(c.wb=d.pageX,c.sc=d.pageY),c.Kf||!eb.browser.safari&&!c.F.renderer.qa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc(),c.Kf=!0),eb.platform.touchdevice||c.M(c.J+"_parent").Hf()?(c.Dl&&(c.bm(),c.Dl=!1),c.mk(d.pageX,d.pageY)):(c.L.scrollTo({left:jQuery(c.L).scrollLeft()+(c.wb-d.pageX)+"px",top:jQuery(c.L).scrollTop()+(c.sc-d.pageY)+"px"},0,{axis:"xy"}),c.wb=d.pageX+3,c.sc=d.pageY+3);}else{if(!c.F.I.tf){var e=c.L.Gf(d.pageX,d.pageY);eb.platform.touchdevice||c.M(c.J+"_parent").Hf()||c.L.scrollTo({left:d.pageX+"px",top:d.pageY+"px"},0,{axis:"xy"});d=e.x/jQuery(c.J+"_parent").width();e=e.y/jQuery(c.J+"_parent").height();requestAnim(function(){c.Cd();},10);c.Ug((jQuery(c.L).width()+150)*d-20,(jQuery(c.L).height()+150)*e-250);}}c.F.renderer.sb&&c.F.renderer.mb&&!c.F.I.tf&&(e=1<c.R?c.R-1:c.R,1<c.F.scale?(1<c.R&&c.F.renderer.Nc(c.pages[e-1]),c.F.renderer.Nc(c.pages[e])):(1<c.R&&c.F.renderer.Fc(c.pages[e-1]),c.F.renderer.Fc(c.pages[e])));}});jQuery(c.J+"_parent").on("touchmove",function(d){if(!eb.platform.ios&&2==d.originalEvent.touches.length){d.preventDefault&&d.preventDefault();d.returnValue=!1;if(c.Wk){return !1;}var e=Math.sqrt((d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)*(d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)+(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)*(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)),e=2*e;if(null==c.ba){c.gb=c.F.scale,c.Rf=e;}else{c.ba==c.gb&&c.F.ra.turn("setCornerDragging",!1);if(null==c.gb||null==c.Rf){return;}1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Kd&&!c.F.renderer.qa&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=3);var g=0;1!=c.F.da||c.F.I.Ea||(g=-(c.kd()/4));c.Wk=!0;c.M(c.J+"_parent").transition({x:g,y:c.F.nc,scale:c.ba},0,"ease",function(){c.Wk=!1;});}c.ba=c.gb+(e-c.Rf)/jQuery(c.J+"_parent").width();}if(1<c.F.scale||null!=c.ba&&1<c.ba){e=d.originalEvent.touches[0]||d.originalEvent.changedTouches[0],eb.platform.ios||2!=d.originalEvent.touches.length?c.wb||(c.wb=e.pageX,c.sc=e.pageY):c.wb||(g=d.originalEvent.touches[1]||d.originalEvent.changedTouches[1],g.pageX>e.pageX?(c.wb=e.pageX+(g.pageX-e.pageX)/2,c.sc=e.pageY+(g.pageY-e.pageY)/2):(c.wb=g.pageX+(e.pageX-g.pageX)/2,c.sc=g.pageY+(e.pageY-g.pageY)/2)),c.Kf||c.F.renderer.qa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),c.Kf=!0),(1==d.originalEvent.touches.length||eb.platform.ios)&&c.mk(e.pageX,e.pageY),eb.platform.ios?(jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc(),jQuery(".flowpaper_flipview_canvas").xd()):c.Cd(2==d.originalEvent.touches.length&&null!=c.ba?c.ba:null),d.preventDefault();}});jQuery(c.J+"_parent, "+c.J).on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(){c.Xf=(new Date).getTime();});jQuery(c.J+"_parent").on("mouseup touchend",function(d){!c.F.Rb||null!=c.ba||c.Be||c.F.ra.turn("cornerActivated")||c.animating?c.F.Rb&&0==c.F.I.Na.position().top&&c.F.I.Na.animate({opacity:0,top:"-"+c.F.I.Na.height()+"px"},300):setTimeout(function(){!jQuery(d.target).hasClass("flowpaper_arrow")&&1==c.F.scale&&c.Xf&&c.Xf>(new Date).getTime()-1000?(jQuery(c.F.I.Na).find(".flowpaper_txtSearch").trigger("blur"),0==c.F.I.Na.position().top?c.F.I.Na.animate({opacity:0,top:"-"+c.F.I.Na.height()+"px"},300):c.F.I.Na.animate({opacity:1,top:"0px"},300)):c.Xf=null;},600);if(null!=c.gb){c.bj=c.gb<c.ba;c.gb=null;c.Rf=null;c.wb=null;c.sc=null;1.1>c.ba&&(c.ba=1);c.F.scale=c.ba;for(var e=0;e<c.document.numPages;e++){c.Sa(e)&&(c.pages[e].scale=c.F.scale,c.pages[e].Oa());}c.Cd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ra.turn("setCornerDragging",!0),c.F.I.cb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)));1<c.F.scale&&c.F.I.cb&&c.F.T.animate({opacity:0},0,function(){c.F.T.hide();});for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].oa=!1);}c.ed();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}1<c.F.scale?(e=c.M(c.J).css("transform")+"",null!=e&&(e=e.replace("translate",""),e=e.replace("(",""),e=e.replace(")",""),e=e.replace("px",""),e=e.split(","),c.rd=parseFloat(e[0]),c.se=parseFloat(e[1]),isNaN(c.rd)&&(c.rd=0,c.se=0)),c.wb&&1.9<c.F.scale&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide()),c.F.renderer.sb&&c.F.renderer.mb&&1.9<c.F.scale&&(e=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Nc(c.pages[e-1]),c.F.renderer.Nc(c.pages[e])),null!=c.wb&&c.Cd(null!=c.ba?c.ba:c.F.scale)):(c.rd=0,c.se=0);c.Kf=!1;c.wb=null;c.sc=null;});jQuery(c.J+"_parent").on("gesturechange",function(d){d.preventDefault();c.F.I.lg||(null==c.gb&&(c.gb=d.originalEvent.scale),c.F.ra.turn("setCornerDragging",!1),c.ba=c.F.scale+(c.gb>c.F.scale?(d.originalEvent.scale-c.gb)/2:4*(d.originalEvent.scale-c.gb)),1>c.ba&&(c.ba=1),3<c.ba&&!eb.platform.Kd&&!c.F.renderer.qa&&(c.ba=3),c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=4),!c.F.renderer.mb&&3<c.ba&&(eb.platform.ipad||eb.platform.iphone)&&!c.F.renderer.qa&&(c.ba=3),d=1!=c.F.da||c.F.I.Ea?0:-(c.kd()/4),c.M(c.J+"_parent").transition({x:d,y:c.F.nc,scale:c.ba},0,"ease",function(){}));});jQuery(c.J+"_parent").on("gestureend",function(d){d.preventDefault();if(!c.F.I.lg){c.uh=c.ba<c.F.scale||c.uh;c.F.scale=c.ba;for(d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Oa());}c.Cd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ra.turn("setCornerDragging",!0));for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].oa=!1);}c.ed();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}});jQuery(c.J+"_parent").on("mousewheel",function(d){if(!(c.ee()||c.F.PreviewMode||(c.F.ra.turn("cornerActivated")&&c.F.ra.turn("stop"),c.F.I.lg||c.F.I.Hn))){d.preventDefault&&d.preventDefault();d.returnValue=!1;c.Ed||(c.Ed=0);0<d.deltaY?c.F.scale+c.Ed+2*c.F.document.ZoomInterval<c.F.document.MaxZoomSize&&(c.Ed=c.Ed+2*c.F.document.ZoomInterval):c.Ed=1.2<c.F.scale+c.Ed-3*c.F.document.ZoomInterval?c.Ed-3*c.F.document.ZoomInterval:-(c.F.scale-1);null!=c.ve&&(window.clearTimeout(c.ve),c.ve=null);1.1<=c.F.scale+c.Ed?(c.F.I.cb&&c.F.T.animate({opacity:0},0,function(){c.F.T.hide();}),c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),c.M(c.J+"_panelLeft").fadeTo("fast",0),c.M(c.J+"_panelRight").fadeTo("fast",0),c.F.ra.turn("setCornerDragging",!1)):(c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),1<c.R?c.M(c.J+"_panelLeft").fadeTo("fast",1):c.M(c.J+"_panelLeft").fadeTo("fast",0),c.F.da<c.F.getTotalPages()&&c.M(c.J+"_panelRight").fadeTo("fast",1),c.M(c.J).transition({x:0,y:0},0),c.F.I.cb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)),c.wb=null,c.sc=null,c.rd=0,c.se=0);c.bd=c.F.scale+c.Ed;1>c.bd&&(c.bd=1);if(!(eb.browser.mozilla&&30>eb.browser.version)&&0<jQuery(c.J).find(d.target).length){if(1==c.bd){c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0);}else{if(1==c.F.scale&&c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.F.ra.turn("setCornerDragging",!1),0<jQuery(c.J).has(d.target).length){d=jQuery(c.J+"_parent").Gf(d.pageX,d.pageY);var e=c.M(c.J+"_parent").css("transformOrigin").split(" ");2<=e.length?(e[0]=e[0].replace("px",""),e[1]=e[1].replace("px",""),c.Ad=parseFloat(e[0]),c.Bd=parseFloat(e[1]),0==c.Ad&&(c.Ad=d.x),0==c.Bd&&(c.Bd=d.y)):(c.Ad=d.x,c.Bd=d.y);c.M(c.J+"_parent").transition({transformOrigin:c.Ad+"px "+c.Bd+"px"},0,null,function(){if(eb.platform.touchonlydevice){c.F.scale=c.bd;for(var d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].scale=c.bd,c.pages[d].Oa());}c.Cd();}});}}}jQuery(".flowpaper_flipview_canvas").xd();jQuery(".flowpaper_flipview_canvas_highres").rc();jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc();c.F.ra.turn("setCornerDragging",!1);c.M(c.J+"_parent").transition({scale:c.bd},0,"ease",function(){window.clearTimeout(c.ve);c.ve=setTimeout(function(){c.F.scale==c.bd&&c.Cd();c.F.scale=c.bd;for(var d=c.Ed=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Oa());}1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ra.turn("setCornerDragging",!0));for(d=0;d<c.document.numPages;d++){c.Sa(d)&&(c.pages[d].oa=!1);}c.ed();c.bd=null;jQuery(c).trigger("onScaleChanged");jQuery(c.F.K).trigger("onScaleChanged",c.F.scale/c.F.document.MaxZoomSize);},150);});}});jQuery(c.J+"_arrowleft, "+c.J+"_panelLeft").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){if(c.F.I.ff){return jQuery(d.target).hasClass("flowpaper_arrow_start")?c.gotoPage(1):c.previous(),!1;}});jQuery(c.J+"_arrowright, "+c.J+"_panelRight").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){jQuery(d.target).hasClass("flowpaper_arrow_end")?c.gotoPage(c.F.getTotalPages()):c.next();return !1;});jQuery(d).css("overflow-y","hidden");jQuery(d).css("overflow-x","hidden");jQuery(d).css("-webkit-overflow-scrolling","hidden");}},Sh:function(c,d){c.ol=d.append("<div id='"+c.container+"_play' onclick='$FlowPaper(\""+c.P+"\").openFullScreen()' class='abc' style='position:absolute;left:"+(d.width()/2-20)+"px;top:"+(c.eg/2-25)+"px;width:"+c.jd+"px;height:"+c.eg+"px;z-index:100;'></div>");jQuery("#"+c.container+"_play").vd(50,"#AAAAAA",!0);},hp:function(c,d){d.find("#"+c.container+"_play").remove();c.ol=null;},previous:function(c){if("FlipView"==c.F.H){var d=c.R-1;c.F.renderer.he&&c.Ze(d);1!=c.F.scale?c.Oa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("previous");}):c.F.turn("previous");}},next:function(c){if("FlipView"==c.F.H){var d=c.R;if(d<c.F.getTotalPages()||d==c.F.getTotalPages()&&c.F.I.Ea){d++,c.F.renderer.he&&c.Ze(d),1!=c.F.scale?c.Oa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("next");}):c.F.turn("next");}}},Ug:function(c,d,e){if(!c.animating){var g=c.L.width(),h=c.L.height(),f=null==c.bd?c.F.scale:c.bd;"FlipView"==c.F.H&&1<f&&!eb.browser.safari?c.M(c.J).transition({x:-c.co(d,c.F.scale),y:-c.eo(e)},0):"FlipView"==c.F.H&&1<f&&eb.browser.safari&&jQuery(".flowpaper_viewer").scrollTo({top:0.9*e/h*100+"%",left:d/g*100+"%"},0,{axis:"xy"});}},Fi:function(c){c=c.M(c.J+"_parent").css("transformOrigin")+"";return null!=c?(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.split(" "),1<c.length?{left:parseFloat(c[0].replace("px","")),top:parseFloat(c[1].replace("px",""))}:null):null;},He:function(c){!eb.platform.touchdevice&&"FlipView"==c.F.H&&1<c.F.scale?jQuery(".flowpaper_viewer").scrollTo({left:"50%"},0,{axis:"x"}):eb.platform.touchdevice||"FlipView"!=c.F.H||1!=c.F.scale||c.Mb()||jQuery(".flowpaper_viewer").scrollTo({left:"0%",top:"0%"},0,{axis:"xy"});}};return f;}(),X=window.Kq=X||{},Y=X;Y.Ih={PI:Math.PI,Ir:1/Math.PI,mo:0.5*Math.PI,On:2*Math.PI,ms:Math.PI/180,ls:180/Math.PI};Y.ae={NONE:0,LEFT:-1,RIGHT:1,X:1,Y:2,Ph:4,Sq:0,Tq:1,Uq:2};Y.qm="undefined"!==typeof Float32Array?Float32Array:Array;Y.Cq="undefined"!==typeof Float64Array?Float64Array:Array;Y.Dq="undefined"!==typeof Int8Array?Int8Array:Array;Y.yq="undefined"!==typeof Int16Array?Int16Array:Array;Y.Aq="undefined"!==typeof Int32Array?Int32Array:Array;Y.Eq="undefined"!==typeof Uint8Array?Uint8Array:Array;Y.zq="undefined"!==typeof Uint16Array?Uint16Array:Array;Y.Bq="undefined"!==typeof Uint32Array?Uint32Array:Array;Y.Oh=Y.qm;!0;!function(f,c){var d=f.Qj=ring.create({constructor:function(d,g){this.x=d===c?0:d;this.y=g===c?0:g;},x:0,y:0,dispose:function(){this.y=this.x=null;return this;},serialize:function(){return{name:this.name,x:this.x,y:this.y};},Bb:function(c){c&&this.name===c.name&&(this.x=c.x,this.y=c.y);return this;},clone:function(){return new d(this.x,this.y);}});}(X);!function(f,c){var d=Math.sin,e=Math.cos,g=f.Qj,h=f.Em=ring.create({constructor:function(d,e,g,h){this.m11=d===c?1:d;this.m12=e===c?0:e;this.m21=g===c?0:g;this.m22=h===c?1:h;},m11:1,m12:0,m21:0,m22:1,dispose:function(){this.m22=this.m21=this.m12=this.m11=null;return this;},serialize:function(){return{name:this.name,m11:this.m11,m12:this.m12,m21:this.m21,m22:this.m22};},Bb:function(c){c&&this.name===c.name&&(this.m11=c.m11,this.m12=c.m12,this.m21=c.m21,this.m22=c.m22);return this;},reset:function(){this.m11=1;this.m21=this.m12=0;this.m22=1;return this;},rotate:function(c){var g=e(c);c=d(c);this.m11=g;this.m12=-c;this.m21=c;this.m22=g;return this;},scale:function(d,e){this.m21=this.m12=0;this.m22=this.m11=1;d!==c&&(this.m22=this.m11=d);e!==c&&(this.m22=e);return this;},multiply:function(c){var d=this.m11,e=this.m12,g=this.m21,h=this.m22,f=c.m11,t=c.m12,r=c.m21;c=c.m22;this.m11=d*f+e*r;this.m12=d*t+e*c;this.m21=g*f+h*r;this.m22=g*t+h*c;return this;},ns:function(c){var d=c.x;c=c.y;return new g(this.m11*d+this.m12*c,this.m21*d+this.m22*c);},Yl:function(c){var d=c.x,e=c.y;c.x=this.m11*d+this.m12*e;c.y=this.m21*d+this.m22*e;return c;},clone:function(){return new h(this.m11,this.m12,this.m21,this.m22);}});}(X);!function(f,c){var d=Math.sqrt,e=f.Oh,g=f.Vector3=ring.create({constructor:function(d,g,f){d&&d.length?this.ca=new e([d[0],d[1],d[2]]):(d=d===c?0:d,g=g===c?0:g,f=f===c?0:f,this.ca=new e([d,g,f]));},ca:null,dispose:function(){this.ca=null;return this;},serialize:function(){return{name:this.name,ca:this.ca};},Bb:function(c){c&&this.name===c.name&&(this.ca=c.ca);return this;},Id:function(){return new e(this.ca);},Kk:function(){return this.ca;},setXYZ:function(c){this.ca=new e(c);return this;},Nl:function(c){this.ca=c;return this;},clone:function(){return new g(this.ca);},kr:function(c){var d=this.ca;c=c.ca;return d[0]==c[0]&&d[1]==c[1]&&d[2]==c[2];},Cs:function(){this.ca[0]=0;this.ca[1]=0;this.ca[2]=0;return this;},negate:function(){var c=this.ca;return new g([-c[0],-c[1],-c[2]]);},Tr:function(){var c=this.ca;c[0]=-c[0];c[1]=-c[1];c[2]=-c[2];return this;},add:function(c){var d=this.ca;c=c.ca;return new g([d[0]+c[0],d[1]+c[1],d[2]+c[2]]);},dn:function(c){var d=this.ca;c=c.ca;d[0]+=c[0];d[1]+=c[1];d[2]+=c[2];return this;},gs:function(c){var d=this.ca;c=c.ca;return new g([d[0]-c[0],d[1]-c[1],d[2]-c[2]]);},hs:function(c){var d=this.ca;c=c.ca;d[0]-=c[0];d[1]-=c[1];d[2]-=c[2];return this;},multiplyScalar:function(c){var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},Qr:function(c){var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},multiply:function(c){var d=this.ca;c=c.ca;return new g([d[0]*c[0],d[1]*c[1],d[2]*c[2]]);},Rr:function(c){var d=this.ca;c=c.ca;d[0]*=c[0];d[1]*=c[1];d[2]*=c[2];return this;},divide:function(c){c=1/c;var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},hr:function(c){c=1/c;var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},normalize:function(){var c=this.ca,e=c[0],f=c[1],c=c[2],k=e*e+f*f+c*c;0<k&&(k=1/d(k),e*=k,f*=k,c*=k);return new g([e,f,c]);},Po:function(){var c=this.ca,e=c[0],g=c[1],f=c[2],n=e*e+g*g+f*f;0<n&&(n=1/d(n),e*=n,g*=n,f*=n);c[0]=e;c[1]=g;c[2]=f;return this;},ur:function(){var c=this.ca,e=c[0],g=c[1],c=c[2];return d(e*e+g*g+c*c);},bs:function(c){this.Po();var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},ir:function(c){var d=this.ca;c=c.ca;return d[0]*c[0]+d[1]*c[1]+d[2]*c[2];},$q:function(c){var d=this.ca,e=c.ca;c=d[0];var g=d[1],f=d[2],p=e[0],q=e[1],e=e[2];d[0]=g*e-f*q;d[1]=f*p-c*e;d[2]=c*q-g*p;return this;},gr:function(c){var e=this.ca,g=c.ca;c=e[0]-g[0];var f=e[1]-g[1],e=e[2]-g[2];return d(c*c+f*f+e*e);},toString:function(){return"["+this.ca[0]+" , "+this.ca[1]+" , "+this.ca[2]+"]";}});f.Vector3.ZERO=function(){return new g([0,0,0]);};f.Vector3.dot=function(c,d){var e=c.ca,g=d.ca;return e[0]*g[0]+e[1]*g[1]+e[2]*g[2];};f.Vector3.equals=function(c,d){var e=c.ca,g=d.ca;return e[0]==g[0]&&e[1]==g[1]&&e[2]==g[2];};f.Vector3.cross=function(c,d){var e=c.ca,f=d.ca,n=e[0],p=e[1],e=e[2],q=f[0],t=f[1],f=f[2];return new g([p*f-e*t,e*q-n*f,n*t-p*q]);};f.Vector3.distance=function(c,e){var g=c.ca,f=e.ca,n=g[0]-f[0],p=g[1]-f[1],g=g[2]-f[2];return d(n*n+p*p+g*g);};f.Vector3.js=function(c,d){var e=c.ca,f=d.ca;return new g([e[0]+f[0],e[1]+f[1],e[2]+f[2]]);};}(X);!function(f,c){var d=f.ae,e=d.X,g=d.Y,h=d.Ph,m=f.Vector3,l=f.Oh;f.dg=ring.create({constructor:function(d){this.ca=new l([0,0,0]);this.Lb=new l([0,0,0]);this.ratio=new l([0,0,0]);c!==d&&null!==d&&!1!==d&&this.Ml(d);},ib:null,ca:null,Lb:null,ratio:null,dispose:function(){this.ratio=this.Lb=this.ca=this.ib=null;return this;},serialize:function(){return{ib:this.name,ca:this.Id(),Lb:this.Lb,ratio:this.ratio};},Bb:function(c){c&&(this.setXYZ(c.ca),this.Lb=c.Lb,this.ratio=c.ratio);return this;},Ml:function(c){this.ib=c;return this;},Ar:function(){return new m(this.ratio);},zr:function(c){switch(c){case e:return this.ratio[0];case g:return this.ratio[1];case h:return this.ratio[2];}return -1;},yr:function(c){switch(c){case e:return this.Lb[0];case g:return this.Lb[1];case h:return this.Lb[2];}return 0;},Ap:function(d,e,g){d=d===c?0:d;e=e===c?0:e;g=g===c?0:g;this.ratio=new l([d,e,g]);return this;},yp:function(d,e,g){d=d===c?0:d;e=e===c?0:e;g=g===c?0:g;this.Lb=new l([d,e,g]);return this;},Id:function(){return new l(this.ca);},Kk:function(){return this.ca;},getX:function(){return this.ca[0];},getY:function(){return this.ca[1];},getZ:function(){return this.ca[2];},setXYZ:function(c){this.ca=new l(c);return this;},Nl:function(c){this.ca=c;return this;},setX:function(c){this.ca[0]=c;return this;},setY:function(c){this.ca[1]=c;return this;},setZ:function(c){this.ca[2]=c;return this;},getValue:function(c){switch(c){case e:return this.getX();case g:return this.getY();case h:return this.getZ();}return 0;},setValue:function(c,d){switch(c){case e:this.setX(d);break;case g:this.setY(d);break;case h:this.setZ(d);}return this;},reset:function(){this.setXYZ(this.Lb);return this;},collapse:function(){this.Lb=this.Id();return this;},Gk:function(){return new m(this.Id());},Ll:function(c){this.setXYZ(c.ca);}});}(X);!function(f,c){var d=f.ae,e=d.X,g=d.Y,h=d.Ph,m=Math.min,l=Math.max,k,n;k=function(c){return c?c.serialize():c;};n=f.isWorker?function(c){return c&&c.ib?(new f.dg).Bb(c):c;}:function(c,d){return c&&c.ib?this.vertices[d].Bb(c):c;};f.Hg=ring.create({constructor:function(d){this.depth=this.height=this.width=this.wc=this.hc=this.gc=this.Pd=this.Od=this.Nd=this.re=this.pe=this.oe=null;this.vertices=[];this.faces=[];this.ka=null;c!==d&&this.qj(d);},oe:null,pe:null,re:null,Nd:null,Od:null,Pd:null,gc:null,hc:null,wc:null,width:null,height:null,depth:null,vertices:null,faces:null,ka:null,dispose:function(){this.depth=this.height=this.width=this.wc=this.hc=this.gc=this.Pd=this.Od=this.Nd=this.re=this.pe=this.oe=null;this.tk();this.uk();this.ka=null;return this;},uk:function(){var c,d;if(this.vertices){for(d=this.vertices.length,c=0;c<d;c++){this.vertices[c].dispose();}}this.vertices=null;return this;},tk:function(){var c,d;if(this.faces){for(d=this.faces.length,c=0;c<d;c++){this.faces[c].dispose();}}this.faces=null;return this;},serialize:function(){return{ka:this.name,oe:this.oe,pe:this.pe,re:this.re,Nd:this.Nd,Od:this.Od,Pd:this.Pd,gc:this.gc,hc:this.hc,wc:this.wc,width:this.width,height:this.height,depth:this.depth,vertices:this.vertices?this.vertices.map(k):null,faces:null};},Bb:function(c){c&&(f.isWorker&&(this.tk(),this.uk()),this.oe=c.oe,this.pe=c.pe,this.re=c.re,this.Nd=c.Nd,this.Od=c.Od,this.Pd=c.Pd,this.gc=c.gc,this.hc=c.hc,this.wc=c.wc,this.width=c.width,this.height=c.height,this.depth=c.depth,this.vertices=(c.vertices||[]).map(n,this),this.faces=null);return this;},qj:function(c){this.ka=c;this.vertices=[];return this;},Hk:function(){return this.vertices;},rr:function(){return this.faces;},bk:function(){var c=this.vertices,d=c.length,f=d,k,n,C,v,w,u,D,B,H,z,G;for(d&&(k=c[0],n=k.Id(),C=n[0],v=n[1],n=n[2],w=u=C,D=B=v,H=z=n);0<=--f;){k=c[f],n=k.Id(),C=n[0],v=n[1],n=n[2],k.yp(C,v,n),w=m(w,C),D=m(D,v),H=m(H,n),u=l(u,C),B=l(B,v),z=l(z,n);}C=u-w;v=B-D;G=z-H;this.width=C;this.height=v;this.depth=G;this.Nd=w;this.oe=u;this.Od=D;this.pe=B;this.Pd=H;this.re=z;f=l(C,v,G);k=m(C,v,G);f==C&&k==v?(this.wc=g,this.hc=h,this.gc=e):f==C&&k==G?(this.wc=h,this.hc=g,this.gc=e):f==v&&k==C?(this.wc=e,this.hc=h,this.gc=g):f==v&&k==G?(this.wc=h,this.hc=e,this.gc=g):f==G&&k==C?(this.wc=e,this.hc=g,this.gc=h):f==G&&k==v&&(this.wc=g,this.hc=e,this.gc=h);for(f=d;0<=--f;){k=c[f],n=k.Id(),k.Ap((n[0]-w)/C,(n[1]-D)/v,(n[2]-H)/G);}return this;},mp:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].reset();}this.update();return this;},Bn:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].collapse();}this.update();this.bk();return this;},jo:function(c){switch(c){case e:return this.Nd;case g:return this.Od;case h:return this.Pd;}return -1;},vr:function(c){switch(c){case e:return this.oe;case g:return this.pe;case h:return this.re;}return -1;},getSize:function(c){switch(c){case e:return this.width;case g:return this.height;case h:return this.depth;}return -1;},update:function(){return this;},Xr:function(){return this;},am:function(){return this;}});}(X);!function(f){var c=0,d=f.ae.NONE;f.Pj=ring.create({constructor:function(e){this.id=++c;this.la=e||null;this.dc=this.Fe=d;this.enabled=!0;},id:null,la:null,Fe:null,dc:null,enabled:!0,dispose:function(c){!0===c&&this.la&&this.la.dispose();this.dc=this.Fe=this.name=this.la=null;return this;},serialize:function(){return{qd:this.name,params:{Fe:this.Fe,dc:this.dc,enabled:!!this.enabled}};},Bb:function(c){c&&this.name===c.qd&&(c=c.params,this.Fe=c.Fe,this.dc=c.dc,this.enabled=c.enabled);return this;},enable:function(c){return arguments.length?(this.enabled=!!c,this):this.enabled;},Yq:function(c){this.Fe=c||d;return this;},as:function(c){this.dc=c||d;return this;},Ah:function(c){this.la=c;return this;},Hk:function(){return this.la?this.la.Hk():null;},wf:function(){return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(f){d.unbind("apply");f&&f.wg&&(d.la.Bb(f.wg),d.la.update());c&&c.call(d);}).send("apply",{params:d.serialize(),wg:d.la.serialize()}):(d.wf(),c&&c.call(d));return d;},toString:function(){return"[Modifier "+this.name+"]";}});}(X);!function(f){f.Mh=ring.create({constructor:function(){this.Vi=f.Hg;this.fm=f.dg;},Vi:null,fm:null});var c=ring.create({io:function(c){if(arguments.length){var e=c.Vi;return e?new e:null;}return null;},ko:function(c){return c&&c.qd&&f[c.qd]?new f[c.qd]:null;},sr:function(c){return c&&c.al&&f[c.al]?new f[c.al]:new f.Mh;},wr:function(c){return c&&c.ka&&f[c.ka]?(new f.Hg).Bb(c):new f.Hg;},Br:function(c){return c&&c.ib&&f[c.ib]?(new f.dg).Bb(c):new f.dg;}});f.Nj=new c;}(X);!function(f){function c(c){return c?c.serialize():c;}var d=f.Nj.io,e=f.Gm=ring.create({constructor:function(c,e){this.la=null;this.stack=[];this.Qi=f.isWorker?new f.Mh:c;this.la=d(this.Qi);e&&(this.la.qj(e),this.la.bk());},Qi:null,la:null,stack:null,dispose:function(c){this.Qi=null;if(c&&this.stack){for(;this.stack.length;){this.stack.pop().dispose();}}this.stack=null;this.la&&this.la.dispose();this.la=null;return this;},serialize:function(){return{qd:this.name,params:{No:this.stack.map(c)}};},Bb:function(c){if(c&&this.name===c.qd){c=c.params.No;var d=this.stack,e;if(c.length!==d.length){for(e=d.length=0;e<c.length;e++){d.push(f.Nj.ko(c[e]));}}for(e=0;e<d.length;e++){d[e]=d[e].Bb(c[e]).Ah(this.la);}this.stack=d;}return this;},Ah:function(c){this.la=c;return this;},add:function(c){c&&(c.Ah(this.la),this.stack.push(c));return this;},wf:function(){if(this.la&&this.stack&&this.stack.length){var c=this.stack,d=c.length,e=this.la,f=0;for(e.mp();f<d;){c[f].enabled&&c[f].wf(),f++;}e.update();}return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(e){d.unbind("apply");e&&e.wg&&(d.la.Bb(e.wg),d.la.update());c&&c.call(d);}).send("apply",{params:d.serialize(),wg:d.la.serialize()}):(d.wf(),c&&c.call(d));return d;},collapse:function(){this.la&&this.stack&&this.stack.length&&(this.apply(),this.la.Bn(),this.stack.length=0);return this;},clear:function(){this.stack&&(this.stack.length=0);return this;},xr:function(){return this.la;}});e.prototype.Zj=e.prototype.add;}(X);!function(f){var c=f.Vector3;f.Mm=ring.create([f.Pj],{constructor:function(d,e,g){this.$super();this.Zb=new c([d||0,e||0,g||0]);},Zb:null,dispose:function(){this.Zb.dispose();this.Zb=null;this.$super();return this;},serialize:function(){return{qd:this.name,params:{Zb:this.Zb.serialize(),enabled:!!this.enabled}};},Bb:function(c){c&&this.name===c.qd&&(c=c.params,this.Zb.Bb(c.Zb),this.enabled=!!c.enabled);return this;},ds:function(){var d=this.la;this.Zb=new c(-(d.Nd+0.5*d.width),-(d.Od+0.5*d.height),-(d.Pd+0.5*d.depth));return this;},wf:function(){for(var c=this.la.vertices,e=c.length,g=this.Zb,f;0<=--e;){f=c[e],f.Ll(f.Gk().dn(g));}this.la.am(g.negate());return this;}});}(X);!function(f,c){var d=f.ae.NONE,e=f.ae.LEFT,g=f.ae.RIGHT,h=f.Em,m=Math.atan,l=Math.sin,k=Math.cos,n=f.Ih.PI,p=f.Ih.mo,q=f.Ih.On,t=f.Qj;f.tm=ring.create([f.Pj],{constructor:function(e,g,f){this.$super();this.dc=d;this.origin=this.height=this.width=this.Md=this.min=this.max=0;this.pd=this.od=null;this.Me=0;this.Wd=!1;this.force=e!==c?e:0;this.offset=g!==c?g:0;f!==c?this.Ag(f):this.Ag(0);},force:0,offset:0,angle:0,Me:0,max:0,min:0,Md:0,width:0,height:0,origin:0,od:null,pd:null,Wd:!1,dispose:function(){this.origin=this.height=this.width=this.Md=this.min=this.max=this.Me=this.angle=this.offset=this.force=null;this.od&&this.od.dispose();this.pd&&this.pd.dispose();this.Wd=this.pd=this.od=null;this.$super();return this;},serialize:function(){return{qd:this.name,params:{force:this.force,offset:this.offset,angle:this.angle,Me:this.Me,max:this.max,min:this.min,Md:this.Md,width:this.width,height:this.height,origin:this.origin,od:this.od.serialize(),pd:this.pd.serialize(),Wd:this.Wd,dc:this.dc,enabled:!!this.enabled}};},Bb:function(c){c&&this.name===c.qd&&(c=c.params,this.force=c.force,this.offset=c.offset,this.angle=c.angle,this.Me=c.Me,this.max=c.max,this.min=c.min,this.Md=c.Md,this.width=c.width,this.height=c.height,this.origin=c.origin,this.od.Bb(c.od),this.pd.Bb(c.pd),this.Wd=c.Wd,this.dc=c.dc,this.enabled=!!c.enabled);return this;},Ag:function(c){this.angle=c;this.od=(new h).rotate(c);this.pd=(new h).rotate(-c);return this;},Ah:function(c){this.$super(c);this.max=this.Wd?this.la.hc:this.la.gc;this.min=this.la.wc;this.Md=this.Wd?this.la.gc:this.la.hc;this.width=this.la.getSize(this.max);this.height=this.la.getSize(this.Md);this.origin=this.la.jo(this.max);this.Me=m(this.width/this.height);return this;},wf:function(){if(!this.force){return this;}for(var c=this.la.vertices,d=c.length,f=this.dc,h=this.width,m=this.offset,u=this.origin,D=this.max,B=this.min,H=this.Md,z=this.od,G=this.pd,A=u+h*m,F=h/n/this.force,y=h/(F*q)*q,E,I,K,N,L=1/h;0<=--d;){h=c[d],E=h.getValue(D),I=h.getValue(H),K=h.getValue(B),I=z.Yl(new t(E,I)),E=I.x,I=I.y,N=(E-u)*L,e===f&&N<=m||g===f&&N>=m||(N=p-y*m+y*N,E=l(N)*(F+K),N=k(N)*(F+K),K=E-F,E=A-N),I=G.Yl(new t(E,I)),E=I.x,I=I.y,h.setValue(D,E),h.setValue(H,I),h.setValue(B,K);}return this;}});}(X);!function(f){var c=f.ae,d=c.X,e=c.Y,g=c.Ph,h=f.Vector3,m=f.Oh,c=f.Rj=ring.create([f.dg],{constructor:function(c,d){this.ka=c;this.$super(d);},ka:null,dispose:function(){this.ka=null;this.$super();return this;},Ml:function(c){this.ib=c;this.Lb=new m([c.x,c.y,c.z]);this.ca=new m(this.Lb);return this;},Id:function(){var c=this.ib;return new m([c.x,c.y,c.z]);},getX:function(){return this.ib.x;},getY:function(){return this.ib.y;},getZ:function(){return this.ib.z;},setXYZ:function(c){var d=this.ib;d.x=c[0];d.y=c[1];d.z=c[2];return this;},setX:function(c){this.ib.x=c;return this;},setY:function(c){this.ib.y=c;return this;},setZ:function(c){this.ib.z=c;return this;},reset:function(){var c=this.ib,d=this.Lb;c.x=d[0];c.y=d[1];c.z=d[2];return this;},collapse:function(){var c=this.ib;this.Lb=new m([c.x,c.y,c.z]);return this;},getValue:function(c){var f=this.ib;switch(c){case d:return f.x;case e:return f.y;case g:return f.z;}return 0;},setValue:function(c,f){var h=this.ib;switch(c){case d:h.x=f;break;case e:h.y=f;break;case g:h.z=f;}return this;},Ll:function(c){var d=this.ib;c=c.ca;d.x=c[0];d.y=c[1];d.z=c[2];return this;},Gk:function(){var c=this.ib;return new h([c.x,c.y,c.z]);}});c.prototype.Kk=c.prototype.Id;c.prototype.Nl=c.prototype.setXYZ;}(X);!function(f){var c=f.Rj;f.Fm=ring.create([f.Hg],{constructor:function(c){this.$super(c);},qj:function(d){this.$super(d);var e=0;d=this.ka;for(var g=this.vertices,f=d.geometry.vertices,m=f.length,l,e=0;e<m;){l=new c(d,f[e]),g.push(l),e++;}this.faces=null;return this;},update:function(){var c=this.ka.geometry;c.verticesNeedUpdate=!0;c.normalsNeedUpdate=!0;c.Wq=!0;c.dynamic=!0;return this;},am:function(c){var e=this.ka.position;c=c.ca;e.x+=c[0];e.y+=c[1];e.z+=c[2];return this;}});}(X);!function(f){var c=ring.create([f.Mh],{constructor:function(){this.Vi=f.Fm;this.fm=f.Rj;}});f.Dm=new c;}(X);J=W.prototype;J.Vk=function(){var f=this;if(f.F.H&&(!f.F.H||0!=f.F.H.length)&&f.F.I.tb&&!f.Ni){f.Ni=!0;f.Nb=f.container+"_webglcanvas";var c=jQuery(f.J).offset(),d=f.w=f.F.O.width(),e=f.h=f.F.O.height(),g=c.left,c=c.top;f.Pb=new THREE.Scene;f.Zd=jQuery(String.format("<canvas id='{0}' style='opacity:0;pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;width:100%;height:100%;'></canvas>",f.Nb,g,c));f.Zd.get(0).addEventListener("webglcontextlost",function(c){f.Fd();c.preventDefault&&c.preventDefault();f.Zd.remove();return !1;},!1);f.Dd=new THREE.WebGLRenderer({alpha:!0,antialias:!0,canvas:f.Zd.get(0)});f.Dd.setPixelRatio(eb.platform.Ya);f.Dd.shadowMap.type=THREE.PCFShadowMap;f.Dd.shadowMap.enabled=!0;f.Gb=new THREE.PerspectiveCamera(180/Math.PI*Math.atan(e/1398)*2,d/e,1,1000);f.Gb.position.z=700;f.Pb.add(f.Gb);g=new THREE.PlaneGeometry(d,1.3*e);c=new THREE.MeshPhongMaterial({color:f.F.I.backgroundColor});g=new THREE.Mesh(g,c);g.receiveShadow=!0;g.position.x=0;g.position.y=0;g.position.z=-3;c=new THREE.ShadowMaterial;c.opacity=0.15;g.material=c;f.Pb.add(g);f.Dd.setSize(d,e);0==f.Dd.context.getError()?(jQuery(f.F.O).append(f.Dd.domElement),f.WebGLObject=new THREE.Object3D,f.WebGLObject.scale.set(1,1,0.35),f.Bc=new THREE.Object3D,f.WebGLObject.add(f.Bc),f.Pb.add(f.WebGLObject),f.bb=new THREE.DirectionalLight(16777215,0.2),f.bb.position.set(500,0,800),f.bb.intensity=0.37,f.bb.shadow=new THREE.LightShadow(new THREE.PerspectiveCamera(70,1,5,2000)),f.bb.castShadow=!0,f.bb.shadow.bias=-0.000222,f.bb.shadow.mapSize.height=1024,f.bb.shadow.mapSize.width=1024,f.Pb.add(f.bb),d=f.es=new THREE.CameraHelper(f.bb.shadow.camera),d.visible=!1,f.Pb.add(d),f.Qb=new THREE.AmbientLight(16777215),f.Qb.intensity=0.75,f.Qb.visible=!0,f.Pb.add(f.Qb),f.Gb.lookAt(f.Pb.position),f.Ui(),f.F.renderer.qa&&jQuery(f.F.renderer).bind("onTextDataUpdated",function(c,d){for(var e=f.M(f.J).scrollTop(),g=d-2,n=d+12,p=f.M(f.J).height();g<n;g++){var q=f.getPage(g);if(q&&q.Hc(e,p)&&0==q.pageNumber%2){var t=f.pages.length>g+1?f.pages[g]:null;f.F.renderer.S[q.pageNumber].loaded?t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.tc(t.pageNumber+1,!0,function(){}):f.F.renderer.tc(q.pageNumber+1,!0,function(){t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.tc(t.pageNumber+1,!0,function(){});});q.Jc(f.F.renderer.ja(q.pageNumber+1),f.F.renderer.ja(q.pageNumber+2),!0);}}})):f.Fd();f.Ni=!1;}};J.Fd=function(){this.F.I.tb=!1;for(var f=0;f<this.document.numPages;f++){this.pages[f]&&this.pages[f].ka&&this.pages[f].In();}this.Pb&&(this.WebGLObject&&this.Pb.remove(this.WebGLObject),this.Gb&&this.Pb.remove(this.Gb),this.Qb&&this.Pb.remove(this.Qb),this.bb&&this.Pb.remove(this.bb),this.Zd.remove());this.Nb=null;};J.Al=function(){if(this.F.I.tb){if(this.le=[],this.Zd){for(var f=0;f<this.document.numPages;f++){this.pages[f].ka&&this.pages[f].Fg(!0);}var f=this.F.O.width(),c=this.F.O.height(),d=180/Math.PI*Math.atan(c/1398)*2;this.Dd.setSize(f,c);this.Gb.fov=d;this.Gb.aspect=f/c;this.Gb.position.z=700;this.Gb.position.x=0;this.Gb.position.y=0;this.Gb.updateProjectionMatrix();jQuery("#"+this.Nb).css("opacity","0");}else{this.Vk();}}};J.Jp=function(){var f=jQuery(this.J).offset();jQuery(this.J).width();var c=jQuery(this.J).height();this.Gb.position.y=-1*((this.Zd.height()-c)/2-f.top)-this.F.O.offset().top;this.Gb.position.x=0;this.oo=!0;};J.ee=function(){if(!this.F.I.tb){return !1;}for(var f=this.fg,c=0;c<this.document.numPages;c++){if(this.pages[c].Tb||this.pages[c].Ub){f=!0;}}return f;};J.ho=function(f){return f==this.sa?2:f==this.sa-2?1:f==this.sa+2?1:0;};J.gn=function(){for(var f=jQuery(this.J).width(),c=0;c<this.document.numPages;c++){this.pages[c].ka&&(c+1<this.R?this.pages[c].Tb||this.pages[c].Ub||this.pages[c].ka.rotation.y==-Math.PI||this.pages[c].wo():this.pages[c].Tb||this.pages[c].Ub||0==this.pages[c].ka.rotation.y||this.pages[c].xo(),this.pages[c].ka.position.x=800<f?0.5:0,this.pages[c].ka.position.y=0,this.pages[c].Tb||this.pages[c].Ub||(this.pages[c].ka.position.z=this.ho(c)),this.pages[c].ka.visible=0==this.pages[c].ka.position.z?!1:!0);}};J.Cj=function(f,c){var d=this;d.Rk=!1;var e=d.F.getTotalPages();d.fg=!0;d.Jj=f;d.vq=c;if(1==d.F.scale){if("next"==f&&(d.sa?d.sa=d.sa+2:d.sa=d.R-1,0==e%2&&d.sa==e-2&&(d.Rk=!0),0!=d.sa%2&&(d.sa=d.sa-1),d.sa>=e-1&&0!=e%2)){d.fg=!1;return;}"previous"==f&&(d.sa=d.sa?d.sa-2:d.R-3,0!=d.sa%2&&(d.sa+=1),d.sa>=e&&(d.sa=e-3));"page"==f&&(d.sa=c-3,f=d.sa>=d.R-1?"next":"previous");d.pages[d.sa]&&!d.pages[d.sa].ka&&d.pages[d.sa].Je();d.pages[d.sa-2]&&!d.pages[d.sa-2].ka&&d.pages[d.sa-2].Je();d.pages[d.sa+2]&&!d.pages[d.sa+2].ka&&d.pages[d.sa+2].Je();d.Jp();"0"==jQuery("#"+d.Nb).css("opacity")&&jQuery("#"+d.Nb).animate({opacity:0.5},50,function(){});jQuery("#"+d.Nb).animate({opacity:1},{duration:60,always:function(){d.gn();d.fg=!1;if("next"==f&&!d.pages[d.sa].Tb&&!d.pages[d.sa].Ub){if(0==d.sa||d.Rk){d.F.ra.css({opacity:0}),d.Bc.position.x=d.pages[d.sa].Lc/2*-1,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){});}0<d.sa&&(d.Bc.position.x=0);jQuery("#"+d.Nb).css("z-index",99);d.$d||(d.$d=!0,d.hj());d.bb.position.set(300,d.h/2,400);d.bb.intensity=0;d.Qb.color.setRGB(1,1,1);var c=d.Jk();(new TWEEN.Tween({intensity:d.bb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.bb.intensity=this.intensity;d.Qb.intensity=1-this.intensity;d.Qb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.bb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.bb.intensity=this.intensity;d.Qb.intensity=1-this.intensity;d.Qb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start();d.pages[d.sa].Wn(d.Ik());}"previous"==f&&(d.fg=!1,!d.pages[d.sa]||d.pages[d.sa].Ub||d.pages[d.sa].Tb||(0==d.sa&&(d.F.ra.css({opacity:0}),jQuery(d.J+"_parent").transition({x:-(d.kd()/4)},0,"ease",function(){}),d.Bc.position.x=0),0<d.sa&&(d.Bc.position.x=0),jQuery("#"+d.Nb).css("z-index",99),d.$d||(d.$d=!0,d.hj()),d.bb.position.set(-300,d.h/2,400),d.bb.intensity=0,d.Qb.color.setRGB(1,1,1),c=d.Jk(),(new TWEEN.Tween({intensity:d.bb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.bb.intensity=this.intensity;d.Qb.intensity=1-this.intensity;d.Qb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.bb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.bb.intensity=this.intensity;d.Qb.intensity=1-this.intensity;d.Qb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start(),d.pages[d.sa].Xn(d.Ik())));}});}};J.Jk=function(){var f=800;"very fast"==this.F.I.Tc&&(f=200);"fast"==this.F.I.Tc&&(f=300);"slow"==this.F.I.Tc&&(f=1700);"very slow"==this.F.I.Tc&&(f=2700);return f;};J.Ik=function(){var f=1.5;"very fast"==this.F.I.Tc&&(f=0.4);"fast"==this.F.I.Tc&&(f=0.7);"slow"==this.F.I.Tc&&(f=2.3);"very slow"==this.F.I.Tc&&(f=3.7);return f;};J.po=function(){this.F.I.$g?("next"==this.Jj&&this.F.ra.turn("page",this.sa+2,"instant"),"previous"==this.Jj&&this.F.ra.turn("page",this.sa,"instant")):this.F.ra.turn(this.Jj,this.vq,"instant");this.sa=null;};J.hj=function(){var f,c=this;c.ec||(c.ec=[]);3>c.ec.length&&(f=!0);if((c.F.I.tb||c.$d)&&(c.$d||f)&&(c.Hd||(c.Hd=0,c.ug=(new Date).getTime(),c.elapsedTime=0),f=(new Date).getTime(),requestAnim(function(){c.hj();}),TWEEN.update(),c.Dd.render(c.Pb,c.Gb),c.Hd++,c.elapsedTime+=f-c.ug,c.ug=f,1000<=c.elapsedTime&&4>c.ec.length&&(f=c.Hd,c.Hd=0,c.elapsedTime-=1000,c.ec.push(f),3==c.ec.length&&!c.zi))){c.zi=!0;for(var d=f=0;3>d;d++){f+=c.ec[d];}25>f/3&&c.Fd();}};J.Sf=function(f){var c=this;if(f&&!c.dd){c.dd=f;}else{if(f&&c.dd&&10>c.dd+f){c.dd=c.dd+f;return;}}c.Dd&&c.Pb&&c.Gb&&c.oo?c.animating?setTimeout(function(){c.Sf();},500):(0<c.dd?(c.dd=c.dd-1,requestAnim(function(){c.Sf();})):c.dd=null,!c.$d&&0<c.dd&&c.Dd.render(c.Pb,c.Gb)):c.dd=null;};J.Ui=function(){var f=this;if(!f.F.initialized){setTimeout(function(){f.Ui();},1000);}else{if(!eb.platform.ios&&(f.ec||(f.ec=[]),f.Zd&&f.F.I.tb&&!f.$d&&4>f.ec.length)){f.Hd||(f.Hd=0,f.ug=(new Date).getTime(),f.elapsedTime=0);var c=(new Date).getTime();requestAnim(function(){f.Ui();});f.Hd++;f.elapsedTime+=c-f.ug;f.ug=c;c=f.Zd.get(0);if(c=c.getContext("webgl")||c.getContext("experimental-webgl")){if(c.clearColor(0,0,0,0),c.enable(c.DEPTH_TEST),c.depthFunc(c.LEQUAL),c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT),1000<=f.elapsedTime&&4>f.ec.length&&(c=f.Hd,f.Hd=0,f.elapsedTime-=1000,f.ec.push(c),4==f.ec.length&&!f.zi)){f.zi=!0;for(var d=c=0;3>d;d++){c+=f.ec[d];}25>c/3&&f.Fd();}}else{f.Fd();}}}};J.Wo=function(){for(var f=this,c=!1,d=0;d<f.document.numPages;d++){if(f.pages[d].Tb||f.pages[d].Ub){c=!0;}}c||(f.fg=!1,3>f.ec?setTimeout(function(){f.ee()||(f.$d=!1);},3000):f.$d=!1,f.po());};var za=function(){function f(){}f.prototype={Hc:function(c,d){return d.pages.R==d.pageNumber||d.R==d.pageNumber+1;},ao:function(c,d,e){var g=null!=d.dimensions.nb?d.dimensions.nb:d.dimensions.ma;return !d.pages.Mb()&&c.sb&&(!eb.browser.safari||eb.platform.touchdevice||eb.browser.safari&&7.1>eb.browser.Kb)?e:null!=d.dimensions.nb&&c.sb&&d.F.renderer.va?d.pages.jd/(d.F.Se?1:2)/g:d.rb&&!d.F.renderer.va?d.pages.jd/2/d.F.renderer.Aa[d.pageNumber].nb:c.sb&&!d.rb&&!d.F.renderer.va&&1<d.scale?d.Gi()/g:e;},kn:function(c,d,e){jQuery(d.V+"_textoverlay").append(e);},dk:function(c,d,e,g,f,m,l){var k=c.ep==g&&!d.F.renderer.sb;e&&(c.ep=g,c.Zr=e.attr("id"),c.fp!=e.css("top")||f||c.gp!=d.pageNumber?(null==c.wd||f||c.wd.remove(),c.fp=e.css("top"),c.wd=f?m?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-left-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():l?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: transparent;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent(),c.wd.css({"margin-left":"-3px","margin-top":"-4px","z-index":"11"}),jQuery(d.ta).append(c.wd)):k?(c.wd.css("width",c.wd.width()+e.width()),jQuery(c.wd.children()[0]).width(c.wd.width())):(c.wd.css("left",e.css("left")),c.wd.append(e)),e.css({left:"0px",top:"0px"}),e.addClass("flowpaper_selected"),e.addClass("flowpaper_selected_default"),e.addClass("flowpaper_selected_searchmatch"),c.gp=d.pageNumber);}};return f;}(),wa=function(){function f(){}f.prototype={create:function(c,d){if("FlipView"==c.F.H&&(c.Fn=10<c.pages.ye?c.pages.ye:10,!(c.Oi||c.F.renderer.he&&!c.Xa&&c.pageNumber>c.Fn+6))){c.Mc=jQuery("<div class='flowpaper_page flowpaper_page_zoomIn' id='"+c.sd+"' style='"+c.getDimensions()+";z-index:2;background-size:100% 100%;background-color:#ffffff;margin-bottom:0px;backface-visibility:hidden;'><div id='"+c.aa+"' style='height:100%;width:100%;'></div></div>");c.pages.F.ra&&c.F.renderer.he?c.pages.F.ra.turn("addPage",c.Mc,c.pageNumber+1):jQuery(d).append(c.Mc);var e=c.mg()*c.La,g=c.wa()/e;null!=c.dimensions.nb&&c.sb&&c.F.renderer.va&&(g=c.pages.jd/2/e);c.Ti=g;c.Mf(g);c.Oi=!0;c.Xa=!0;c.F.renderer.Jd(c);c.Pl();c.Je&&c.Je();}},vo:function(c){var d=c.mg()*c.La,e=c.wa()/d;null!=c.dimensions.nb&&c.sb&&c.F.renderer.va&&(e=c.pages.jd/2/d);c.Ti=e;c.Mf(e);},ld:function(c){return c.pages.ld()/(c.F.I.Ea?1:2);},Cf:function(c){return c.pages.Cf();},getDimensions:function(c){if("FlipView"==c.F.H){return c.L.width(),"position:absolute;left:0px;top:0px;width:"+c.wa(c)+";height:"+c.Ha(c);}},wa:function(c){if("FlipView"==c.F.H){return c.pages.jd/(c.F.I.Ea?1:2)*c.scale;}},Ei:function(c){if("FlipView"==c.F.H){return c.pages.jd/(c.F.I.Ea?1:2)*1;}},Gi:function(c){if("FlipView"==c.F.H){return c.pages.jd/(c.F.I.Ea?1:2);}},Ha:function(c){if("FlipView"==c.F.H){return c.pages.eg*c.scale;}},Di:function(c){if("FlipView"==c.F.H){return 1*c.pages.eg;}},Vb:function(){return 0;},Hc:function(c){var d=c.F.I.tb;if("FlipView"==c.F.H){return c.pages.R>=c.pageNumber-(d?3:2)&&c.pages.R<=c.pageNumber+(d?5:4);}},unload:function(c){var d=c.V;0==jQuery(d).length&&(d=jQuery(c.Mc).find(c.V));(c.pageNumber<c.pages.R-15||c.pageNumber>c.pages.R+15)&&c.Mc&&!c.Mc.parent().hasClass("turn-page-wrapper")&&!c.Fb&&0!=c.pageNumber&&(jQuery(d).find("*").unbind(),jQuery(d).find("*").remove(),c.initialized=!1,c.uc=!1);}};V.prototype.qg=function(){return eb.platform.touchdevice?"FlipView"==this.F.H?!this.F.I.Ea&&window.devicePixelRatio&&1<window.devicePixelRatio?1.9:2.6:1:"FlipView"==this.F.H?2:1;};return f;}();J=V.prototype;J.Je=function(){var f=this;if(0==f.pageNumber%2&&1==f.scale&&f.F.I.tb){if(f.ka&&f.pages.Bc.remove(f.ka),f.pages.Nb||f.pages.Vk(),f.pages.Ni){setTimeout(function(){f.Je();},200);}else{f.Lc=f.wa(f);f.Qd=f.Ha(f);f.angle=0.25*Math.PI*this.Lc/this.Qd;f.Ej=!eb.platform.touchonlydevice;for(var c=0;6>c;c++){c!=f.pa.Wa||f.Ra[f.pa.Wa]?c!=f.pa.back||f.Ra[f.pa.back]?f.Ra[c]||c==f.pa.back||c==f.pa.Wa||(f.Ra[c]=new THREE.MeshPhongMaterial({color:f.Vo}),f.Ra[c].name="edge"):(f.Ra[f.pa.back]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ra[f.pa.back].name="back",f.Wj(f.pageNumber,f.Lc,f.Qd,f.pa.back,function(c){f.ad||(f.zj=new THREE.TextureLoader,f.zj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ra[f.pa.back].map=c;}));})):(f.Ra[f.pa.Wa]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ra[f.pa.Wa].name="front",f.Wj(f.pageNumber,f.Lc,f.Qd,f.pa.Wa,function(c){f.ad||(f.yj=new THREE.TextureLoader,f.yj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ra[f.pa.Wa].map=c;}));}));}f.ka=new THREE.Mesh(new THREE.BoxGeometry(f.Lc,f.Qd,0.1,10,10,1),new THREE.MeshFaceMaterial(f.Ra));f.ka.receiveShadow=f.Ej;f.ka.overdraw=!0;f.la=new X.Gm(X.Dm,f.ka);f.Zb=new X.Mm(f.Lc/2,0,0);f.la.Zj(f.Zb);f.la.collapse();f.cc=new X.tm(0,0,0);f.cc.dc=X.ae.LEFT;f.Qd>f.Lc&&(f.cc.Wd=!0);f.la.Zj(f.cc);f.pages.Bc.add(f.ka);f.ka.position.x=0;f.ka.position.z=-1;f.nh&&(f.ka.rotation.y=-Math.PI);f.oh&&(f.ka.rotation.y=0);}}};J.Wj=function(f,c,d,e,g){var h="image/jpeg",m,l,k;this.pages.le||(this.pages.le=[]);h="image/jpeg";m=0.95;if(e==this.pa.Wa&&this.pages.le[this.pa.Wa]){g(this.pages.le[this.pa.Wa]);}else{if(e==this.pa.back&&this.pages.le[this.pa.back]){g(this.pages.le[this.pa.back]);}else{if(l=document.createElement("canvas"),l.width=c,l.height=d,k=l.getContext("2d"),k.ag=k.mozImageSmoothingEnabled=k.imageSmoothingEnabled=!0,k.fillStyle="white",k.fillRect(0,0,l.width,l.height),k.drawImage(this.F.Si,l.width/2+(this.Vb()-10),l.height/2,24,8),this.F.Pe){if(e==this.pa.back){k.beginPath();k.strokeStyle="transparent";k.rect(0.65*c,0,0.35*c,d);var n=k.createLinearGradient(0,0,c,0);n.addColorStop(0.93,"rgba(255, 255, 255, 0)");n.addColorStop(0.96,"rgba(170, 170, 170, 0.05)");n.addColorStop(1,"rgba(125, 124, 125, 0.3)");k.fillStyle=n;k.fill();k.stroke();k.closePath();n=l.toDataURL(h,m);this.pages.le[this.pa.back]=n;g(n);}e==this.pa.Wa&&0!=f&&(k.beginPath(),k.strokeStyle="transparent",k.rect(0,0,0.35*c,d),n=k.createLinearGradient(0,0,0.07*c,0),n.addColorStop(0.07,"rgba(125, 124, 125, 0.3)"),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),k.fillStyle=n,k.fill(),k.stroke(),k.closePath(),n=l.toDataURL(h,m),this.pages.le[this.pa.Wa]=n,g(n));}}}};J.Fg=function(f){if(this.ka&&this.ad||f){this.$l(),this.la.dispose(),this.Zb.dispose(),this.la=this.ka=this.Zb=null,this.Ra=[],this.gd=this.resources=null,this.Je(),this.ad=!1;}};J.In=function(){this.ka&&this.ad&&(this.$l(),this.la.dispose(),this.Zb.dispose(),this.la=this.ka=this.Zb=null,this.Ra=[],this.resources=null,this.ad=!1);};J.$l=function(){var f=this.ka;if(f){for(var c=0;c<f.material.materials.length;c++){f.material.materials[c].map&&f.material.materials[c].map.dispose(),f.material.materials[c].dispose();}f.geometry.dispose();this.pages.Bc.remove(f);}};J.Jc=function(f,c,d){var e=this;if(e.F.I.tb&&(!e.ad||d)&&0==e.pageNumber%2&&1==e.F.scale&&1==e.scale){for(e.ad=!0,e.ph=!0,e.Lc=e.wa(e),e.Qd=e.Ha(e),e.angle=0.25*Math.PI*this.Lc/this.Qd,d=0;6>d;d++){d==e.pa.Wa?e.loadResources(e.pageNumber,function(){e.jj(e.pageNumber,e.pa.Wa,f,"image/jpeg",0.95,e.Lc,e.Qd,function(c){e.Ra[e.pa.Wa]&&(e.Ra[e.pa.Wa].map=null);e.pages.Sf(2);e.yj=new THREE.TextureLoader;e.yj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ra[e.pa.Wa]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ka&&e.ka.material.materials&&e.ka.material.materials&&(e.ka.material.materials[e.pa.Wa]=e.Ra[e.pa.Wa]);e.ph&&e.Ra[e.pa.Wa]&&e.Ra[e.pa.Wa].map&&e.Ra[e.pa.back]&&e.Ra[e.pa.back].map&&(e.ph=!1,e.pages.Sf(2));});});}):d==e.pa.back&&e.loadResources(e.pageNumber+1,function(){e.jj(e.pageNumber+1,e.pa.back,c,"image/jpeg",0.95,e.Lc,e.Qd,function(c){e.Ra[e.pa.back]&&(e.Ra[e.pa.back].map=null);e.pages.Sf(2);e.zj=new THREE.TextureLoader;e.zj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ra[e.pa.back]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ka&&e.ka.material.materials&&e.ka.material.materials&&(e.ka.material.materials[e.pa.back]=e.Ra[e.pa.back]);e.ph&&e.Ra[e.pa.Wa]&&e.Ra[e.pa.Wa].map&&e.Ra[e.pa.back]&&e.Ra[e.pa.back].map&&(e.ph=!1,e.pages.Sf(2));});});});}}};J.loadResources=function(f,c){var d=this,e=d.pages.getPage(f);if(e){if(null==e.resources&&(e.resources=[],d.F.Z[f])){for(var g=0;g<d.F.Z[f].length;g++){if("image"==d.F.Z[f][g].type||"video"==d.F.Z[f][g].type||"iframe"==d.F.Z[f][g].type){var h=d.F.Z[f][g].src,m=new Image;m.loaded=!1;m.setAttribute("crossOrigin","anonymous");m.setAttribute("data-x",d.F.Z[f][g].ih?d.F.Z[f][g].ih:d.F.Z[f][g].Fj);m.setAttribute("data-y",d.F.Z[f][g].jh?d.F.Z[f][g].jh:d.F.Z[f][g].Gj);d.F.Z[f][g].Ai&&m.setAttribute("data-x",d.F.Z[f][g].Ai);d.F.Z[f][g].Bi&&m.setAttribute("data-y",d.F.Z[f][g].Bi);m.setAttribute("data-width",d.F.Z[f][g].width);m.setAttribute("data-height",d.F.Z[f][g].height);jQuery(m).bind("load",function(){this.loaded=!0;d.Cl(f)&&c();});m.src=h;e.resources.push(m);}}}d.Cl(f)&&c();}};J.Cl=function(f){var c=!0;f=this.pages.getPage(f);if(!f.resources){return !1;}for(var d=0;d>f.resources.length;d++){f.resources[d].loaded||(c=!1);}return c;};J.wo=function(){this.ka.rotation.y=-Math.PI;this.page.Tb=!1;this.page.nh=!0;this.page.Ub=!1;this.page.oh=!1;};J.xo=function(){this.ka.rotation.y=0;this.page.Tb=!1;this.page.oh=!0;this.page.Ub=!1;this.page.nh=!1;};J.jj=function(f,c,d,e,g,h,m,l){var k=this,n=new Image,p,q,t,r,x=new jQuery.Deferred;e=0==d.indexOf("data:image/png")?"image/png":"image/jpeg";g=g||0.92;k.U&&!k.Fb&&0!=k.U.naturalWidth&&k.U.getAttribute("src")==d?(n=k.U,x.resolve()):k.pages.pages[f]&&!k.pages.pages[f].Fb&&k.pages.pages[f].U&&0!=k.pages.pages[f].U.naturalWidth&&k.pages.pages[f].U.getAttribute("src")==d?(n=k.pages.pages[f].U,x.resolve()):k.pages.pages[f-1]&&!k.pages.pages[f-1].Fb&&k.pages.pages[f-1].U&&0!=k.pages.pages[f-1].U.naturalWidth&&k.pages.pages[f-1].U.getAttribute("src")==d?(n=k.pages.pages[f-1].U,x.resolve()):k.pages.pages[f+1]&&!k.pages.pages[f+1].Fb&&k.pages.pages[f+1].U&&0!=k.pages.pages[f+1].U.naturalWidth&&k.pages.pages[f+1].U.getAttribute("src")==d?(n=k.pages.pages[f+1].U,x.resolve()):(k.pages.pages[f]&&k.pages.pages[f].U&&(n=k.pages.pages[f].U),k.pages.pages[f-1]&&k.pages.pages[f-1].U&&k.pages.pages[f-1].U.getAttribute("src")==d&&(n=k.pages.pages[f-1].U),k.pages.pages[f+1]&&k.pages.pages[f+1].U&&k.pages.pages[f+1].U.getAttribute("src")==d&&(n=k.pages.pages[f+1].U),jQuery(n).bind("error",function(){jQuery(this).yh(function(){});}),jQuery(n).bind("abort",function(){jQuery(this).yh(function(){});}),n.setAttribute("crossOrigin","anonymous"),n.src=d,jQuery(n).one("load",function(){k.pages.pages[f]==k&&(k.pages.pages[f].U=this,k.pages.pages[f].U.scale=k.pages.pages[f].scale);k.pages.pages[f-1]==k&&(k.pages.pages[f-1].U=this,k.pages.pages[f-1].U.scale=k.pages.pages[f-1].scale);k.pages.pages[f+1]==k&&(k.pages.pages[f+1].U=this,k.pages.pages[f+1].U.scale=k.pages.pages[f+1].scale);x.resolve();}).each(function(){this.complete&&jQuery(this).load();}));x.then(function(){t=k.renderer.qa&&k.renderer.S[0]?k.renderer.S[0].width:n.naturalWidth;r=k.renderer.qa&&k.renderer.S[0]?k.renderer.S[0].height:n.naturalHeight;if(k.renderer.qa){var x=1.5<k.renderer.Ya?k.renderer.Ya:1;t=k.wa()*x;r=k.Ha()*x;}else{t/=2,r/=2;}p=document.createElement("canvas");q=p.getContext("2d");if(t<h||r<m){t=h,r=m;}t<d.width&&(t=d.width);r<d.height&&(r=d.height);p.width=t;p.height=r;q.clearRect(0,0,p.width,p.height);q.fillStyle="rgba(255, 255, 255, 1)";q.fillRect(0,0,t,r);q.drawImage(n,0,0,t,r);jQuery(p).data("needs-overlay",1);k.Td(p,c==k.pa.Wa?0:1).then(function(){k.vl?k.vl++:k.vl=1;var n=t/(k.mg()*k.La),w=k.pages.getPage(f).resources;if(w){for(var u=0;u<w.length;u++){q.drawImage(w[u],parseFloat(w[u].getAttribute("data-x"))*n,parseFloat(w[u].getAttribute("data-y"))*n,parseFloat(w[u].getAttribute("data-width"))*n,parseFloat(w[u].getAttribute("data-height"))*n);}}k.F.Pe&&(c==k.pa.back&&(q.beginPath(),q.strokeStyle="transparent",q.rect(0.65*t,0,0.35*t,r),n=q.createLinearGradient(0,0,t,0),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),n.addColorStop(0.96,"rgba(170, 170, 170, 0.05)"),n.addColorStop(1,"rgba(125, 124, 125, 0.3)"),q.fillStyle=n,q.fill(),q.stroke(),q.closePath()),c==k.pa.Wa&&0!=f&&(q.beginPath(),q.strokeStyle="transparent",q.rect(0,0,0.35*t,r),n=q.createLinearGradient(0,0,0.07*t,0),n.addColorStop(0.07,"rgba(125, 124, 125, 0.3)"),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),q.fillStyle=n,q.fill(),q.stroke(),q.closePath()));try{var x=p.toDataURL(e,g);l(x);}catch(B){if(0!=this.src.indexOf("blob:")){ha(d,function(d){k.jj(f,c,d,e,g,h,m,l);});}else{throw B;}}});});};J.nearestPowerOfTwo=function(f){return Math.pow(2,Math.round(Math.log(f)/Math.LN2));};J.Wn=function(f){var c=this;f&&(c.duration=f);f=0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,m=415*c.duration;"3D, Curled"==c.F.I.Ae&&(f=0.6,d=0.1,e=-0.15,m=210*c.duration);"3D, Soft"==c.F.I.Ae&&(f=0.8,d=0.1,e=0,m=415*c.duration);"3D, Hard"==c.F.I.Ae&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ae&&(f=-0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,m=372*c.duration);c.Tb||c.Ub||(c.Tb=!0,c.cc.Ag(e),c.ka.castShadow=c.Ej,c.cc.force=0,c.cc.offset=0,c.la.apply(),c.to={angle:c.ka.rotation.y,t:-1,bg:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:-Math.PI,bg:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.sl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Pf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},m).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Pf).onComplete(c.Bk).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Pf).start(),c.ka.position.z=2);};J.Xn=function(f){var c=this;f&&(c.duration=f);f=-0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,m=415*c.duration;"3D, Curled"==c.F.I.Ae&&(f=-0.6,d=0.1,e=-0.15,m=210*c.duration);"3D, Soft"==c.F.I.Ae&&(f=-0.8,d=0.1,e=0,m=415*c.duration);"3D, Hard"==c.F.I.Ae&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ae&&(f=0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,m=372*c.duration);c.Ub||c.Tb||(c.Ub=!0,c.ka.castShadow=c.Ej,c.cc.Ag(e),c.cc.force=0,c.cc.offset=0,c.la.apply(),c.to={angle:c.ka.rotation.y,t:-1,bg:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:0,bg:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.sl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Pf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},m).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Pf).onComplete(c.Bk).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Pf).start(),c.ka.position.z=2);};J.sl=function(){this.page.ka.rotation.y=this.angle;this.page.Tb&&0==this.page.pageNumber&&(this.page.pages.Bc.position.x=(1-this.bg)*this.page.pages.Bc.position.x);this.page.Ub&&0==this.page.pageNumber&&(this.page.pages.Bc.position.x=(1-this.bg)*this.page.pages.Bc.position.x-this.bg*this.page.Lc*0.5);};J.Pf=function(){this.page.cc.force=this.force;this.page.cc.offset=this.offset;this.page.la.apply();};J.Bk=function(){this.page.Tb?(this.page.Tb=!1,this.page.nh=!0,this.page.Ub=!1,this.page.oh=!1,this.page.ka.position.z=2):this.page.Ub&&(this.page.Tb=!1,this.page.oh=!0,this.page.Ub=!1,this.page.nh=!1,this.page.ka.position.z=2);this.page.cc.force=0;this.page.cc.Ag(0);this.page.cc.offset=0;this.page.la.apply();this.page.ka.castShadow=!1;this.page.pages.Wo();};var Aa="undefined"==typeof window;Aa&&(window=[]);var FlowPaperViewer_HTML=window.FlowPaperViewer_HTML=function(){function f(c){window.zine=!0;this.config=c;this.$e=this.config.instanceid;this.document=this.config.document;this.P=this.config.rootid;this.L={};this.hd=this.O=null;this.selectors={};this.H="Portrait";this.vb=null!=c.document.InitViewMode&&"undefined"!=c.document.InitViewMode&&""!=c.document.InitViewMode?c.document.InitViewMode:window.zine?"FlipView":"Portrait";this.initialized=!1;this.xe="flowpaper_selected_default";this.Va={};this.Z=[];this.Zm="data:image/gif;base64,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%3D";this.Tj="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Qh="data:image/png;base64,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%3D";this.$m="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAARVBMVEX///////////////////////////////////////////////////////////////////////////////////////////+QFj7cAAAAFnRSTlMAHDE8PkJmcXR4eY+Vs8fL09Xc5vT5J4/h6AAAAFtJREFUeNqt0kkOgDAMQ9EPZSgztMX3PyoHiMKi6ttHkZ1QI+UDpmwkXl0QZbwUnTDLKEg3LLIIQw/dYATa2vYI425sSA+ssvw8/szPnrb83vyu/Tz+Tf0/qPABFzEW/E1C02AAAAAASUVORK5CYII=";this.Sj="data:image/gif;base64,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%3D";this.Ym="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAYAAABWk2cPAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAVVSURBVHjaxFdbSFxHGJ7djfdb1HgNpsV7iwQrYhWN5EmReHlqUEGqUcGHohBCMSqhqEgU8aWiqH0QBDGkAe2bF1ARMduKldqqsURFrVqtBo1uvOzu9P+n/znMWVfNWwc+zp455/zf/LdvZnXs8qGTrrbAwe2ASddrDdvOIfSEGwADQW9DagVYCGa6t9os4kpS5bdCgGSOCpqamj5PSUm5d+fOnS98fHyiHB0dg3U6HT8/P//r6Ojoj729PePy8vJIRkbGnLQQdh25johcADcBQYDQ4uLitNevX3eB4Q2r1coVbG1t8ZWVFS7PnZ6ewtTK856eniiypbskmuoDB4ArwBfwCSCmvr7+GzBiJIO8s7OTP3jwgLu6umqQnJzMW1pauMlkEuTg9eDo6Gg62bRLrHiIhLfQO0B8VVXVk83NzUU0Mjg4yKOioi6Q2eLu3bt8enpaEJ+cnBiHh4fTJY81QwmpLxEmpKWlPVpYWJjFj7u7u7mHh8e1hC4uLgLu7u68oaFBEIPng11dXdH2iJ0ohxjSeEDmy5cvf1I8vIpQIbKHtrY2Qfz27dvnxKGXSd2oaGIAaVB9Nbu7u3tQODw8PFxDkpiYyO/fv3+BICQkhJeWlnJfX191zsvLi6+vr4vigsKKt/XWm8KaDMiFghjAFba2tmoI4+Li1Cqtra1VjUdHR/ONjQ0x39HRoc47OzvzsrIyMT8zM1NJrSdI9XSDReSJC4iNjY3ABy9evNAk/vj4mEFxiN81NTXs6dOnLDQ0lI2MjLDg4GAx//79e8Y5F8AxMDDAgJRBxL609TQEiwfwFeBbWPXewcGB3fzl5OSobYHA95Tfr1694m5ubsJDGbOzs1jJS2Dbg0RHeOpAiUZvXSEvntvb2xovlZUPDQ2x3NxcdnZ2Ju6hyMS1v7+fFRUV/SdnBoMGkFfm4OBwmwjV8Cpy50RgIG0XCJUBYiHCKI/5+XlmsVjsSh3Ogw2drNt6W2Hf2dk5DgwMtGsAciO8hWiIe8wXDhASVllZafcbzDdEZlNWJr3tS4uLi+9A0MXLspcYSiQMCAhQQ/rw4UO1uKqrq1lJSYnGFoY3MjKSQfu9kef10naEW5NlfHx8Bx9kZWVpDODHMmFhYSED8WD5+fkqMWiw5pvU1FTm6enJlpaWfrXd7rBH7wG+BnwXExPzI1TwEe4icrMjsO8qKio4GBKVqgC2PF5XV8cjIiI08xMTExx3J2ivdFK9G3ZbBvB9Y2Pj79gGzc3NGlJsAdnoVYBQi1YyGo1dxKG2jIHE3pGu2DYukFcrSJ4P5Mx9dXWVzc3NqfnV6/XXnUZYQkIC6+vrY7BL/fzs2bNW2DywkE4ohdxAhPIpwenw8BALCj++CSt2MZvNbHJy8qNIsbh6e3vZ/v7+m/b29h9AGo0oaIBT6TShFXzAI1Q6DHNSUtIwkG1hmGC1PC8vj/v5+dkNZ2ZmJocThggpFM7s48ePn5DNIOJQZVBHgoCh9QL4AQLpRSzVW0FBQbfLy8s/Kygo+BTayA12DaxGBiIuVgyFx6CARJXCiWF/bGxsEmqhH3L5GzzeBRwAPqDmUJeopwblqOJFpwd/wi3ahdzh5BCUnZ0dAluff1hYmLe/vz+uHokO19bW/p6amvoTWukXqNhZmMa2+4cITURoUVpGUQmDzW7jI8GbKs+VomJQFI7yhEZRF98B9iUc0rMzmZBJfWOh1ZjooYWq7ZhW6y6RKt+YJdIjIjmgBRxJIbXYOx9x8tYsqYaFVmgiQwqhoySdVnpHITYR0QeaO7/s7PvRh23K+w0bUjMZP5Ngvu6w/b/8rfhXgAEAmJkyLSnsNQEAAAAASUVORK5CYII=";this.tq=this.P+"_textoverlay";this.Ij="#"+this.tq;this.da=1;this.renderer=this.config.renderer;this.Ja="toolbar_"+this.P;this.K="#"+this.Ja;this.mc=!1;this.scale=this.config.document.Scale;this.resources=new FlowPaper_Resources(this);this.Rb=!1;this.hg=0;this.linkColor="#72e6ff";this.Ic=0.4;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},W:function(){return this.I?this.I.W:"";},loadFromUrl:function(c){var d=this;d.zg();var e;window.annotations&&d.plugin&&d.plugin.clearMarks();if(d.pages){for(var g=0;g<d.document.numPages;g++){d.pages.pages[g]&&delete d.pages.pages[g];}}var f=g=!1;c.RenderingOrder&&(f=c.RenderingOrder.split(","),g=0<f.length&&"html5"==f[0],f=0<f.length&&"html"==f[0]);c.DOC&&(c.PDFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"pdf"),c.SWFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"swf"),c.JSONFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jsonp"),c.IMGFiles=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jpg"));c.FitPageOnLoad&&(d.config.document.FitPageOnLoad=!0,d.config.document.FitWidthOnLoad=!1);c.FitWidthOnLoad&&(d.config.document.FitWidthOnLoad=!0,d.config.document.FitPageOnLoad=!1);(eb.browser.capabilities.gq&&c.PDFFile||g)&&!f?e=new CanvasPageRenderer(this.P,c.PDFFile,d.config.jsDirectory,{jsonfile:c.JSONFile,pageImagePattern:c.pageImagePattern,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature}):(c.JSONFile&&c.IMGFiles||f)&&!g&&(e=new ImagePageRenderer(this.P,{jsonfile:c.JSONFile,pageImagePattern:c.IMGFiles,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature},d.config.jsDirectory));d.renderer=e;jQuery(d.renderer).bind("loadingProgress",function(c,e){d.Jl(c,e);});jQuery(d.renderer).bind("labelsLoaded",function(c,e){d.Hl(c,e);});jQuery(d.renderer).bind("loadingProgressStatusChanged",function(c,e){d.Kl(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperation",function(c,e){d.Qc(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperationCompleted",function(){d.Jb();});jQuery(d.renderer).bind("outlineAdded",function(c,e){d.nl(c,e);});e&&(d.ne="",d.sj(),d.renderer=e,e.initialize(function(){d.document.numPages=e.getNumPages();d.document.dimensions=e.getDimensions();d.document.StartAtPage=c.StartAtPage;d.loadDoc(e,e.getNumPages());},{}));},loadDoc:function(c,d){this.initialized=!1;this.document.numPages=d;this.renderer=c;this.show();},getDimensions:function(c){return this.renderer.getDimensions(c);},Mn:function(c){if(jQuery(c.target).hasClass("flowpaper_note_container")&&eb.platform.touchdevice){return window.Cb=!1,!0;}var d=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;if(this.mc||eb.platform.touchdevice){c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(this.P));if(!hoverPageObject&&!window.Cb||!window.Cb){return !0;}eb.platform.touchdevice&&(c.preventDefault&&c.preventDefault(),c.stopPropagation&&c.stopPropagation(),this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").disable());this.H==this.W()&&1<this.scale?window.b=hoverPageObject.hl(c.target.id):window.b=hoverPageObject.match({left:d,top:e},!1);null!=window.b&&null!=window.a&&window.a.pageNumber!=window.b.pageNumber&&(window.a=hoverPageObject.match({left:d-1,top:e-1},!1));this.Ie(!0);this.ge=hoverPageObject.zf(!0,this.xe);}else{if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(this.P)),hoverPageObject&&hoverPageObject.match({left:d,top:e},!0),!hoverPageObject&&!window.Cb){return !0;}}},Ie:function(c){eb.platform.touchdevice||(this.ge=null);this.mc&&(jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected"),jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected_default"));c&&jQuery(".flowpaper_pageword_"+this.P).each(function(){jQuery(this).hasClass("flowpaper_selected_yellow")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_yellow");jQuery(this).hasClass("flowpaper_selected_orange")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_orange");jQuery(this).hasClass("flowpaper_selected_green")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_green");jQuery(this).hasClass("flowpaper_selected_blue")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_blue");jQuery(this).hasClass("flowpaper_selected_strikeout")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_strikeout");});},Nn:function(c){this.rh="up";this.Xc=this.Pi=!1;this.fl=null;if(!this.pages||!this.pages.animating){if(jQuery(c.target).hasClass("flowpaper_searchabstract_result")||jQuery(c.target).parent().hasClass("flowpaper_searchabstract_result")||jQuery(c.target).hasClass("flowpaper_note_container")||"TEXTAREA"==c.target.tagName||jQuery(c.target).hasClass("flowpaper_textarea_contenteditable")||jQuery(c.target).parent().hasClass("flowpaper_textarea_contenteditable")){return !0;}if(this.mc||eb.platform.touchdevice){if(hoverPageObject){if(eb.platform.touchdevice){var d=null;"undefined"!=typeof c.originalEvent.touches&&(d=c.originalEvent.touches[0]||c.originalEvent.changedTouches[0]);null!=d&&this.Zc==d.pageX&&this.$c==d.pageY&&(this.Ie(),this.ge=hoverPageObject.zf(window.Cb,this.xe));null!=d&&(this.Zc=d.pageX,this.$c=d.pageY);this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").enable();}else{window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1);}null!=this.ge&&this.L.trigger("onSelectionCreated",this.ge.text);window.Cb=!1;window.a=null;window.b=null;}}else{hoverPageObject&&(window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1),window.Cb=!1,this.Ie(),this.ge=hoverPageObject.zf(!1,this.xe));}}},Ln:function(c){var d=this;d.rh="down";if(jQuery(c.target).hasClass("flowpaper_note_textarea")||"INPUT"==jQuery(c.target).get(0).tagName){window.b=null,window.a=null;}else{if(!d.pages.animating){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,g=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.Zc=e;d.$c=g;eb.platform.touchdevice&&(eb.platform.touchonlydevice&&window.annotations&&(d.mc=!0,d.Ie(!0)),window.clearTimeout(d.Jo),d.fl=(new Date).getTime(),document.activeElement&&jQuery(document.activeElement).hasClass("flowpaper_note_textarea")&&document.activeElement.blur(),d.Jo=setTimeout(function(){if(null!=d.fl&&c.originalEvent.touches&&0<c.originalEvent.touches.length){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,g=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.Zc+20>e&&d.Zc-20<e&&d.$c+20>g&&d.$c-20<g&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(d.P),null!=hoverPageObject&&(null!=d.pages.jScrollPane&&d.pages.jScrollPane.data("jsp").disable(),window.Cb=!0,d.Ie(!0),window.b=hoverPageObject.match({left:e,top:g},!1),window.a=hoverPageObject.match({left:e-1,top:g-1},!1),d.ge=hoverPageObject.zf(!0,d.xe)));}},800));if(d.mc||eb.platform.touchdevice){if(!hoverPageObject){if(eb.platform.touchdevice){if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(d.P)),!hoverPageObject){window.a=null;return;}}else{window.a=null;return;}}d.H==d.W()&&1<d.scale?window.a=hoverPageObject.hl(c.target.id):window.a=hoverPageObject.match({left:e,top:g},!0);if(window.a){return window.Cb=!0,d.Ie(),d.ge=hoverPageObject.zf(!1,d.xe),!1;}jQuery(c.target).hasClass("flowpaper_tblabelbutton")||jQuery(c.target).hasClass("flowpaper_tbtextbutton")||jQuery(c.target).hasClass("flowpaper_colorselector")||jQuery(c.target).hasClass("flowpaper_tbbutton")||eb.platform.touchdevice||(d.Ie(),d.ge=hoverPageObject.zf(!1,d.xe));window.Cb=!1;return !0;}window.a=hoverPageObject?hoverPageObject.match({left:e,top:g},!0):null;}}},ld:function(){this.width||(this.width=this.O.width());return this.width;},um:function(){return null!=this.pages?this.H!=this.W()?this.pages.R+1:this.pages.R:1;},bindEvents:function(){var c=this;hoverPage=0;hoverPageObject=null;c.O.bind("mousemove",function(d){return c.Mn(d);});c.O.bind("mousedown",function(d){return c.Ln(d);});c.O.bind("mouseup",function(d){return c.Nn(d);});var d=jQuery._data(jQuery(window)[0],"events");eb.platform.android?jQuery(window).bind("orientationchange",function(d){c.Kj(d);}):jQuery(window).bind("resize",function(d){c.Kj(d);});jQuery(window).bind("orientationchange",function(d){c.Ro(d);});d&&d.resize&&(c.zl=d.resize[d.resize.length-1]);if(!c.document.DisableOverflow){try{jQuery.get(c.config.localeDirectory+c.document.localeChain+"/FlowPaper.txt",function(d){c.toolbar.cl(d);c.sj();}).error(function(){c.sj();O("Failed loading supplied locale ("+c.document.localeChain+")");}),c.toolbar.cl("");}catch(e){}}c.ne||(c.ne="");},Ro:function(c){var d=this;d.hi=!0;if(window.zine&&d.H==d.W()){var e=window.screen&&window.screen.orientation?window.screen.orientation.angle:window.orientation;if("Flip-SinglePage"!=d.document.InitViewMode){switch(e){case -90:case 90:d.I.Ea="Flip-SinglePage"!=d.config.document.TouchInitViewMode?!1:!0;break;default:d.I.Ea=!0;}}d.I.tb=d.I.ii();setTimeout(function(){d.H="";d.switchMode(d.W(),d.getCurrPage()-1);d.hi=!1;window.scrollTo(0,0);},500);jQuery(".flowpaper_glyphcanvas").css("z-index",-1);}if("Portrait"==d.H||"SinglePage"==d.H){d.config.document.FitPageOnLoad&&d.fitheight(),d.config.document.FitWidthOnLoad&&d.fitwidth(),d.O.height("auto"),setTimeout(function(){requestAnim(function(){d.Kj(c);d.O.height("auto");d.hi=!1;});},1000);}},Kj:function(c){if(!this.document.DisableOverflow&&!this.hi&&!jQuery(c.target).hasClass("flowpaper_note")){c=this.O.width();var d=this.O.height(),e=!1,g=-1;this.mj?g=this.mj:0<this.O[0].style.width.indexOf("%")&&(this.mj=g=parseFloat(this.O[0].style.width.substr(0,this.O[0].style.width.length-1)/100));0<g&&(c=0==this.O.parent().width()?jQuery(document).width()*g:this.O.parent().width()*g,e=!0);g=-1;this.lj?g=this.lj:0<this.O[0].style.height.indexOf("%")&&(this.lj=g=parseFloat(this.O[0].style.height.substr(0,this.O[0].style.height.length-1)/100));0<g&&(d=0==this.O.parent().height()?jQuery(window).height()*g:this.O.parent().height()*g,e=!0);g=document.Cb||document.mozFullScreen||document.webkitIsFullScreen||window.Cm||window.Jh;e&&!g&&this.resize(c,d);}},sj:function(){var c=this;if(!c.document.DisableOverflow){if(c.bf||(c.bf=null!=c.toolbar&&null!=c.toolbar.Ta?c.toolbar.ua(c.toolbar.Ta,"LoadingPublication"):"Loading Publication"),null==c.bf&&(c.bf="Loading Publication"),c.em=window.zine&&(c.renderer.config.pageThumbImagePattern&&0<c.renderer.config.pageThumbImagePattern.length||c.config.document.LoaderImage),c.em){var d=new Image;jQuery(d).bind("load",function(){if(!c.initialized&&(!c.Va||c.Va&&!c.Va.jquery)){var d=this.width/1.5,g=this.height/1.5;this.width=d;this.height=g;110<d&&(g=this.width/this.height,d=110,g=d/g);c.Va=jQuery(String.format("<div class='flowpaper_loader' style='position:{1};z-index:100;top:50%;left:50%;color:#ffffff;width:{5}px;margin-left:-{10}px;margin-top:-{11}px'><div style='position:relative;'><div class='flowpaper_titleloader_image' style='position:absolute;left:0px;'></div><div class='flowpaper_titleloader_progress' style='position:absolute;left:{7}px;width:{8}px;height:{6}px;background-color:#000000;opacity:0.3;'></div></div></div>",c.P,"static"==c.O.css("position")?"relative":"fixed",c.I.Ea&&!c.Se?"35%":"47%",c.I.kb,c.renderer.ja(1,200),d,g,0,d,c.I.Ea&&!c.Se?"30%":"40%",d/2,g/2));c.O.append(c.Va);jQuery(this).css({width:d+"px",height:g+"px"});c.Va.find(".flowpaper_titleloader_image").append(this);}});c.config.document.LoaderImage?d.src=c.config.document.LoaderImage:d.src=c.renderer.ja(1,200);}else{!window.zine||eb.browser.msie&&10>eb.browser.version?(c.Va=jQuery(String.format("<div class='flowpaper_loader flowpaper_initloader' style='position:{2};z-index:100;'><div class='flowpaper_initloader_panel' style='{1};background-color:#ffffff;'><img src='{0}' style='vertical-align:middle;margin-top:7px;margin-left:5px;'><div style='float:right;margin-right:25px;margin-top:19px;' class='flowpaper_notifylabel'>"+c.bf+"<br/><div style='margin-left:30px;' class='flowpaper_notifystatus'>"+c.ne+"</div></div></div></div>",c.Zm,"margin: 0px auto;","static"==c.O.css("position")?"relative":"absolute")),c.O.append(c.Va)):(c.Va=jQuery(String.format("<div id='flowpaper_initloader_{0}' class='flowpaper_loader flowpaper_initloader' style='position:{1};margin: 0px auto;z-index:100;top:40%;left:{2}'></div>",c.P,"static"==c.O.css("position")?"relative":"absolute",eb.platform.iphone?"40%":"50%")),c.O.append(c.Va),c.Ec=new CanvasLoader("flowpaper_initloader_"+c.P),c.Ec.setColor("#555555"),c.Ec.setShape("square"),c.Ec.setDiameter(70),c.Ec.setDensity(151),c.Ec.setRange(0.8),c.Ec.setSpeed(2),c.Ec.setFPS(42),c.Ec.show());}}},initialize:function(){var c=this;FLOWPAPER.Lk.init();c.xp();c.wp();c.Wb=location.hash&&0<=location.hash.substr(1).indexOf("inpublisher")?!0:!1;c.L=jQuery("#"+c.P);c.toolbar=new ua(this,this.document);c.Tk=c.document.ImprovedAccessibility;!eb.platform.iphone||c.config.document.InitViewMode||window.zine||(c.vb="Portrait");"BookView"==c.config.document.InitViewMode&&0==c.document.StartAtPage%2&&(c.document.StartAtPage+=1);c.config.document.TouchInitViewMode&&c.config.document.TouchInitViewMode!=c.vb&&eb.platform.touchonlydevice&&(c.vb=c.config.document.TouchInitViewMode);c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||window.zine||(c.vb="SinglePage");window.zine&&!c.document.DisableOverflow?(c.I=c.toolbar.ng=new FlowPaperViewer_Zine(c.toolbar,this,c.L),"Portrait"!=c.vb&&"Portrait"!=c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||(c.config.document.TouchInitViewMode=c.config.document.InitViewMode=c.H="Flip-SinglePage"),c.I.initialize(),c.H!=c.W()&&(c.H=c.vb)):c.H=c.vb;"CADView"==c.H&&(c.H="SinglePage");window.zine&&(eb.browser.msie&&9>eb.browser.version||eb.browser.safari&&5>eb.browser.Kb)&&!eb.platform.touchonlydevice&&(c.document.MinZoomSize=c.MinZoomSize=0.3,c.H="BookView");"0px"==c.L.css("width")&&c.L.css("width","1024px");"0px"==c.L.css("height")&&c.L.css("height","600px");c.Rb=c.H==c.W()&&(eb.platform.iphone||eb.platform.lb);null!==c.O||c.I||(0<c.L.css("width").indexOf("%")&&(c.mj=parseFloat(c.L[0].style.width.substr(0,c.L[0].style.width.length-1)/100)),0<c.L.css("height").indexOf("%")&&(c.lj=parseFloat(c.L[0].style.height.substr(0,c.L[0].style.height.length-1)/100)),c.document.DisableOverflow?(c.config.document.FitPageOnLoad=!1,c.config.document.FitWidthOnLoad=!0,c.O=jQuery("<div style='left:0px;top:0px;position:absolute;width:"+(window.printWidth?window.printWidth:"210mm")+";height:"+(window.printHeight?window.printHeight:"297mm")+";' class='flowpaper_viewer_container'/>")):(c.O=jQuery("<div style='"+c.L.attr("style")+";' class='flowpaper_viewer_wrap flowpaper_viewer_container'/>"),""!=c.O.css("position")&&"static"!=c.O.css("position")||c.O.css({position:"relative"})),c.O=c.L.wrap(c.O).parent(),c.document.DisableOverflow?c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%","max-width":window.printWidth?window.printWidth:"210mm","max-height":window.printHeight?window.printHeight:"297mm"}).addClass("flowpaper_viewer"):c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer").addClass("flowpaper_viewer_gradient"),window.annotations&&c.config.document.AnnotationToolsVisible&&!c.document.DisableOverflow?(c.hg=eb.platform.touchdevice?15:22,c.L.height(c.L.height()-c.hg)):c.hg=0);c.uq=c.O.html();eb.browser.msie&&jQuery(".flowpaper_initloader_panel").css("left",c.L.width()-500);c.document.DisableOverflow||(null==c.config.Toolbar&&0==jQuery("#"+c.Ja).length?(c.Toolbar=c.O.prepend("<div id='"+c.Ja+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent(),c.toolbar.create(c.Ja)):null==c.config.Toolbar||c.Toolbar instanceof jQuery||(c.config.Toolbar=unescape(c.config.Toolbar),c.Toolbar=jQuery(c.config.Toolbar),c.Toolbar.attr("id",c.Ja),c.O.prepend(c.Toolbar)));c.ak();c.document.DisableOverflow||c.resources.initialize();c.document.DisplayRange&&(c.DisplayRange=ba(c.document.DisplayRange));hoverPage=0;hoverPageObject=null;null!=c.I?c.I.En(c.Ja):window.annotations&&(c.plugin=new FlowPaperViewerAnnotations_Plugin(this,this.document,c.Ja+"_annotations"),c.plugin.create(c.Ja+"_annotations"),c.plugin.bindEvents(c.F));c.document.DisableOverflow||(eb.platform.touchonlydevice||c.O.append("<textarea id='selector' class='flowpaper_selector' rows='0' cols='0'></textarea>"),0==jQuery("#printFrame_"+c.P).length&&c.O.append("<iframe id='printFrame_"+c.P+"' name='printFrame_"+c.P+"' class='flowpaper_printFrame'>"));jQuery(c.renderer).bind("loadingProgress",function(d,e){c.Jl(d,e);});jQuery(c.renderer).bind("labelsLoaded",function(d,e){c.Hl(d,e);});jQuery(c.renderer).bind("loadingProgressStatusChanged",function(d,e){c.Kl(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperation",function(d,e){c.Qc(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperationCompleted",function(){c.Jb();});jQuery(c.renderer).bind("outlineAdded",function(d,e){c.nl(d,e);});$FlowPaper(c.P).dispose=c.dispose;$FlowPaper(c.P).highlight=c.highlight;$FlowPaper(c.P).rotate=c.rotate;$FlowPaper(c.P).getCurrentRenderingMode=c.getCurrentRenderingMode;},ak:function(){this.hn||this.document.DisableOverflow||(eb.platform.touchonlydevice&&!this.Rb?eb.platform.touchonlydevice?(window.zine?this.L.height(this.L.height()-(this.config.BottomToolbar?65:0)):window.annotations?this.L.height(this.L.height()-(this.config.BottomToolbar?65:47)):this.L.height(this.L.height()-(this.config.BottomToolbar?65:25)),this.config.BottomToolbar&&this.O.height(this.O.height()-(eb.platform.lb?7:18))):this.L.height(this.L.height()-25):window.zine&&"Portrait"!=this.H||(this.config.BottomToolbar?this.L.height(this.L.height()-jQuery(this.K).height()+11):this.L.height(this.L.height()-23)),this.hn=!0);},Hl:function(c,d){if(window.zine&&this.I&&this.I.Wc){var e=this.I.Wc.createElement("labels");this.I.Wc.childNodes[0].appendChild(e);try{for(var g=0;g<d.Yk.length;g++){var f=d.Yk[g],m=e,l=this.I.Wc.createElement("node");l.setAttribute("pageNumber",g+1);l.setAttribute("title",escape(f));m.appendChild(l);}}catch(k){}this.labels=jQuery(e);}},Jl:function(c,d){var e=this;e.ne=Math.round(100*d.progress)+"%";e.Va&&e.Va.find&&0<e.Va.find(".flowpaper_notifystatus").length&&e.Va.find(".flowpaper_notifystatus").html(e.ne);if(e.em&&e.Va&&e.Va.find){var g=e.Va.find(".flowpaper_titleloader_progress");if(g){var f=e.Va.find(".flowpaper_titleloader_image");if(0<f.length){var m=f.css("width"),m=parseFloat(m.replace("px",""));requestAnim(function(){(isNaN(e.ne)||parseFloat(e.ne)<Math.round(100*d.progress))&&g.animate({left:m*d.progress+"px",width:m*(1-d.progress)+"px"},100);});}}}},Kl:function(c,d){this.bf=d.label;this.Va.find(".flowpaper_notifylabel").html(d.label);},Qc:function(c,d){var e=this;e.document.DisableOverflow||null!==e.hd||(e.hd=jQuery("<div style='position:absolute;left:50%;top:50%;'></div>"),e.O.append(e.hd),e.hd.spin({color:"#777"}),null!=e.Ii&&(window.clearTimeout(e.Ii),e.Ii=null),d.Zo||(e.Ii=setTimeout(function(){e.hd&&(e.hd.remove(),e.hd=null);},1000)));},Jb:function(){this.hd&&(this.hd.remove(),this.hd=null);},show:function(){var c=this;jQuery(c.resources).bind("onPostinitialized",function(){setTimeout(function(){c.zg();c.config.document.RTLMode&&c.renderer.S&&c.renderer.S.length&&(c.document.StartAtPage=c.renderer.S.length-c.document.StartAtPage+(0==c.renderer.S.length%2?1:0));c.document.DisableOverflow||null!=c.I?null!=c.I&&c.I.Jg&&c.toolbar.bindEvents(c.L):c.toolbar.bindEvents(c.L);c.I&&c.I.Jg&&null!=c.I&&!c.document.DisableOverflow&&c.I.bindEvents(c.L);c.I&&!c.I.Jg?c.Vg=function(){c.toolbar.bindEvents(c.L);c.I.bindEvents(c.L);c.Rh(c.document.StartAtPage);jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages());}:(c.Rh(c.document.StartAtPage),jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages()));},50);jQuery(c.resources).unbind("onPostinitialized");});c.resources.ap();},dispose:function(){this.Jn=!0;this.L.unbind();this.L.find("*").unbind();this.O.find("*").unbind();this.O.find("*").remove();this.L.empty();this.O.empty();jQuery(this).unbind();0==jQuery(".flowpaper_viewer_container").length&&window.PDFJS&&delete window.PDFJS;this.plugin&&(jQuery(this.plugin).unbind(),this.plugin.dispose(),delete this.plugin,this.plugin=null);jQuery(this.renderer).unbind();this.renderer.dispose();delete this.renderer;delete this.config;jQuery(this.pages).unbind();this.pages.dispose();delete this.pages;delete window["wordPageList_"+this.P];window["wordPageList_"+this.P]=null;this.O.unbind("mousemove");this.O.unbind("mousedown");this.O.unbind("mouseup");jQuery(window).unbind("resize",this.zl);delete this.zl;jQuery(this.renderer).unbind("loadingProgress");jQuery(this.renderer).unbind("labelsLoaded");jQuery(this.renderer).unbind("loadingProgressStatusChanged");jQuery(this.renderer).unbind("UIBlockingRenderingOperation");jQuery(this.renderer).unbind("UIBlockingRenderingOperationCompleted");this.I?this.I.dispose():this.L.parent().remove();var c=this.O.parent(),d=this.O.attr("style");this.O.remove();delete this.O;delete this.L;this.renderer&&(delete this.renderer.xa,delete this.renderer.S,delete this.renderer.Qa,delete this.renderer.Dh,delete this.renderer.ya);delete this.renderer;var e=jQuery(this.uq);e.attr("style",d);e.attr("class","flowpaper_viewer");c.append(e);this.plugin&&delete this.plugin;},vh:function(){var c=this;eb.platform.touchonlydevice?(c.initialized=!0,(!c.I&&c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H||"Portrait"==c.H||"SinglePage"==c.H)&&c.fitwidth(),(c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H||c.I)&&c.fitheight(),c.pages.Gg(),c.pages.cd()):(c.initialized=!0,c.cr||c.toolbar.$j(c.config.document.MinZoomSize,c.config.document.MaxZoomSize),c.document.DisableOverflow?c.fitwidth():c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H?c.fitheight():c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H?c.fitwidth():c.Zoom(c.config.document.Scale));c.document.StartAtPage&&1!=c.document.StartAtPage||c.H==c.W()||c.L.trigger("onCurrentPageChanged",c.pages.R+1);c.document.StartAtPage&&1!=c.document.StartAtPage&&c.pages.scrollTo(c.document.StartAtPage);c.I&&c.I.vh();c.Va&&c.Va.fadeOut?c.Va.fadeOut(300,function(){c.Va&&(c.Va.remove(),c.O.find(".flowpaper_loader").remove(),c.Ec&&(c.Ec.kill(),delete c.Ec),delete c.Va,c.Ec=null,jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.jb.Sh(c.pages,c.L));}):(c.O.find(".flowpaper_loader").remove(),jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.jb.Sh(c.pages,c.L));c.L.trigger("onInitializationComplete");},zg:function(){this.renderer.si=!1;if(this.pages){for(var c=0;c<this.document.numPages;c++){this.pages.pages[c]&&window.clearTimeout(this.pages.pages[c].kc);}}this.da=1;this.L.find("*").unbind();this.L.find("*").remove();this.L.empty();this.ne=0;this.renderer.If=!1;jQuery(".flowpaper_glyphcanvas").css("z-index",-1);jQuery(this.Ij).remove();this.I&&this.I.zg();},Rh:function(c){this.pages=new W(this.L,this,this.P,c);this.pages.create(this.L);},previous:function(){var c=this;c.cj||c.H==c.W()?c.H==c.W()&&c.pages.previous():(c.cj=setTimeout(function(){window.clearTimeout(c.cj);c.cj=null;},700),c.pages.previous());},nl:function(){for(var c=jQuery.parseXML("<UIConfig></UIConfig>"),d=c.createElement("outline"),e=0;e<this.renderer.outline.length;e++){ca(c,this.renderer.outline[e],d,this.renderer);}this.outline=jQuery(d);},expandOutline:function(){var c=this;c.Pa&&c.Jf();if(!c.$a&&c.outline&&(!c.outline||0!=c.outline.length)){c.ma=c.L.width();c.za=c.L.height();var d=c.bf=null!=c.toolbar&&null!=c.toolbar.Ta?c.toolbar.ua(c.toolbar.Ta,"TOC","Table of Contents"):"Table of Contents",e=window.zine?jQuery(c.K).css("background-color"):"transparent",g=window.zine?"transparent":"#c8c8c8",f=c.H==c.W()?"40px":jQuery(c.K).height()+2;c.W();var m=c.H==c.W()?30:40,l=c.H==c.W()?0:41,k=c.I&&!c.I.nf?jQuery(c.K).offset().top+jQuery(c.K).outerHeight():0,n=c.H==c.W()?c.O.height():parseFloat(jQuery(c.pages.J).css("height"))-10;c.Dg=c.O.find(c.K).css("margin-left");"rgba(0, 0, 0, 0)"==e.toString()&&(e="#555");c.O.append(jQuery(String.format("<div class='flowpaper_toc' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:50;background:{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle;width:14px;height:auto;'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_toc_close' /></div><hr size='1' color='#ffffff' /></div></div>"+(window.zine?"":"<div class='flowpaper_bottom_fade'></div></div>"),d,c.$m,"20%","250px",c.Qh,n,e,n-20,k,g)));c.$a=c.O.find(".flowpaper_toc");jQuery(c.$a.children()[0]).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(c.$a.children()[0]).append("<div class='flowpaper_toc_content' style='display:block;position:relative;height:"+(jQuery(c.$a.children()[0]).height()-m)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'><ul class='flowpaper_accordionSkinClear'>"+ka(c,c.outline.children()).html()+"</ul></div>");d=jQuery(".flowpaper_accordionSkinClear").children();0<d.children().length&&(d=jQuery(d.get(0)).children(),0<d.children().length&&jQuery(d.find("li").get(0)).addClass("cur"));window.zine?(jQuery(c.K).css("opacity",0.7),c.resize(c.L.width(),c.L.height()+l,!1,function(){})):"TwoPage"!=c.H&&c.H!=c.W()&&c.resize(c.L.width(),c.O.height()+1,!1,function(){});jQuery(".flowpaper_accordionSkinClear").zo();jQuery(".flowpaper-tocitem").bind("mousedown",function(){c.gotoPage(jQuery(this).data("pagenumber"));});c.H==c.W()?(l=c.O.width()-c.L.width(),c.L.animate({left:Math.abs(l)+"px"},0)):c.L.animate({left:c.$a.width()+"px"},0);l=0.5*c.$a.width();jQuery(c.K).width()+l>c.O.width()&&(l=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Dg)+l+"px"},200,function(){if(window.onresize){window.onresize();}});0==l&&c.$a.css({top:f,height:c.L.height()-40+"px"});c.H==c.W()&&c.I.Ql();c.$a.fadeTo("fast",1);c.O.find(".flowpaper_toc_close").bind("mousedown",function(){c.Sk();});}},Sk:function(){this.$a.hide();this.O.find(".flowpaper_tocitem, .flowpaper_tocitem_separator").remove();this.$a.remove();this.$a=null;window.zine&&(jQuery(this.K).css("opacity",1),this.resize(this.ma,this.za+33,!1));this.L.css({left:"0px"});jQuery(this.K).animate({"margin-left":parseFloat(this.Dg)+"px"},200);this.H==this.W()&&this.I.Jf();},setCurrentCursor:function(c){"ArrowCursor"==c&&(this.mc=!1,addCSSRule(".flowpaper_pageword","cursor","default"),window.annotations||jQuery(".flowpaper_pageword_"+this.P).remove());"TextSelectorCursor"==c&&(this.mc=!0,this.xe="flowpaper_selected_default",addCSSRule(".flowpaper_pageword","cursor","text"),window.annotations||(this.pages.getPage(this.pages.R-1),this.pages.getPage(this.pages.R-2),jQuery(".flowpaper_pageword_"+this.P).remove(),this.pages.Da()));this.I&&this.I.setCurrentCursor(c);this.pages.setCurrentCursor(c);jQuery(this.K).trigger("onCursorChanged",c);},highlight:function(c){var d=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){},success:function(c){jQuery(c).find("Body").attr("color");c=jQuery(c).find("Highlight");var g=0,f=-1,m=-1;jQuery(c).find("loc").each(function(){g=parseInt(jQuery(this).attr("pg"));f=parseInt(jQuery(this).attr("pos"));m=parseInt(jQuery(this).attr("len"));d.pages.getPage(g).Ee(f,m,!1);});d.pages.Da();}});},printPaper:function(c){if(this.document.PrintFn){this.document.PrintFn();}else{if(eb.platform.touchonlydevice){c="current";}else{if(!c){jQuery("#modal-print").css("background-color","#dedede");jQuery("#modal-print").smodal({minHeight:255,appendTo:this.O});jQuery("#modal-print").parent().css("background-color","#dedede");return;}}"current"==c&&0<jQuery(this.K).find(".flowpaper_txtPageNumber").val().indexOf("-")&&(c=jQuery(this.K).find(".flowpaper_txtPageNumber").val());var d=null,e="ImagePageRenderer";if("ImagePageRenderer"==this.renderer.Ff()||this.document.MixedMode||this.renderer.config.pageImagePattern&&this.renderer.config.jsonfile){e="ImagePageRenderer",d="{key : '"+this.config.key+"',jsonfile : '"+this.renderer.config.jsonfile+"',compressedJsonFormat : "+(this.renderer.Fa?this.renderer.Fa:!1)+",pageImagePattern : '"+this.renderer.config.pageImagePattern+"',JSONDataType : '"+this.renderer.config.JSONDataType+"',signature : '"+this.renderer.config.signature+"',UserCollaboration : "+this.config.UserCollaboration+"}";}"CanvasPageRenderer"==this.renderer.Ff()&&(e="CanvasPageRenderer",d="{key : '"+this.config.key+"',jsonfile : '"+this.renderer.config.jsonfile+"',PdfFile : '"+this.renderer.file+"',compressedJsonFormat : "+(this.renderer.Fa?this.renderer.Fa:!1)+",pageThumbImagePattern : '"+this.renderer.config.pageThumbImagePattern+"',pageImagePattern : '"+this.renderer.config.pageImagePattern+"',JSONDataType : '"+this.renderer.config.JSONDataType+"',signature : '"+this.renderer.config.signature+"',UserCollaboration : "+this.config.UserCollaboration+"}");if(0<jQuery("#printFrame_"+this.P).length){var g=window.printFrame=eb.browser.msie||eb.browser.ef?window.open().document:jQuery("#printFrame_"+this.P)[0].contentWindow.document||jQuery("#printFrame_"+this.P)[0].contentDocument,f="",m=Math.floor(this.renderer.getDimensions()[0].width),l=Math.floor(this.renderer.getDimensions()[0].height);jQuery("#printFrame_"+this.P).css({width:S(m)+"px",height:S(l)+"px"});g.open();f+="<!doctype html><html>";f+="<head>";f+="<script type='text/javascript' src='"+this.config.jsDirectory+"jquery.min.js'>\x3c/script>";f+="<script type='text/javascript' src='"+this.config.jsDirectory+"jquery.extensions.min.js'>\x3c/script>";f+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper.js">\x3c/script>';f+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper_handlers.js">\x3c/script>';f+="<script type='text/javascript' src='"+this.config.jsDirectory+"FlowPaperViewer.js'>\x3c/script>";eb.browser.safari||this.renderer.qa&&eb.platform.mac||(f+="<script type='text/javascript'>window.printWidth = '"+m+"pt';window.printHeight = '"+l+"pt';\x3c/script>");f+="<style type='text/css' media='print'>html, body { height:100%; } body { margin:0; padding:0; } .flowpaper_ppage { clear:both;display:block;max-width:"+m+"pt !important;max-height:"+l+"pt !important;margin-top:0px;} .ppage_break { page-break-after : always; } .ppage_none { page-break-after : avoid; }</style>";this.renderer.qa?this.renderer.qa&&(eb.browser.safari||eb.platform.mac)&&(f+="<style type='text/css' media='print'>@page { size: auto; margin: 0mm; }</style>"):f+="<style type='text/css' media='print'>@supports ((size:A4) and (size:1pt 1pt)) {@page { margin: 0mm 0mm 0mm 0mm; size: "+m+"pt "+l+"pt;}}</style>";f+="<link rel='stylesheet' type='text/css' href='"+this.config.cssDirectory+"flowpaper.css' />";f+="</head>";f+="<body>";f+='<script type="text/javascript">';f+="function waitForLoad(){";f+="if(window.jQuery && window.$FlowPaper && window.print_flowpaper_Document ){";f+="window.focus();";f+="window.print_flowpaper_Document('"+e+"',"+d+",'"+c+"', "+this.um()+", "+this.getTotalPages()+", '"+this.config.jsDirectory+"');";f+="}else{setTimeout(function(){waitForLoad();},1000);}";f+="}";f+="waitForLoad();";f+="\x3c/script>";f+="</body></html>";g.write(f);eb.browser.msie||setTimeout("window['printFrame'].close();",3000);eb.browser.msie&&9<=eb.browser.version&&g.close();}}},switchMode:function(c,d){var e=this;e.H==c||("TwoPage"==c||"BookView"==c)&&2>e.getTotalPages()||(d>e.getTotalPages()&&(d=e.getTotalPages()),e.Pa&&e.Jf(),jQuery(e.pages.J).Qn(function(){e.I&&e.I.switchMode(c,d);"Tile"==c&&(e.H="ThumbView");"Portrait"==c&&(e.H="SinglePage"==e.vb?"SinglePage":"Portrait");"SinglePage"==c&&(e.H="SinglePage");"TwoPage"==c&&(e.H="TwoPage");"BookView"==c&&(e.H="BookView");e.zg();e.pages.np();e.renderer.Le=-1;e.renderer.xa&&e.renderer.xa.tp();"TwoPage"!=c&&"BookView"!=c&&(null!=d?e.pages.R=d-1:d=1);e.Rh(d);jQuery(e.K).trigger("onViewModeChanged",c);setTimeout(function(){!eb.platform.touchdevice||eb.platform.touchdevice&&("SinglePage"==c||"Portrait"==c)?e.fitheight():"TwoPage"!=c&&"BookView"!=c&&c!=e.W()&&e.fitwidth();"TwoPage"!=c&&"BookView"!=c&&e.Gc(d);},100);}));},fitwidth:function(){if("TwoPage"!=this.H&&"BookView"!=this.H&&"ThumbView"!=this.H){var c=jQuery(this.pages.J).width()-(this.document.DisableOverflow?0:15);this.Pa&&(c-=100);var d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.ma/this.pages.getPage(d).dimensions.za;if(eb.platform.touchonlydevice){f=c/(this.pages.getPage(d).La*e)-(this.document.DisableOverflow?0:0.03),window.FitWidthScale=f,this.hb(f),this.pages.wj();}else{var f=c/(this.pages.getPage(d).La*this.document.MaxZoomSize*e)-(this.document.DisableOverflow?0:0.012);if(90==this.pages.getPage(d).rotation||270==this.pages.getPage(d).rotation){f=this.Ue();}window.FitWidthScale=f;jQuery(this.K).trigger("onScaleChanged",f/this.document.MaxZoomSize);if(this.document.DisableOverflow){for(var h=S(parseFloat(window.printHeight))-0,m=this.pages.getPage(d).La*this.document.MaxZoomSize*f,l=this.pages.getPage(d).La*this.pages.getPage(d).ke()*this.document.MaxZoomSize*f,k=0;m>h;){f=c/(this.pages.getPage(d).La*this.document.MaxZoomSize*e)+k,m=this.pages.getPage(d).La*this.document.MaxZoomSize*f,l=this.pages.getPage(d).La*this.pages.getPage(d).ke()*this.document.MaxZoomSize*f,k-=0.0001;}this.O.css("width",Math.floor(l)+"px");this.O.css("height",Math.floor(m)+"px");}f*this.document.MaxZoomSize>=this.document.MinZoomSize&&f<=this.document.MaxZoomSize&&("Portrait"==this.H?this.hb(this.document.MaxZoomSize*f,{kg:!0}):this.hb(this.document.MaxZoomSize*f));}}},getCurrentRenderingMode:function(){return this.renderer instanceof CanvasPageRenderer?"html5":"html";},hb:function(c,d){var e=this;if(e.initialized&&e.pages){e.H==e.W()&&1==c&&(d=d||{},d.kg=!0);if(!d||d&&!d.kg){var f=100/(100*e.document.ZoomInterval);c=Math.round(c*f)/f;}e.H==e.W()&&1>c&&(c=1);jQuery(e.K).trigger("onScaleChanged",c/e.document.MaxZoomSize);var f=jQuery(e.pages.J).prop("scrollHeight"),h=jQuery(e.pages.J).scrollTop(),f=0<h?h/f:0;null!=e.uf&&(window.clearTimeout(e.uf),e.uf=null);e.pages.lp()&&e.scale!=c&&(jQuery(".flowpaper_annotation_"+e.P).remove(),jQuery(".flowpaper_pageword_"+e.P).remove());e.uf=setTimeout(function(){e.jc();e.pages&&e.pages.Da();},500);if(0<c){c<e.config.document.MinZoomSize&&(c=this.config.document.MinZoomSize);c>e.config.document.MaxZoomSize&&(c=this.config.document.MaxZoomSize);e.pages.Oa(c,d);e.scale=c;!d||d&&!d.Vc?e.pages.pages[0]&&e.pages.pages[0].He():e.pages.Ug(d.Ob,d.oc);jQuery(e.K).trigger("onZoomFactorChanged",{Af:c,F:e});if("undefined"!=window.FitWidthScale&&Math.round(100*window.FitWidthScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitWidth"),window.onFitModeChanged){window.onFitModeChanged("Fit Width");}}else{if("undefined"!=window.FitHeightScale&&Math.round(100*window.FitHeightScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitHeight"),window.onFitModeChanged){window.onFitModeChanged("Fit Height");}}else{if(jQuery(e.K).trigger("onFitModeChanged","FitNone"),window.onFitModeChanged){window.onFitModeChanged("Fit None");}}}e.H!=e.W()&&(e.pages.cd(),e.pages.ed(),e.pages.wj(),h=jQuery(e.pages.J).prop("scrollHeight"),eb.browser.capabilities.yb&&(!d||d&&!d.Vc?jQuery(e.pages.J).scrollTo({left:"50%",top:h*f+"px"},0,{axis:"xy"}):jQuery(e.pages.J).scrollTo({top:h*f+"px"},0,{axis:"y"})));}}},jc:function(){if(this.renderer){null!=this.uf&&(window.clearTimeout(this.uf),this.uf=null);"CanvasPageRenderer"==this.renderer.Ff()&&(jQuery(".flowpaper_pageword_"+this.P+":not(.flowpaper_selected_searchmatch)").remove(),window.annotations&&this.pages.Da());this.pages.Uf&&0<=this.pages.Uf&&this.pages.pages[this.pages.Uf].Xa&&this.renderer.$b(this.pages.pages[this.pages.Uf],!0);for(var c=0;c<this.document.numPages;c++){this.pages.Sa(c)&&c!=this.pages.Uf&&this.pages.pages[c]&&(this.pages.pages[c].Xa?this.renderer.$b(this.pages.pages[c],!0):this.pages.pages[c].oa=!1);}}},Zoom:function(c,d){!eb.platform.touchonlydevice||"TwoPage"!=this.H&&"BookView"!=this.H?(c>this.document.MaxZoomSize&&(c=this.document.MaxZoomSize),c=c/this.document.MaxZoomSize,jQuery(this.K).trigger("onScaleChanged",c),c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.hb(this.document.MaxZoomSize*c,d)):1<c?"TwoPage"==this.H||"BookView"==this.H?this.pages.me():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitwidth():"TwoPage"==this.H||"BookView"==this.H?this.pages.md():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitheight();},ZoomIn:function(){this.Zoom(this.scale+3*this.document.ZoomInterval);},ZoomOut:function(){if("Portrait"==this.H||"SinglePage"==this.H){null!=this.pages.jScrollPane?(this.pages.jScrollPane.data("jsp").scrollTo(0,0,!1),this.pages.jScrollPane.data("jsp").reinitialise(this.Yc)):this.pages.M(this.pages.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}this.Zoom(this.scale-3*this.document.ZoomInterval);},sliderChange:function(c){c>this.document.MaxZoomSize||(c=c/this.document.MaxZoomSize,c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.hb(this.document.MaxZoomSize*c));},Ch:function(){var c=this;if(!eb.platform.mobilepreview&&!eb.platform.lb&&(c.$a&&c.Sk(),!c.Pa)){c.O.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove();var d=c.bf=null!=c.toolbar&&null!=c.toolbar.Ta?c.toolbar.ua(c.toolbar.Ta,"Search"):"Search",e=c.H==c.W()?c.O.height()-0:parseFloat(jQuery(c.pages.J).css("height"))-10,f=c.H==c.W()?jQuery(c.K).css("background-color"):"#c8c8c8",h=c.H==c.W()?"40px":jQuery(c.K).height()+2,m=c.H==c.W()?"color:#ededed":"color:#555555;",l=(c.W(),40),k=c.H==c.W()?0:41;"rgba(0, 0, 0, 0)"==f.toString()&&(f="#555");c.Dg=c.O.find(c.K).css("margin-left");c.H==c.W()?(jQuery(c.K).css("opacity",0.7),c.O.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:{8}px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:50;{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><hr size='1' color='#ffffff' /></div></div>",d,c.Tj,"20%","250px",c.Qh,e,f,e-20,0,c.I.backgroundImage?"":"background-color:"+c.I.backgroundColor))),c.Pa=c.O.find(".flowpaper_searchabstracts"),jQuery(c.Pa.children()[0]).css({"border-radius":"0 3px 3px 0px","-moz-border-radius":"3px"}),jQuery(c.Pa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+(jQuery(c.Pa.children()[0]).height()-l)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),c.resize(c.L.width(),c.L.height()+k,!1,function(){}),d=c.O.width()-c.L.width(),c.L.animate({left:Math.abs(d)+"px"},0)):(c.O.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:13;overflow:hidden;'><div style='margin: 0px 0px 0px 0px;padding: 10px 7px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%' <div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><div class='flowpaper_bottom_fade'></div></div></div>",d,c.Tj,"20%","250px",c.Qh,parseFloat(jQuery(c.pages.J).css("height"))+10,f,c.O.height()-58))),c.Pa=c.O.find(".flowpaper_searchabstracts"),jQuery(c.Pa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+e+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),"TwoPage"!=c.H&&c.H!=c.W()&&c.resize(c.L.width(),c.O.height()+1,!1,function(){}),c.L.animate({left:c.Pa.width()/2+"px"},0),c.document.FitWidthOnLoad?c.fitwidth():c.fitheight());d=0.5*c.Pa.width();jQuery(c.K).width()+d>c.O.width()&&(d=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Dg)+d+"px"},200,function(){if(window.onresize){window.onresize();}});0==d&&c.Pa.css({top:h,height:parseFloat(jQuery(c.pages.J).css("height"))+10+"px"});c.H==c.W()&&c.I.Ch();c.Pa.fadeTo("fast",1);var n=c.O.find(".flowpaper_searchabstracts_content");jQuery(c).bind("onSearchAbstractAdded",function(d,e){var f=e.de.Zn;100<f.length&&(f=f.substr(0,100)+"...");f=f.replace(new RegExp(c.Sd,"g"),"<font style='color:#ffffff'>["+c.Sd+"]</font>");f="<b>p."+c.toolbar.Wf(e.de.pageIndex+1,e.de.pageIndex+1,!0)+"</b> : "+f;n.append(jQuery(String.format("<div id='flowpaper_searchabstract_item_{1}' style='{2}' class='flowpaper_searchabstract_result'>{0}</div><hr size=1 color='#777777' style='margin-top:8px;' class='flowpaper_searchabstract_result_separator' />",f,e.de.id,m)));jQuery("#flowpaper_searchabstract_item_"+e.de.id).bind("mousedown",function(d){c.Ua=e.de.pageIndex+1;c.ue=e.de.rp;c.ac=-1;c.searchText(c.Sd,!1);d.preventDefault&&d.preventDefault();d.returnValue=!1;});jQuery("#flowpaper_searchabstract_item_"+e.de.id).bind("mouseup",function(c){c.preventDefault&&c.preventDefault();c.returnValue=!1;});});c.O.find(".flowpaper_searchabstracts_close").bind("mousedown",function(){c.Jf();});}},Jf:function(){this.Pa&&(this.L.css({left:"0px"}),this.Pa.remove(),this.Pa=null,this.O.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),this.H==this.W()?(jQuery(this.K).css("opacity",1),this.resize(this.O.width(),this.L.height(),!1)):"TwoPage"==this.H?(this.L.css({left:"0px",width:"100%"}),this.fitheight()):this.resize(this.O.width(),this.O.height()+1,!1),jQuery(this.K).animate({"margin-left":parseFloat(this.Dg)+"px"},200),this.H==this.W()&&this.I.Jf());jQuery(this).unbind("onSearchAbstractAdded");},Xk:function(c,d){jQuery(".flowpaper_searchabstract_blockspan").remove();var e=this.renderer.getNumPages();d||(d=0);for(var f=d;f<e;f++){this.cn(f,c);}this.H!=this.W()&&this.O.find(".flowpaper_searchabstracts_content").append(jQuery("<div class='flowpaper_searchabstract_blockspan' style='display:block;clear:both;height:200px'></div>"));},cn:function(c,d){var e=this.renderer.ya;if(null!=e[c]){-1<e[c].toLowerCase().indexOf("actionuri")&&(e[c]=e[c].replace(/actionuri(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongotor")&&(e[c]=e[c].replace(/actiongotor(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongoto")&&(e[c]=e[c].replace(/actiongoto(.*?)\):/gi,""));for(var f=e[c].toLowerCase().indexOf(d),h=0;0<=f;){var m=0<f-50?f-50:0,l=f+75<e[c].length?f+75:e[c].length,k=this.Oc.length;this.Oc.kf[k]=[];this.Oc.kf[k].pageIndex=c;this.Oc.kf[k].rp=h;this.Oc.kf[k].id=this.P+"_"+c+"_"+h;this.Oc.kf[k].Zn=e[c].substr(m,l-m);f=e[c].toLowerCase().indexOf(d,f+1);jQuery(this).trigger("onSearchAbstractAdded",{de:this.Oc.kf[k]});h++;}}else{null==this.Fl&&this.im(d,c);}},im:function(c,d){var e=this;e.Fl=setTimeout(function(){null==e.renderer.nd?e.renderer.tc(d+1,!1,function(){e.Fl=null;e.Xk(c,d);}):e.im(c,d);},100);},searchText:function(c,d){var e=this;if(null!=c&&(null==c||0!=c.length)){if(void 0!==d||"Portrait"!=e.H&&"SinglePage"!=e.H&&"TwoPage"!=e.H&&e.H!=e.W()||!e.document.EnableSearchAbstracts||eb.platform.mobilepreview||(d=!0),d&&e.H==e.W()&&1<e.scale&&(e.renderer.mb&&e.renderer.Nc&&e.renderer.Nc(),e.Zoom(1)),jQuery(e.K).find(".flowpaper_txtSearch").val()!=c&&jQuery(e.K).find(".flowpaper_txtSearch").val(c),"ThumbView"==e.H){e.switchMode("Portrait"),setTimeout(function(){e.searchText(c);},1000);}else{var f=e.renderer.ya,h=e.renderer.getNumPages();e.zh||(e.zh=0);if(0==e.renderer.xa.Qa.length&&10>e.zh){window.clearTimeout(e.sp),e.sp=setTimeout(function(){e.searchText(c,d);},500),e.zh++;}else{e.zh=0;e.ue||(e.ue=0);e.Ua||(e.Ua=-1);null!=c&&0<c.length&&(c=c.toLowerCase());e.Sd!=c&&(e.ac=-1,e.Sd=c,e.ue=0,e.Ua=-1,e.Oc=[],e.Oc.kf=[]);-1==e.Ua?e.Ua=parseInt(e.da):e.ac=e.ac+c.length;0==e.Oc.kf.length&&e.Oc.searchText!=c&&d&&(e.Oc.searchText!=c&&e.O.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),e.Oc.searchText=c,e.Ch(),e.Xk(c));for(;e.Ua-1<h;){var m=f[e.Ua-1];if(e.renderer.va&&null==m){jQuery(e.renderer).trigger("UIBlockingRenderingOperation",e.P);e.Lp=e.Ua;e.renderer.tc(e.Ua,!1,function(){m=f[e.Ua-1];e.Lp=null;});return;}e.ac=m.indexOf(c,-1==e.ac?0:e.ac);if(0<=e.ac){e.da==e.Ua||!(e.H==e.W()&&e.da!=e.Ua+1||"BookView"==e.H&&e.da!=e.Ua+1||"TwoPage"==e.H&&e.da!=e.Ua-1||"SinglePage"==e.H&&e.da!=e.Ua)||"TwoPage"!=e.H&&"BookView"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()?(e.ue++,e.renderer.sb?this.pages.getPage(e.Ua-1).load(function(){e.pages.getPage(e.Ua-1).Cc(e.Sd,!1,e.ac);}):("Portrait"==e.H&&this.pages.getPage(e.Ua-1).load(function(){e.pages.getPage(e.Ua-1).Cc(e.Sd,!1,e.ac);}),"TwoPage"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()||this.pages.getPage(e.Ua-1).Cc(e.Sd,!1,e.ac))):e.gotoPage(e.Ua,function(){e.ac=e.ac-c.length;e.searchText(c);});break;}e.Ua++;e.ac=-1;e.ue=0;}-1==e.ac&&(e.ac=-1,e.ue=0,e.Ua=-1,e.Jb(),alert(null!=e.toolbar&&null!=e.toolbar.Ta?e.toolbar.ua(e.toolbar.Ta,"Finishedsearching"):"No more search matches."),e.gotoPage(1));}}}},fitheight:function(){if(this.H!=this.W()){try{if(eb.platform.touchdevice){if(c=this.Ue()){window.FitHeightScale=c,this.hb(c,{kg:!0}),this.pages.wj();}}else{var c=this.Ue();window.FitHeightScale=c;jQuery(this.K).trigger("onScaleChanged",c/this.document.MaxZoomSize);c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&("Portrait"==this.H?this.hb(this.document.MaxZoomSize*c,{kg:!0}):this.hb(this.document.MaxZoomSize*c));}}catch(d){}}},eh:function(){var c=jQuery(this.pages.J).width()-15,d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.ma/this.pages.getPage(d).dimensions.za;return eb.platform.touchdevice?c/(this.pages.getPage(d).La*e)-("SinglePage"==this.H?0.1:0.03):c/(this.pages.getPage(d).La*this.document.MaxZoomSize*e)-0.012;},Ue:function(){this.da-1&&(this.da=1);if("Portrait"==this.H||"SinglePage"==this.H||"TwoPage"==this.H||"BookView"==this.H){var c=this.pages.getPage(this.da-1).dimensions.width/this.pages.getPage(this.da-1).dimensions.height;if(eb.platform.touchdevice){d=jQuery(this.L).height()-("TwoPage"==this.H||"BookView"==this.H?40:0),"SinglePage"==this.H&&(d-=25),d/=this.pages.getPage(this.da-1).La,e=this.pages.getPage(this.da-1),e=e.dimensions.ma/e.dimensions.za*e.La*d,("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&(d=this.L.width()-0,d/=4*this.pages.getPage(this.da-1).La);}else{var d=jQuery(this.pages.J).height()-("TwoPage"==this.H||"BookView"==this.H?25:0);this.document.DisableOverflow&&(d=S(parseFloat(window.printHeight)));var d=d/(this.pages.getPage(this.da-1).La*this.document.MaxZoomSize),e=this.pages.getPage(this.da-1),e=e.dimensions.ma/e.dimensions.za*e.La*this.document.MaxZoomSize*d;("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&!this.document.DisableOverflow&&(d=(jQuery(this.L).width()-("TwoPage"==this.H||"BookView"==this.H?40:0))/1.48,d=d/1.6/(this.pages.getPage(this.da-1).La*this.document.MaxZoomSize*c));}return window.FitHeightScale=d;}if(this.H==this.W()){return d=1,window.FitHeightScale=d;}},next:function(){var c=this;c.Wi||c.H==c.W()?c.H==c.W()&&c.pages.next():(c.Wi=setTimeout(function(){window.clearTimeout(c.Wi);c.Wi=null;},700),c.pages.next());},gotoPage:function(c,d){var e=this;e.pages&&(e.config.document.RTLMode&&(c=e.renderer.S.length-c+1),"ThumbView"==e.H?eb.platform.ios?e.I?e.I.jq(c):e.switchMode("Portrait",c):e.switchMode("Portrait",c):("Portrait"==e.H&&e.pages.scrollTo(c),"SinglePage"==e.H&&setTimeout(function(){e.pages.rg(c,d);},300),"TwoPage"!=e.H&&"BookView"!=e.H||setTimeout(function(){e.pages.sg(c,d);},300),e.I&&e.I.gotoPage(c,d)));},rotate:function(){var c=this.getCurrPage()-1;-1==c&&(c=0);this.pages.rotate(c);window.annotations&&(jQuery(".flowpaper_pageword_"+this.P).remove(),this.jc(),this.pages.Da());},getCurrPage:function(){return null!=this.pages?this.H!=this.W()?this.pages.R+1:this.pages.R:1;},xp:function(){this.version="3.2.7";},wp:function(){this.build="7-February-2019";},getTotalPages:function(){return this.pages.getTotalPages();},Gc:function(c){var d=this;d.H!=d.W()&&(this.da=c,this.pages.R=this.da-1);c>d.getTotalPages()&&(c=c-1,this.pages.R=c);"TwoPage"!=this.H&&"BookView"!=this.H||this.pages.R!=this.pages.getTotalPages()-1||0==this.pages.R%2||(this.pages.R=this.pages.R+1);d.I&&(0==c&&(c++,this.da=c),d.I.Gc(c));d.vc&&(jQuery(".flowpaper_mark_video_maximized").remove(),jQuery(".flowpaper_mark_video_maximized_closebutton").remove(),d.vc=null);0<jQuery(".flowpaper_mark_video").find("iframe,video").length&&jQuery(".flowpaper_mark_video").find("iframe,video").each(function(){try{var c=jQuery(this).closest(".flowpaper_page").attr("id"),f=parseInt(c.substr(14,c.lastIndexOf("_")-14));if(0==f&&0!=d.pages.R-1||!d.I.Ea&&0<f&&f!=d.pages.R-1&&f!=d.pages.R-2||d.I.Ea&&f!=d.pages.R-1){jQuery(this).parent().remove();var h=d.pages.pages[f];h.Mf(h.Ti?h.Ti:h.scale,h.Vb());}}catch(m){}});this.toolbar.oq(c);null!=d.plugin&&("TwoPage"==this.H?(d.plugin.Xg(this.pages.R+1),d.plugin.Xg(this.pages.R+2)):"BookView"==this.H?(1!=c&&d.plugin.Xg(this.pages.R),d.plugin.Xg(this.pages.R+1)):d.plugin.Xg(this.da));},addLink:function(c,d,e,f,h,m,l,k,n){window[this.$e].addLink=this.addLink;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var p={type:"link"};p.href=d;p.Bo=e;p.Co=f;p.width=h;p.height=m;p.Gp=l;p.Hp=k;p.Oo=n;this.Z[c-1][this.Z[c-1].length]=p;},addVideo:function(c,d,e,f,h,m,l,k){window[this.$e].addVideo=this.addVideo;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var n={type:"video"};n.src=d;n.url=e;n.Fj=f;n.Gj=h;n.width=m;n.height=l;n.Mo=k;this.Z[c-1][this.Z[c-1].length]=n;},Xj:function(c,d,e,f,h,m,l,k){window[this.$e].addIFrame=this.Xj;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var n={type:"iframe"};n.src=d;n.url=e;n.Ai=f;n.Bi=h;n.width=m;n.height=l;n.Lo=k;this.Z[c-1][this.Z[c-1].length]=n;},addImage:function(c,d,e,f,h,m,l,k){c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var n={type:"image"};n.src=d;n.ih=e;n.jh=f;n.width=h;n.height=m;n.href=l;n.qo=k;this.Z[c-1][this.Z[c-1].length]=n;},openFullScreen:function(){var c=this;FLOWPAPER.getParameterByName("autoplay")&&(c.document.FullScreenAsMaxWindow=!0);if(c.Wb){c.O.prepend("<div id='modal-maximize' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:155px;padding-bottom:20px;'>It's not possible to maximize the viewer from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='bttnMaximizeDisabledOK'>OK</a></div></div>"),c.Pr=jQuery("#modal-maximize").smodal({minHeight:155,appendTo:c.O}),jQuery("#bttnMaximizeDisabledOK").bind("click",function(c){jQuery.smodal.close();c.stopImmediatePropagation();jQuery("#modal-maximize").remove();return !1;});}else{var d=document.Cb||document.mozFullScreen||document.webkitIsFullScreen||window.Cm||window.Jh||document.fullscreenElement||document.msFullscreenElement,e=c.O.get(0);if(d){return document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),window.Jh&&window.close(),!1;}"0"!=c.O.css("top")&&(c.To=c.O.css("top"));"0"!=c.O.css("left")&&(c.So=c.O.css("left"));c.H==c.W()&&1<c.scale&&(c.pages.md(),c.T.show(),c.T.animate({opacity:1},100));c.ma=c.O.width();c.za=c.O.height();c.PreviewMode&&c.pages.ol&&(c.PreviewMode=!1,c.Nh=!0,c.I.jb.hp(c.pages,c.L),c.I.Ip());c.O.css({visibility:"hidden"});jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){setTimeout(function(){if(window.navigator.standalone||document.fullScreenElement&&null!=document.fullScreenElement||document.mozFullScreen||document.webkitIsFullScreen){eb.browser.safari?window.zine?c.resize(screen.width,screen.height):c.config.BottomToolbar?c.resize(screen.width,screen.height-jQuery(c.K).height()-70):c.resize(screen.width,screen.height-jQuery(c.K).height()):window.zine?c.resize(jQuery(document).width(),jQuery(document).height()):c.resize(window.innerWidth,window.innerHeight);}window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.jc(),c.pages.Da());c.O.css({visibility:"visible"});},500);jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Li=!1;c.O.css({top:c.To,left:c.So});c.Nh&&(c.PreviewMode=!0,c.I.Qk(),c.I.hh(),setTimeout(function(){c.PreviewMode&&c.I.hh();},1000));c.H==c.W()&&1<c.scale?c.pages.md(function(){c.T.show();c.T.animate({opacity:1},100);c.resize(c.ma,c.za-2);jQuery(c.K).trigger("onFullscreenChanged",!1);}):(c.resize(c.ma,c.za-2),jQuery(c.K).trigger("onFullscreenChanged",!1));jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Nh&&(c.Nh=!1,c.I.jb.Sh(c.pages,c.L));window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.jc(),c.pages.Da());});window.clearTimeout(c.kj);c.kj=setTimeout(function(){!c.PreviewMode&&c.I&&c.I.cb&&c.I.rj();},1000);});d=eb.platform.android&&!e.webkitRequestFullScreen;c.document.FullScreenAsMaxWindow||!document.documentElement.requestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.mozRequestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.webkitRequestFullScreen||d?!c.document.FullScreenAsMaxWindow&&document.documentElement.msRequestFullscreen?(c.O.css({visibility:"hidden"}),c.Li?(c.Li=!1,window.document.msExitFullscreen()):(c.Li=!0,e.msRequestFullscreen()),setTimeout(function(){c.O.css({visibility:"visible"});c.resize(window.outerWidth,window.outerHeight);window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.jc(),c.pages.Da());},500)):(c.Qo(),setTimeout(function(){c.O.css({visibility:"visible"});},500)):(c.O.css({visibility:"hidden"}),e.webkitRequestFullScreen(eb.browser.safari&&10>eb.browser.Kb?0:{}),c.O.css({left:"0px",top:"0px"})):(c.O.css({visibility:"hidden"}),e.mozRequestFullScreen(),c.O.css({left:"0px",top:"0px"})):(c.O.css({visibility:"hidden"}),e.requestFullScreen(),c.O.css({left:"0px",top:"0px"}));jQuery(c.K).trigger("onFullscreenChanged",!0);}},Qo:function(){var c="",c="toolbar=no, location=no, scrollbars=no, width="+screen.width,c=c+(", height="+screen.height),c=c+", top=0, left=0, fullscreen=yes";nw=this.document.FullScreenAsMaxWindow?window.open(""):window.open("","windowname4",c);nw.params=c;c="<!doctype html><head>";c+='<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" />';c+='<link rel="stylesheet" type="text/css" href="'+this.config.cssDirectory+(-1==this.config.cssDirectory.indexOf("flowpaper.css")?"flowpaper.css":"")+'" />';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.extensions.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper_handlers.js">\x3c/script>';c+='<style type="text/css" media="screen">body{ margin:0; padding:0; overflow-x:hidden;overflow-y:hidden; }</style>';c+="</head>";c+='<body onload="openViewer();">';c+='<div id="documentViewer" class="flowpaper_viewer" style="position:absolute;left:0px;top:0px;width:100%;height:100%;"></div>';c+='<script type="text/javascript">';c+="function openViewer(){";c+='jQuery("#documentViewer").FlowPaperViewer(';c+="{ config : {";c+="";c+='SWFFile : "'+this.document.SWFFile+'",';c+='IMGFiles : "'+this.document.IMGFiles+'",';c+='JSONFile : "'+this.document.JSONFile+'",';c+='PDFFile : "'+this.document.PDFFile+'",';c+="";c+="Scale : "+this.scale+",";c+='ZoomTransition : "'+this.document.ZoomTransition+'",';c+="ZoomTime : "+this.document.ZoomTime+",";c+="ZoomInterval : "+this.document.ZoomInterval+",";c+="FitPageOnLoad : "+this.document.FitPageOnLoad+",";c+="FitWidthOnLoad : "+this.document.FitWidthOnLoad+",";c+="FullScreenAsMaxWindow : "+this.document.FullScreenAsMaxWindow+",";c+="ProgressiveLoading : "+this.document.ProgressiveLoading+",";c+="MinZoomSize : "+this.document.MinZoomSize+",";c+="MaxZoomSize : "+this.document.MaxZoomSize+",";c+="MixedMode : "+this.document.MixedMode+",";c+="SearchMatchAll : "+this.document.SearchMatchAll+",";c+='InitViewMode : "'+this.document.InitViewMode+'",';c+='RenderingOrder : "'+this.document.RenderingOrder+'",';c+="useCustomJSONFormat : "+this.document.useCustomJSONFormat+",";c+='JSONDataType : "'+this.document.JSONDataType+'",';null!=this.document.JSONPageDataFormat&&(c+="JSONPageDataFormat : {",c+='pageWidth : "'+this.document.JSONPageDataFormat.jf+'",',c+='pageHeight : "'+this.document.JSONPageDataFormat.hf+'",',c+='textCollection : "'+this.document.JSONPageDataFormat.ze+'",',c+='textFragment : "'+this.document.JSONPageDataFormat.qb+'",',c+='textFont : "'+this.document.JSONPageDataFormat.Bg+'",',c+='textLeft : "'+this.document.JSONPageDataFormat.lc+'",',c+='textTop : "'+this.document.JSONPageDataFormat.Ab+'",',c+='textWidth : "'+this.document.JSONPageDataFormat.zd+'",',c+='textHeight : "'+this.document.JSONPageDataFormat.yd+'"',c+="},");c+="ViewModeToolsVisible : "+this.document.ViewModeToolsVisible+",";c+="ZoomToolsVisible : "+this.document.ZoomToolsVisible+",";c+="NavToolsVisible : "+this.document.NavToolsVisible+",";c+="CursorToolsVisible : "+this.document.CursorToolsVisible+",";c+="SearchToolsVisible : "+this.document.SearchToolsVisible+",";window.zine||(c+='Toolbar : "'+escape(this.config.Toolbar)+'",');c+='BottomToolbar : "'+this.config.BottomToolbar+'",';c+='UIConfig : "'+this.document.UIConfig+'",';c+='jsDirectory : "'+this.config.jsDirectory+'",';c+='cssDirectory : "'+this.config.cssDirectory+'",';c+='localeDirectory : "'+this.config.localeDirectory+'",';c+='key : "'+this.config.key+'",';c+="";c+='localeChain: "'+this.document.localeChain+'"';c+="}});";c+="}";c+="document.fullscreen = true;";c+="$(document).keyup(function(e) {if (e.keyCode == 27){window.close();}});";c+="\x3c/script>";c+="</body>";c+="</html>";nw.document.write(c);nw.Jh=!0;window.focus&&nw.focus();nw.document.close();return !1;},resize:function(c,d,e,f){var h=this;if(h.initialized){h.width=null;if(h.H==h.W()){h.I.resize(c,d,e,f);}else{h.Pa&&(c=c-h.Pa.width()/2,h.L.animate({left:h.Pa.width()/2+"px"},0));var m=jQuery(h.K).height()+1+14,l=0<h.hg?h.hg+1:0;h.I&&(l=37);h.L.css({width:c,height:d-m-l});null!=e&&1!=e||this.O.css({width:c,height:d});h.pages.resize(c,d-m-l,f);jQuery(".flowpaper_interactiveobject_"+h.P).remove();jQuery(".flowpaper_pageword_"+h.P).remove();"TwoPage"!=h.H&&"BookView"!=h.H||h.fitheight();window.clearTimeout(h.Xo);h.Xo=setTimeout(function(){h.pages.Da();},700);}h.I&&h.I.cb&&(window.clearTimeout(h.kj),h.kj=setTimeout(function(){h.PreviewMode||h.I.rj();},2500));}}};f.loadFromUrl=f.loadFromUrl;return f;}();window.print_flowpaper_Document=function(f,c,d,e,g){FLOWPAPER.Lk.init();var h=Array(g+1),m=0;if("all"==d){for(var l=1;l<g+1;l++){h[l]=!0;}m=g;}else{if("current"==d){h[e]=!0,m=1;}else{if(-1==d.indexOf(",")&&-1<d.indexOf("-")){for(var k=parseInt(d.substr(0,d.toString().indexOf("-"))),n=parseInt(d.substr(d.toString().indexOf("-")+1));k<n+1;k++){h[k]=!0,m++;}}else{if(0<d.indexOf(",")){for(var p=d.split(","),l=0;l<p.length;l++){if(-1<p[l].indexOf("-")){for(k=parseInt(p[l].substr(0,p[l].toString().indexOf("-"))),n=parseInt(p[l].substr(p[l].toString().indexOf("-")+1));k<n+1;k++){h[k]=!0,m++;}}else{h[parseInt(p[l].toString())]=!0,m++;}}}}}}jQuery(document.body).append("<div id='documentViewer' style='position:absolute;width:100%;height:100%'></div>");h="1-"+g;window.Kh=0;"current"==d?h=e+"-"+e:"all"==d?h="1-"+g:h=d;jQuery("#documentViewer").FlowPaperViewer({config:{IMGFiles:c.pageImagePattern,JSONFile:c.jsonfile&&"undefined"!=c.jsonfile?c.jsonfile:null,PDFFile:c.PdfFile,JSONDataType:c.JSONDataType,Scale:1,RenderingOrder:"ImagePageRenderer"==f?"html,html":"html5,html",key:c.key,UserCollaboration:c.UserCollaboration,InitViewMode:"Portrait",DisableOverflow:!0,DisplayRange:h}});jQuery("#documentViewer").bind("onPageLoaded",function(){window.Kh==m-1&&setTimeout(function(){if(window.parent.onPrintRenderingCompleted){window.parent.onPrintRenderingCompleted();}window.focus&&window.focus();window.print();window.close&&window.close();},2000);window.Kh++;if(window.parent.onPrintRenderingProgress){window.parent.onPrintRenderingProgress(window.Kh);}});};window.renderPrintPage=function Z(c,d){"CanvasPageRenderer"==c.Ff()&&(d<c.getNumPages()?c.va?document.getElementById("ppage_"+d)?c.Ri(d+1,function(){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}document.getElementById("ppage_"+d)?c.Ga[d].getPage(1).then(function(e){var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),m=e.getViewport(4),h={canvasContext:h,viewport:m,Eh:null,continueCallback:function(c){c();}};g.width=m.width;g.height=m.height;e.render(h).promise.then(function(){e.destroy();Z(c,d+1);},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1);}):Z(c,d+1):document.getElementById("ppage_"+d)?c.Ga.getPage(d+1).then(function(e){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),m=e.getViewport(4),h={canvasContext:h,viewport:m,Eh:null,continueCallback:function(c){c();}};g.width=m.width;g.height=m.height;e.render(h).promise.then(function(){Z(c,d+1);e.destroy();},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1):(parent.onPrintRenderingCompleted(),window.print()));};Aa&&self.addEventListener("message",function(f){f=f.data;if("undefined"!==f.cmd){switch(f.cmd){case"loadImageResource":var c=new XMLHttpRequest;c.open("GET","../../"+f.src);c.Cb=c.responseType="arraybuffer";c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){for(var d=new Uint8Array(this.response),e=d.length,f=Array(e);e--;){f[e]=String.fromCharCode(d[e]);}self.postMessage({status:"ImageResourceLoaded",blob:f.join("")});self.close();}};c.send(null);}}},!1);
\ No newline at end of file
+var Mouse={x:0,y:0,refresh:function(e){if(e&&!this.down&&!jQuery(e.target).hasClass("flowpaper_zoomSlider")){return;}var posx=0,posy=0;if(!e){e=window.event;}if(e.pageX||e.pageY){posx=e.pageX;posy=e.pageY;}else{if(e.clientX||e.clientY){posx=e.clientX+document.body.scrollLeft+document.documentElement.scrollLeft;posy=e.clientY+document.body.scrollTop+document.documentElement.scrollTop;}}this.x=posx;this.y=posy;}};var mouseMoveHandler=document.onmousemove||function(){};document.onmousemove=function(e){if(!e){e=window.event;}if(e&&e.which==1){Mouse.down=true;}Mouse.refresh(e);};var MPosition={get:function(obj){var curleft=curtop=0;if(obj.offsetParent){do{curleft+=obj.offsetLeft;curtop+=obj.offsetTop;}while(obj=obj.offsetParent);}return[curleft,curtop];}};var Slider=function(wrapper,options){if(typeof wrapper=="string"){wrapper=document.getElementById(wrapper);}if(!wrapper){return;}var handle=wrapper.getElementsByTagName("div")[0];if(!handle||handle.className.search(/(^|\s)flowpaper_handle(\s|$)/)==-1){return;}this.init(wrapper,handle,options||{});this.setup();};Slider.prototype={init:function(wrapper,handle,options){this.wrapper=wrapper;this.handle=handle;this.options=options;this.value={current:options.value||0,target:options.value||0,prev:-1};this.disabled=options.disabled||false;this.steps=options.steps||0;this.snapping=options.snapping||false;this.speed=options.speed||5;this.callback=options.callback||null;this.animation_callback=options.animation_callback||null;this.bounds={pleft:options.pleft||0,left:0,pright:-(options.pright||0),right:0,width:0,diff:0};this.offset={wrapper:0,mouse:0,target:0,current:0,prev:-9999};this.dragging=false;this.tapping=false;},setup:function(){var self=this;this.wrapper.onselectstart=function(){return false;};this.handle.onmousedown=function(e){self.preventDefaults(e,true);this.focus();self.handleMouseDownHandler(e);};this.wrapper.onmousedown=function(e){self.preventDefaults(e);self.wrapperMouseDownHandler(e);};var mouseUpHandler=document.onmouseup||function(){};if(document.addEventListener){document.addEventListener("mouseup",function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}});}else{document.onmouseup=function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}};}var resizeHandler=document.onresize||function(){};window.onresize=function(e){resizeHandler(e);self.setWrapperOffset();self.setBounds();};this.setWrapperOffset();if(!this.bounds.pleft&&!this.bounds.pright){this.bounds.pleft=MPosition.get(this.handle)[0]-this.offset.wrapper;this.bounds.pright=-this.bounds.pleft;}this.setBounds();this.setSteps();this.interval=setInterval(function(){self.animate();},100);self.animate(false,true);},setWrapperOffset:function(){this.offset.wrapper=MPosition.get(this.wrapper)[0];},setBounds:function(){this.bounds.left=this.bounds.pleft;this.bounds.right=this.bounds.pright+this.wrapper.offsetWidth;this.bounds.width=this.bounds.right-this.bounds.left;this.bounds.diff=this.bounds.width-this.handle.offsetWidth;},setSteps:function(){if(this.steps>1){this.stepsRatio=[];for(var i=0;i<=this.steps-1;i++){this.stepsRatio[i]=i/(this.steps-1);}}},disable:function(){this.disabled=true;this.handle.className+=" disabled";},enable:function(){this.disabled=false;this.handle.className=this.handle.className.replace(/\s?disabled/g,"");},handleMouseDownHandler:function(e){if(Mouse){Mouse.down=true;Mouse.refresh(e);}var self=this;this.startDrag(e);this.cancelEvent(e);},wrapperMouseDownHandler:function(e){this.startTap();},documentMouseUpHandler:function(e){this.stopDrag();this.stopTap();if(Mouse){Mouse.down=false;}},startTap:function(target){if(this.disabled){return;}if(target===undefined){target=Mouse.x-this.offset.wrapper-this.handle.offsetWidth/2;}this.setOffsetTarget(target);this.tapping=true;},stopTap:function(){if(this.disabled||!this.tapping){return;}this.setOffsetTarget(this.offset.current);this.tapping=false;this.result();},startDrag:function(e){if(!e){e=window.event;}if(this.disabled){return;}this.offset.mouse=Mouse.x-MPosition.get(this.handle)[0];this.dragging=true;if(e.preventDefault){e.preventDefault();}},stopDrag:function(){if(this.disabled||!this.dragging){return;}this.dragging=false;this.result();},feedback:function(){var value=this.value.current;if(this.steps>1&&this.snapping){value=this.getClosestStep(value);}if(value!=this.value.prev){if(typeof this.animation_callback=="function"){this.animation_callback(value);}this.value.prev=value;}},result:function(){var value=this.value.target;if(this.steps>1){value=this.getClosestStep(value);}if(typeof this.callback=="function"){this.callback(value);}},animate:function(onMove,first){if(onMove&&!this.dragging){return;}if(this.dragging){this.setOffsetTarget(Mouse.x-this.offset.mouse-this.offset.wrapper);}this.value.target=Math.max(this.value.target,0);this.value.target=Math.min(this.value.target,1);this.offset.target=this.getOffsetByRatio(this.value.target);if(!this.dragging&&!this.tapping||this.snapping){if(this.steps>1){this.setValueTarget(this.getClosestStep(this.value.target));}}if(this.dragging||first){this.value.current=this.value.target;}this.slide();this.show();this.feedback();},slide:function(){if(this.value.target>this.value.current){this.value.current+=Math.min(this.value.target-this.value.current,this.speed/100);}else{if(this.value.target<this.value.current){this.value.current-=Math.min(this.value.current-this.value.target,this.speed/100);}}if(!this.snapping){this.offset.current=this.getOffsetByRatio(this.value.current);}else{this.offset.current=this.getOffsetByRatio(this.getClosestStep(this.value.current));}},show:function(){if(this.offset.current!=this.offset.prev){this.handle.style.left=String(this.offset.current)+"px";this.offset.prev=this.offset.current;}},setValue:function(value,snap){this.setValueTarget(value);if(snap){this.value.current=this.value.target;}},setValueTarget:function(value){this.value.target=value;this.offset.target=this.getOffsetByRatio(value);},setOffsetTarget:function(value){this.offset.target=value;this.value.target=this.getRatioByOffset(value);},getRatioByOffset:function(offset){return(offset-this.bounds.left)/this.bounds.diff;},getOffsetByRatio:function(ratio){return Math.round(ratio*this.bounds.diff)+this.bounds.left;},getClosestStep:function(value){var k=0;var min=1;for(var i=0;i<=this.steps-1;i++){if(Math.abs(this.stepsRatio[i]-value)<min){min=Math.abs(this.stepsRatio[i]-value);k=i;}}return this.stepsRatio[k];},preventDefaults:function(e,selection){if(!e){e=window.event;}if(e.preventDefault){e.preventDefault();}if(selection&&document.selection){document.selection.empty();}},cancelEvent:function(e){if(!e){e=window.event;}if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;}}};var I,FLOWPAPER=window.FLOWPAPER?window.FLOWPAPER:window.FLOWPAPER={};FLOWPAPER.$j=function(){var f=[];return{ir:function(c){f.push(c);},notify:function(c,d){for(var e=0,g=f.length;e<g;e++){var h=f[e];if(h[c]){h[c](d);}}}};}();function N(f){FLOWPAPER.$j.notify("warn",f);}function O(f,c,d,e){try{throw Error();}catch(g){}FLOWPAPER.$j.notify("error",f);d&&c&&(e?jQuery("#"+d).trigger(c,e):jQuery("#"+d).trigger(c));throw Error(f);}FLOWPAPER.Yk={init:function(){"undefined"!=typeof eb&&eb||(eb={});var f=navigator.userAgent.toLowerCase(),c=location.hash.substr(1),d=!1,e="";0<=c.indexOf("mobilepreview=")&&(d=!0,e=c.substr(c.indexOf("mobilepreview=")).split("&")[0].split("=")[1]);var g;try{g="ontouchstart" in document.documentElement;}catch(p){g=!1;}!g&&(f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i))&&(d=!0);c=eb;g=/win/.test(f);var h=/mac/.test(f),m;if(!(m=d)){try{m="ontouchstart" in document.documentElement;}catch(p){m=!1;}}c.platform={win:g,mac:h,touchdevice:m||f.match(/touch/i)||navigator.Hb||navigator.msPointerEnabled,ios:d&&("ipad"==e||"iphone"==e)||f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i),android:d&&"android"==e||-1<f.indexOf("android"),Rd:d&&("ipad"==e||"iphone"==e)||navigator.userAgent.match(/(iPad|iPhone);.*CPU.*OS 6_\d/i),iphone:d&&"iphone"==e||f.match(/iphone/i)||f.match(/ipod/i),ipad:d&&"ipad"==e||f.match(/ipad/i),winphone:f.match(/Windows Phone/i)||f.match(/iemobile/i)||f.match(/WPDesktop/i),aq:f.match(/Windows NT/i)&&f.match(/ARM/i)&&f.match(/touch/i),Cm:navigator.Hb||navigator.msPointerEnabled,blackberry:f.match(/BlackBerry/i)||f.match(/BB10/i),webos:f.match(/webOS/i),jn:-1<f.indexOf("android")&&!(jQuery(window).height()<jQuery(window).width()),mobilepreview:d,Xa:window.devicePixelRatio?window.devicePixelRatio:1,Xn:"undefined"!==typeof document&&!!document.fonts};d=eb;e=document.createElement("div");e.innerHTML="000102030405060708090a0b0c0d0e0f";d.je=e;eb.platform.touchonlydevice=eb.platform.touchdevice&&(eb.platform.android||eb.platform.ios||eb.platform.blackberry||eb.platform.webos)||eb.platform.winphone||eb.platform.aq;eb.platform.lb=eb.platform.touchonlydevice&&(eb.platform.iphone||eb.platform.jn||eb.platform.blackberry);eb.platform.ios&&(d=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/),null!=d&&1<d.length?(eb.platform.iosversion=parseInt(d[1],10),eb.platform.Rd=6<=eb.platform.iosversion):eb.platform.Rd=!0);eb.browser={version:(f.match(/.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],Sb:(f.match(/.+?(?:version|chrome|firefox|opera|msie|OPR)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],safari:(/webkit/.test(f)||/applewebkit/.test(f))&&!/chrome/.test(f),opera:/opera/.test(f),msie:/msie/.test(f)&&!/opera/.test(f)&&!/applewebkit/.test(f),Zf:("Netscape"==navigator.appName&&null!=/Trident\/.*rv:([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)||0<f.indexOf("edge/"))&&!/opera/.test(f),mozilla:/mozilla/.test(f)&&!/(compatible|webkit)/.test(f),chrome:/chrome/.test(f),xh:window.innerHeight>window.innerWidth};eb.browser.detected=eb.browser.safari||eb.browser.opera||eb.browser.msie||eb.browser.mozilla||eb.browser.seamonkey||eb.browser.chrome||eb.browser.Zf;eb.browser.detected&&eb.browser.version||(eb.browser.chrome=!0,eb.browser.version="500.00");if(eb.browser.msie){var f=eb.browser,k;try{k=!!new ActiveXObject("htmlfile");}catch(p){k=!1;}f.Ur=k&&"Win64"==navigator.platform&&document.documentElement.clientWidth==screen.width;}eb.browser.version&&1<eb.browser.version.match(/\./g).length&&(eb.browser.version=eb.browser.version.substr(0,eb.browser.version.indexOf(".",eb.browser.version.indexOf("."))));eb.browser.Sb&&1<eb.browser.Sb.match(/\./g).length&&(eb.browser.Sb=eb.browser.Sb.substr(0,eb.browser.Sb.indexOf(".",eb.browser.Sb.indexOf("."))));k=eb.browser;var f=!eb.platform.touchonlydevice||eb.platform.android&&!window.annotations||eb.platform.Rd&&!window.annotations||eb.platform.ios&&6.99<=eb.platform.iosversion&&!window.annotations,d=eb.browser.mozilla&&4<=eb.browser.version.split(".")[0]||eb.browser.chrome&&535<=eb.browser.version.split(".")[0]||eb.browser.msie&&10<=eb.browser.version.split(".")[0]||eb.browser.safari&&534<=eb.browser.version.split(".")[0],e=document.documentElement.requestFullScreen||document.documentElement.mozRequestFullScreen||document.documentElement.webkitRequestFullScreen,l;try{l=!!window.WebGLRenderingContext&&!!document.createElement("canvas").getContext("experimental-webgl");}catch(p){l=!1;}k.capabilities={Db:f,$p:d,iq:e,sq:l};if(eb.browser.msie){l=eb.browser;var n;try{null!=/MSIE ([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)&&(rv=parseFloat(RegExp.$1)),n=rv;}catch(p){n=-1;}l.version=n;}}};function aa(f){f.getContext("2d").clearRect(0,0,f.width,f.height);}function P(){for(var f=eb.Sg.innerHTML,c=[],d=0;"\n"!=f.charAt(d)&&d<f.length;){for(var e=0,g=6;0<=g;g--){" "==f.charAt(d)&&(e|=Math.pow(2,g)),d++;}c.push(String.fromCharCode(e));}return c.join("");}function ba(f,c,d){this.F=f;this.Ld=c;this.containerId=d;this.scroll=function(){var c=this;jQuery(this.Ld).bind("mousedown",function(d){if(c.F.gd||f.yi&&f.yi()||jQuery("*:focus").hasClass("flowpaper_textarea_contenteditable")||jQuery("*:focus").hasClass("flowpaper_note_textarea")){return d.returnValue=!1,!0;}if(c.F.rc){return !0;}c.Rp(c.Ld);c.Cj=d.pageY;c.Bj=d.pageX;return !1;});jQuery(this.Ld).bind("mousemove",function(d){return c.Jn(d);});this.F.Km||(jQuery(this.containerId).bind("mouseout",function(d){c.lo(d);}),jQuery(this.containerId).bind("mouseup",function(){c.mm();}),this.F.Km=!0);};this.Jn=function(c){if(!this.F.$i){return !0;}this.F.Ck!=this.Ld&&(this.Cj=c.pageY,this.Bj=c.pageX,this.F.Ck=this.Ld);this.scrollTo(this.Bj-c.pageX,this.Cj-c.pageY);this.Cj=c.pageY;this.Bj=c.pageX;return !1;};this.Rp=function(c){this.F.$i=!0;this.F.Ck=c;jQuery(this.Ld).removeClass("flowpaper_grab");jQuery(this.Ld).addClass("flowpaper_grabbing");};this.lo=function(c){0==jQuery(this.F.L).has(c.target).length&&this.mm();};this.mm=function(){this.F.$i=!1;jQuery(this.Ld).removeClass("flowpaper_grabbing");jQuery(this.Ld).addClass("flowpaper_grab");};this.scrollTo=function(c,d){var h=jQuery(this.containerId).scrollLeft()+c,m=jQuery(this.containerId).scrollTop()+d;jQuery(this.containerId).scrollLeft(h);jQuery(this.containerId).scrollTop(m);};}function ca(f){f=f.split(",").map(function(c){a:if(/^-?\d+$/.test(c)){c=parseInt(c,10);}else{var d;if(d=c.match(/^(-?\d+)(-|\.\.\.?|\u2025|\u2026|\u22EF)(-?\d+)$/)){c=d[1];var e=d[2];d=d[3];if(c&&d){c=parseInt(c);d=parseInt(d);var g=[],h=c<d?1:-1;if("-"==e||".."==e||"\u2025"==e){d+=h;}for(;c!=d;c+=h){g.push(c);}c=g;break a;}}c=[];}return c;});return 0===f.length?[]:1===f.length?Array.isArray(f[0])?f[0]:f:f.reduce(function(c,d){Array.isArray(c)||(c=[c]);Array.isArray(d)||(d=[d]);return c.concat(d);});}function da(f,c,d,e){var g=f.createElement("node");g.setAttribute("pageNumber",ea(c,e));g.setAttribute("title",fa(c.title));d.appendChild(g);if(c.items&&c.items.length){for(d=0;d<c.items.length;d++){da(f,c.items[d],g,e);}}}function ea(f,c){destRef="string"===typeof f.dest?c.destinations[f.dest][0]:null!=f&&null!=f.dest?f.dest[0]:null;return destRef instanceof Object?c.Gg[destRef.num+" "+destRef.gen+" R"]+1:destRef+1;}function ha(f,c){if(eb.platform.Xn){var d=new FontFace(f,"url(data:"+c+")",{});document.fonts.add(d);}else{d='@font-face { font-family:"'+f+'";src:'+("url("+c+");")+"}";if(window.styleElement){e=window.styleElement;}else{var e=window.styleElement=document.createElement("style");e.id="FLOWPAPER_FONT_STYLE_TAG";document.documentElement.getElementsByTagName("head")[0].appendChild(e);}e=e.sheet;e.insertRule(d,e.cssRules.length);}}function ia(f){function c(d){if(!(d>=f.length)){var e=document.createElement("a");e.href=f[d].download;e.target="_parent";"download" in e&&(e.download=f[d].filename);(document.body||document.documentElement).appendChild(e);e.click?e.click():$(e).click();e.parentNode.removeChild(e);setTimeout(function(){c(d+1);},500);}}c(0);}function ja(f,c){var d=new XMLHttpRequest;d.onreadystatechange=function(){if(4==d.readyState&&200==d.status){var e=URL.createObjectURL(this.response);new Image;c(e);}};d.open("GET",f,!0);d.responseType="blob";d.send();}function Q(f){function c(c,d){var e,g,h,m,f;h=c&2147483648;m=d&2147483648;e=c&1073741824;g=d&1073741824;f=(c&1073741823)+(d&1073741823);return e&g?f^2147483648^h^m:e|g?f&1073741824?f^3221225472^h^m:f^1073741824^h^m:f^h^m;}function d(d,e,g,h,m,f,k){d=c(d,c(c(e&g|~e&h,m),k));return c(d<<f|d>>>32-f,e);}function e(d,e,g,h,m,f,k){d=c(d,c(c(e&h|g&~h,m),k));return c(d<<f|d>>>32-f,e);}function g(d,e,g,h,m,f,k){d=c(d,c(c(e^g^h,m),k));return c(d<<f|d>>>32-f,e);}function h(d,e,g,h,m,f,k){d=c(d,c(c(g^(e|~h),m),k));return c(d<<f|d>>>32-f,e);}function m(c){var d="",e="",g;for(g=0;3>=g;g++){e=c>>>8*g&255,e="0"+e.toString(16),d+=e.substr(e.length-2,2);}return d;}var k=[],l,n,p,r,t,q,u,v;f=function(c){c=c.replace(/\r\n/g,"\n");for(var d="",e=0;e<c.length;e++){var g=c.charCodeAt(e);128>g?d+=String.fromCharCode(g):(127<g&&2048>g?d+=String.fromCharCode(g>>6|192):(d+=String.fromCharCode(g>>12|224),d+=String.fromCharCode(g>>6&63|128)),d+=String.fromCharCode(g&63|128));}return d;}(f);k=function(c){var d,e=c.length;d=e+8;for(var g=16*((d-d%64)/64+1),h=Array(g-1),m=0,f=0;f<e;){d=(f-f%4)/4,m=f%4*8,h[d]|=c.charCodeAt(f)<<m,f++;}d=(f-f%4)/4;h[d]|=128<<f%4*8;h[g-2]=e<<3;h[g-1]=e>>>29;return h;}(f);t=1732584193;q=4023233417;u=2562383102;v=271733878;for(f=0;f<k.length;f+=16){l=t,n=q,p=u,r=v,t=d(t,q,u,v,k[f+0],7,3614090360),v=d(v,t,q,u,k[f+1],12,3905402710),u=d(u,v,t,q,k[f+2],17,606105819),q=d(q,u,v,t,k[f+3],22,3250441966),t=d(t,q,u,v,k[f+4],7,4118548399),v=d(v,t,q,u,k[f+5],12,1200080426),u=d(u,v,t,q,k[f+6],17,2821735955),q=d(q,u,v,t,k[f+7],22,4249261313),t=d(t,q,u,v,k[f+8],7,1770035416),v=d(v,t,q,u,k[f+9],12,2336552879),u=d(u,v,t,q,k[f+10],17,4294925233),q=d(q,u,v,t,k[f+11],22,2304563134),t=d(t,q,u,v,k[f+12],7,1804603682),v=d(v,t,q,u,k[f+13],12,4254626195),u=d(u,v,t,q,k[f+14],17,2792965006),q=d(q,u,v,t,k[f+15],22,1236535329),t=e(t,q,u,v,k[f+1],5,4129170786),v=e(v,t,q,u,k[f+6],9,3225465664),u=e(u,v,t,q,k[f+11],14,643717713),q=e(q,u,v,t,k[f+0],20,3921069994),t=e(t,q,u,v,k[f+5],5,3593408605),v=e(v,t,q,u,k[f+10],9,38016083),u=e(u,v,t,q,k[f+15],14,3634488961),q=e(q,u,v,t,k[f+4],20,3889429448),t=e(t,q,u,v,k[f+9],5,568446438),v=e(v,t,q,u,k[f+14],9,3275163606),u=e(u,v,t,q,k[f+3],14,4107603335),q=e(q,u,v,t,k[f+8],20,1163531501),t=e(t,q,u,v,k[f+13],5,2850285829),v=e(v,t,q,u,k[f+2],9,4243563512),u=e(u,v,t,q,k[f+7],14,1735328473),q=e(q,u,v,t,k[f+12],20,2368359562),t=g(t,q,u,v,k[f+5],4,4294588738),v=g(v,t,q,u,k[f+8],11,2272392833),u=g(u,v,t,q,k[f+11],16,1839030562),q=g(q,u,v,t,k[f+14],23,4259657740),t=g(t,q,u,v,k[f+1],4,2763975236),v=g(v,t,q,u,k[f+4],11,1272893353),u=g(u,v,t,q,k[f+7],16,4139469664),q=g(q,u,v,t,k[f+10],23,3200236656),t=g(t,q,u,v,k[f+13],4,681279174),v=g(v,t,q,u,k[f+0],11,3936430074),u=g(u,v,t,q,k[f+3],16,3572445317),q=g(q,u,v,t,k[f+6],23,76029189),t=g(t,q,u,v,k[f+9],4,3654602809),v=g(v,t,q,u,k[f+12],11,3873151461),u=g(u,v,t,q,k[f+15],16,530742520),q=g(q,u,v,t,k[f+2],23,3299628645),t=h(t,q,u,v,k[f+0],6,4096336452),v=h(v,t,q,u,k[f+7],10,1126891415),u=h(u,v,t,q,k[f+14],15,2878612391),q=h(q,u,v,t,k[f+5],21,4237533241),t=h(t,q,u,v,k[f+12],6,1700485571),v=h(v,t,q,u,k[f+3],10,2399980690),u=h(u,v,t,q,k[f+10],15,4293915773),q=h(q,u,v,t,k[f+1],21,2240044497),t=h(t,q,u,v,k[f+8],6,1873313359),v=h(v,t,q,u,k[f+15],10,4264355552),u=h(u,v,t,q,k[f+6],15,2734768916),q=h(q,u,v,t,k[f+13],21,1309151649),t=h(t,q,u,v,k[f+4],6,4149444226),v=h(v,t,q,u,k[f+11],10,3174756917),u=h(u,v,t,q,k[f+2],15,718787259),q=h(q,u,v,t,k[f+9],21,3951481745),t=c(t,l),q=c(q,n),u=c(u,p),v=c(v,r);}return(m(t)+m(q)+m(u)+m(v)).toLowerCase();}String.format=function(){for(var f=arguments[0],c=0;c<arguments.length-1;c++){f=f.replace(new RegExp("\\{"+c+"\\}","gm"),arguments[c+1]);}return f;};function ka(f,c,d){return f>c&&f<d;}String.prototype.endsWith=function(f){return this.substr(this.length-f.length)===f;};String.prototype.startsWith=function(f){return this.substr(0,f.length)===f;};jQuery.fn.Cr=function(f,c){return this.each(function(){jQuery(this).fadeIn(f,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(c)?eval(c)():"";});});};jQuery.fn.Pn=function(f){this.each(function(){eb.browser.msie?eval(f)():jQuery(this).fadeOut(400,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(f)?eval(f)():"";});});};jQuery.fn.eg=function(f){this.each(function(){jQuery(this).data("retry")?jQuery(this).data("retry",parseInt(jQuery(this).data("retry"))+1):jQuery(this).data("retry",1);3>=jQuery(this).data("retry")?this.src=this.src+(-1<this.src.indexOf("?")?"&":"?")+"t="+(new Date).getTime():f();});};jQuery.fn.Xr=function(f,c){if(0<=jQuery.fn.jquery.indexOf("1.8")){try{if(void 0===jQuery._data(this[0],"events")){return !1;}}catch(g){return !1;}var d=jQuery._data(this[0],"events")[f];if(void 0===d||0===d.length){return !1;}var e=0;}else{if(void 0===this.data("events")){return !1;}d=this.data("events")[f];if(void 0===d||0===d.length){return !1;}e=0;}for(;e<d.length;e++){if(d[e].handler==c){return !0;}}return !1;};jQuery.fn.Es=function(f){if(void 0===this.data("events")){return !1;}var c=this.data("events")[f];if(void 0===c||0===c.length){return !1;}for(var d=0;d<c.length;d++){jQuery(this).unbind(f,c[d].handler);}return !1;};jQuery.fn.hs=function(){eb.browser.capabilities.Db?this.scrollTo(ce,0,{axis:"xy",offset:-30}):this.data("jsp").scrollToElement(ce,!1);};function fa(f){return f.split("").map(function(c){var d=c.charCodeAt(0);if(127<d){return c=d.toString(16),"\\u"+(Array(5-c.length).join("0")+c);}31>=d&&(c="");"\n"==c&&(c="");"\r"==c&&(c="");"\b"==c&&(c="");"\t"==c&&(c="");"\f"==c&&(c="");"\b"==c&&(c="");return c;}).join("");}function R(f){return f.split("").reverse().join("");}jQuery.fn.Ie=function(f,c){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-right":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.unbind("mouseover");this.unbind("mouseout");eb.platform.touchonlydevice||(this.on("mouseover",function(c){jQuery(c.target).css({"border-right":String.format("{0}px solid {1}",f,"#DEDEDE")});}),this.on("mouseout",function(d){jQuery(d.target).css({"border-right":String.format("{0}px solid {1}",f,c)});}));};jQuery.fn.rj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-left":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-left":String.format("1px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-left":String.format("1px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.Ad=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-left":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});d&&this.css({opacity:0.5});this.unbind("mouseover");this.unbind("mouseout");this.on("mouseover",function(c){d?jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#FFFFFF"),opacity:0.85}):jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(e.target).css({"border-left":String.format("{0}px solid {1}",f,c)});d&&jQuery(e.target).css({opacity:0.5});});};jQuery.fn.sj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-right":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-right":String.format("1px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-right":String.format("1px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.addClass5=function(f){return this[0].classList?(this[0].classList.add(f),this):this.addClass(f);};jQuery.fn.removeClass5=function(f){return this[0].classList?(this[0].classList.remove(f),this):this.addClass(f);};jQuery.fn.Kb=function(){this.css({display:"none"});};jQuery.fn.Ec=function(){this.css({display:"block"});};window.requestAnim=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(f){window.setTimeout(f,1000/60);};jQuery.fn.Qf=function(){var f=this.css("transform");return !f||"none"==f||"0px,0px"==f.translate&&1==parseFloat(f.scale)?!1:!0;};function la(f,c){var d="0",e=f=f+"";if(null==d||1>d.length){d=" ";}if(f.length<c){for(var e="",g=0;g<c-f.length;g++){e+=d;}e+=f;}return e;}jQuery.fn.spin=function(f){this.each(function(){var c=jQuery(this),d=c.data();d.Hj&&(d.Hj.stop(),delete d.Hj);!1!==f&&(d.Hj=(new Spinner(jQuery.extend({color:c.css("color")},f))).spin(this));});return this;};jQuery.fn.zo=function(){var f=jQuery.extend({Bk:"cur",yl:!1,speed:300},{yl:!1,speed:100});this.each(function(){var c=jQuery(this).addClass("harmonica"),d=jQuery("ul",c).prev("a");c.children(":last").addClass("last");jQuery("ul",c).each(function(){jQuery(this).children(":last").addClass("last");});jQuery("ul",c).prev("a").addClass("harFull");c.find("."+f.Bk).parents("ul").show().prev("a").addClass(f.Bk).addClass("harOpen");d.on("click",function(){jQuery(this).next("ul").is(":hidden")?jQuery(this).addClass("harOpen"):jQuery(this).removeClass("harOpen");f.yl?(jQuery(this).closest("ul").closest("ul").find("ul").not(jQuery(this).next("ul")).slideUp(f.speed).prev("a").removeClass("harOpen"),jQuery(this).next("ul").slideToggle(f.speed)):jQuery(this).next("ul").stop(!0).slideToggle(f.speed);return !1;});});};function ma(f){if(f&&(!f||f.length)){return f=f.replace(/\\u([\d\w]{4})/gi,function(c,d){return String.fromCharCode(parseInt(d,16));}),f=unescape(f);}}function na(f,c){var d=jQuery("<ul>");jQuery.each(c,function(c,g){var h=jQuery("<li>").appendTo(d),m=jQuery(g).children("node");jQuery('<a style="'+(eb.platform.touchonlydevice?"font-size:0.8em;line-height:1.2em;":"")+'" class="flowpaper_accordionLabel flowpaper-tocitem" data-pageNumber="'+g.getAttribute("pageNumber")+'">').text(ma(g.getAttribute("title"))).appendTo(h);0<m.length&&na(f,m).appendTo(h);});return d;}function S(f){f=parseInt(0==f.indexOf("#")?f.substr(1):f,16);return{r:f>>16,g:f>>8&255,b:f&255};}jQuery.Pf=function(f,c,d){f=f.offset();return{x:Math.floor(c-f.left),y:Math.floor(d-f.top)};};jQuery.fn.Pf=function(f,c){return jQuery.Pf(this.first(),f,c);};(function(f){f.fn.moveTo=function(c){return this.each(function(){var d=f(this).clone();f(d).appendTo(c);f(this).remove();});};})(jQuery);function oa(f){return f.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,"").replace(/\s+/g," ");}function T(f){window.Vh||(window.Vh=1);if(!window.Ik){var c=window,d=document.createElement("div");document.body.appendChild(d);d.style.position="absolute";d.style.width="1in";var e=d.offsetWidth;d.style.display="none";c.Ik=e;}return f/(72/window.Ik)*window.Vh;}function U(f){f=f.replace(/-/g,"-\x00").split(/(?=-| )|\0/);for(var c=[],d=0;d<f.length;d++){"-"==f[d]&&d+1<=f.length?(c[c.length]=-1*parseFloat(oa(f[d+1].toString())),d++):c[c.length]=parseFloat(oa(f[d].toString()));}return c;}function pa(f){this.source=f;this.volume=100;this.loop=!1;this.ce=void 0;this.finish=!1;this.stop=function(){document.body.removeChild(this.ce);};this.start=function(){if(this.finish){return !1;}this.ce=document.createElement("embed");this.ce.setAttribute("src",this.source);this.ce.setAttribute("hidden","true");this.ce.setAttribute("volume",this.volume);this.ce.setAttribute("autostart","true");this.ce.setAttribute("loop",this.loop);document.body.appendChild(this.ce);};this.remove=function(){document.body.removeChild(this.ce);this.finish=!0;};this.init=function(c,d){this.finish=!1;this.volume=c;this.loop=d;};}function qa(f,c){jQuery("#"+f).hasClass("activeElement")||(jQuery(".activeElement:not(#"+f+")").removeClass("activeElement").find(".activeElement-label").remove(),jQuery("#"+f).hasClass("activeElement")||(jQuery("#"+f).addClass("activeElement").prepend('<span contenteditable="false" class="activeElement-label"><i class="activeElement-drag fa fa-arrows"></i><span class="activeElement-labeltext">Click to Zoom in and out. Double click to edit this page.</span><i style="margin-left:5px;" class="fa fa-cog activeElement-label-settingsCog"></i></span>'),jQuery("#"+f).data("hint-pageNumber",c)));}FLOWPAPER.Oj=function(f,c){if(0<f.indexOf("[*,2]")||0<f.indexOf("[*,1]")){var d=f.substr(f.indexOf("[*,"),f.indexOf("]")-f.indexOf("[*,")+1);return f.replace(d,la(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}return 0<f.indexOf("[*,2,true]")?f.replace("_[*,2,true]",""):0<f.indexOf("[*,1,true]")?f.replace("_[*,1,true]",""):0<f.indexOf("[*,0,true]")?f.replace("_[*,0,true]",""):f;};FLOWPAPER.Qk=function(){for(var f="",c=0;10>c;c++){f+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".charAt(Math.floor(62*Math.random()));}return f;};FLOWPAPER.Yr=function(f){return"#"!=f.charAt(0)&&"/"!=f.charAt(0)&&(-1==f.indexOf("//")||f.indexOf("//")>f.indexOf("#")||f.indexOf("//")>f.indexOf("?"));};FLOWPAPER.pr=function(f,c,d,e,g,h,m){if(e<c){var k=c;c=e;e=k;k=d;d=g;g=k;}k=document.createElement("div");k.id=f+"_line";k.className="flowpaper_cssline flowpaper_annotation_"+m+" flowpaper_interactiveobject_"+m;f=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));k.style.width=f+"px";k.style.marginLeft=h;e=Math.atan((g-d)/(e-c));k.style.top=d+0.5*f*Math.sin(e)+"px";k.style.left=c-0.5*f*(1-Math.cos(e))+"px";k.style.MozTransform=k.style.WebkitTransform=k.style.msTransform=k.style.Hb="rotate("+e+"rad)";return k;};FLOWPAPER.ss=function(f,c,d,e,g,h){if(e<c){var m=c;c=e;e=m;m=d;d=g;g=m;}f=jQuery("#"+f+"_line");m=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));f.css("width",m+"px");e=Math.atan((g-d)/(e-c));f.css("top",d+0.5*m*Math.sin(e)+"px");f.css("left",c-0.5*m*(1-Math.cos(e))+"px");f.css("margin-left",h);f.css("-moz-transform","rotate("+e+"rad)");f.css("-webkit-transform","rotate("+e+"rad)");f.css("-o-transform","rotate("+e+"rad)");f.css("-ms-transform","rotate("+e+"rad)");};FLOWPAPER.Ar=function(){eb.browser.mozilla?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_moz"):eb.browser.msie||eb.browser.Zf?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_ie"):jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing");};FLOWPAPER.ur=function(){jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_moz");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_ie");};"use strict";function ra(){try{return new window.XMLHttpRequest;}catch(f){}}var sa="undefined"!==typeof window&&window.ActiveXObject?function(){var f;if(!(f=ra())){a:{try{f=new window.ActiveXObject("Microsoft.XMLHTTP");break a;}catch(c){}f=void 0;}}return f;}:ra;function ta(f,c){try{var d=sa();d.open("GET",f,!0);"responseType" in d&&(d.responseType="arraybuffer");d.overrideMimeType&&d.overrideMimeType("text/plain; charset=x-user-defined");d.onreadystatechange=function(){var e,g;if(4===d.readyState){if(200===d.status||0===d.status){g=e=null;try{e=d.response||d.responseText;}catch(h){g=Error(h);}c(g,e);}else{c(Error("Ajax error for "+f+" : "+this.status+" "+this.statusText),null);}}};d.send();}catch(e){c(Error(e),null);}}var ImagePageRenderer=window.ImagePageRenderer=function(){function f(c,d,e){this.P=c;this.config=d;this.Sd=d.jsonfile;this.jsDirectory=e;this.pageImagePattern=d.pageImagePattern;this.pageThumbImagePattern=d.pageThumbImagePattern;this.pageSVGImagePattern=d.pageSVGImagePattern;this.lj=d.pageHighResImagePattern;this.af=d.DisableOverflow;this.JSONPageDataFormat=this.ta=this.dimensions=null;this.Ma=null!=d.compressedJSONFormat?d.compressedJSONFormat:!0;this.S=null;this.ec="pageLoader_[pageNumber]";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Ze=-1;this.Ba=null;this.Rf=!1;this.pe=this.pb=!0;this.Eb=d.SVGMode;this.loadTestFont=atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==");}f.prototype={rh:function(){return"ImagePageRenderer";},Ja:function(c){return c.F.I?c.F.I.Z:"";},xb:function(c){return c.F.I.qo;},dispose:function(){jQuery(this.Ba).unbind();this.Ba.dispose();delete this.wc;this.wc=null;delete this.dimensions;this.dimensions=null;delete this.Ba;this.Ba=null;delete this.S;this.S=null;},initialize:function(c){var d=this;d.wc=c;d.Xa=eb.platform.Xa;d.Ma?d.JSONPageDataFormat={vf:"width",tf:"height",Le:"text",ub:"d",Jg:"f",qc:"l",Fb:"t",Ed:"w",Dd:"h"}:d.JSONPageDataFormat={vf:d.config.JSONPageDataFormat.pageWidth,tf:d.config.JSONPageDataFormat.pageHeight,Le:d.config.JSONPageDataFormat.textCollection,ub:d.config.JSONPageDataFormat.textFragment,Jg:d.config.JSONPageDataFormat.textFont,qc:d.config.JSONPageDataFormat.textLeft,Fb:d.config.JSONPageDataFormat.textTop,Ed:d.config.JSONPageDataFormat.textWidth,Dd:d.config.JSONPageDataFormat.textHeight};d.Ba=new ua(d.P,d.Ma,d.JSONPageDataFormat,!0);jQuery.ajaxPrefilter(function(c,d,e){if(c.onreadystatechange){var f=c.xhr;c.xhr=function(){function d(){c.onreadystatechange(h,e);}var h=f.apply(this,arguments);h.addEventListener?h.addEventListener("readystatechange",d,!1):setTimeout(function(){var c=h.onreadystatechange;c&&(h.onreadystatechange=function(){d();c.apply(this,arguments);});},0);return h;};}});if(!eb.browser.msie&&!eb.browser.safari&&6>eb.browser.Sb){var e=jQuery.ajaxSettings.xhr;jQuery.ajaxSettings.xhr=function(){var c=e();c instanceof window.XMLHttpRequest&&c.addEventListener("progress",function(c){c.lengthComputable&&(c=c.loaded/c.total,jQuery("#toolbar").trigger("onProgressChanged",c));},!1);return c;};}jQuery("#"+d.P).trigger("onDocumentLoading");c=document.createElement("a");c.href=d.Sd;c.search+=0<c.search.length?"&":"?";c.search+="callback=?";d.mr=!1;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.3});0<d.Sd.indexOf("{page}")?(d.ra=!0,d.bf({url:d.If(null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10),dataType:d.config.JSONDataType,success:function(c){var e;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});if(c.e){var m=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML));c=jQuery.parseJSON(m.toString(CryptoJS.vc.lg));d.Cf=!0;}if(0<c.length){d.S=Array(c[0].pages);d.qa=c[0].detailed;for(m=0;m<c.length;m++){d.S[m]=c[m],d.S[m].loaded=!0;}for(m=0;m<d.S.length;m++){null==d.S[m]&&(d.S[m]=[],d.S[m].loaded=!1);}0<d.S.length&&(d.Ta=d.S[0].twofold,d.Ta&&(d.Xa=1));if(d.qa){d.Vc||(d.Vc={});m=5>c.length?c.length:5;d.sf=[];for(var f=0;f<m;f++){if(c[f].fonts&&0<c[f].fonts.length){for(e=0;e<c[f].fonts.length;e++){d.Vc[c[f].fonts[e].name]||(ha(c[f].fonts[e].name,c[f].fonts[e].data),d.sf.push(c[f].fonts[e].name));}}else{var l=c[f].text;if(l&&0<l.length){for(e=0;e<l.length;e++){l[e][7]&&!d.Vc[l[e][7]]&&-1==d.sf.indexOf(l[e][7])&&0==l[e][7].indexOf("g_font")&&l[e][7]&&d.sf.push(l[e][7]);}}}}d.nh=0;0<d.sf.length?WebFont.load({custom:{families:d.sf},fontactive:function(c){d.nh++;d.Vc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.nh/d.sf.length});},fontinactive:function(c){d.nh++;d.Vc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.nh/d.sf.length});},inactive:function(){d.wc();d.Ba.$c(c);},active:function(){d.wc();d.Ba.$c(c);},timeout:5000}):(d.wc(),d.Ba.$c(c));}else{d.wc(),d.Ba.$c(c);}}},error:function(c,e,f){O("Error loading JSON file ("+c.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}})):d.bf({url:d.Sd,dataType:d.config.JSONDataType,success:function(c){jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});c.e&&(c=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.vc.lg)),d.Cf=!0);d.S=c;for(var e=0;e<c.length;e++){c[e].loaded=!0;}d.wc();d.Ba.$c(c);},onreadystatechange:function(){},error:function(c,e,f){O("Error loading JSON file ("+c.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}});},getDimensions:function(c,d){var e=this.S.length;null==c&&(c=0);null==d&&(d=e);if(null==this.dimensions||d&&c){for(null==this.dimensions&&(this.dimensions=[],this.ta=[]),e=c;e<d;e++){this.S[e].loaded?(this.dimensions[e]=[],this.Rl(e),null==this.uc&&(this.uc=this.dimensions[e])):null!=this.uc&&(this.dimensions[e]=[],this.dimensions[e].page=e,this.dimensions[e].loaded=!1,this.dimensions[e].width=this.uc.width,this.dimensions[e].height=this.uc.height,this.dimensions[e].ma=this.uc.ma,this.dimensions[e].ya=this.uc.ya);}}return this.dimensions;},Rl:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.dimensions[c].width=this.S[c][this.JSONPageDataFormat.vf];this.dimensions[c].height=this.S[c][this.JSONPageDataFormat.tf];this.dimensions[c].ma=this.dimensions[c].width;this.dimensions[c].ya=this.dimensions[c].height;this.ta[c]=[];this.ta[c]="";900<this.dimensions[c].width&&(this.dimensions[c].width=918,this.dimensions[c].height=1188);for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.Le][e++];){this.Ma?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<Number(g[2].toString())&&!isNaN(g[3].toString())&&0<Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.ta[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.ta[c].endsWith(" ")&&(this.ta[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.ta[c]+=d),this.config.RTLMode&&(this.ta[c]+=R(d))):!isNaN(g[this.JSONPageDataFormat.qc].toString())&&0<=Number(g[this.JSONPageDataFormat.qc].toString())&&!isNaN(g[this.JSONPageDataFormat.Fb].toString())&&0<=Number(g[this.JSONPageDataFormat.Fb].toString())&&!isNaN(g[this.JSONPageDataFormat.Ed].toString())&&0<Number(g[this.JSONPageDataFormat.Ed].toString())&&!isNaN(g[this.JSONPageDataFormat.Dd].toString())&&0<Number(g[this.JSONPageDataFormat.Dd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Fb])!=Math.round(g[this.JSONPageDataFormat.Fb])&&Math.round(d[this.JSONPageDataFormat.qc])==Math.round(prev[this.JSONPageDataFormat.qc])&&(this.ta[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Fb])!=Math.round(g[this.JSONPageDataFormat.Fb])&&!this.ta[c].endsWith(" ")&&(this.ta[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.ub]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.ta[c]+=d),this.config.RTLMode&&(this.ta[c]+=R(d))),d=g;}this.ta[c]=this.ta[c].toLowerCase();}},Qd:function(c){this.mb=!1;if("Portrait"==c.H||"SinglePage"==c.H){"Portrait"==c.H&&c.M(c.T).addClass("flowpaper_hidden"),this.Eb?c.M(c.xa).append("<object data='"+this.ea+"' type='image/svg+xml' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+"' /></div>"):this.qa?c.M(c.xa).append("<canvas id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"):c.M(c.xa).append("<img alt='' src='"+this.ea+"' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"),"SinglePage"==c.H&&0==c.pageNumber&&this.wh(c,c.T);}"ThumbView"==c.H&&jQuery(c.T).append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_hidden' style='"+c.getDimensions()+"'/>");c.H==this.Ja(c)&&this.xb(c).Qd(this,c);if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.T+"_1").append("<img id='"+c.ec+"_1' class='flowpaper_pageLoader' src='"+c.F.ke+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.T+"_1").append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;background-size:cover;'/>"),jQuery(c.T+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;'></div>")),1==c.pageNumber&&(jQuery(c.T+"_2").append("<img id='"+c.ec+"_2' class='flowpaper_pageLoader' src='"+c.F.ke+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.T+"_2").append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;left:0px;top:0px;background-size:cover;'/>"),jQuery(c.T+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;'></div>"));}},bf:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ta(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.yb||(d.yb={});d.yb[c.url]=c;d.mf||(d.mf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.mf.addEventListener("message",function(c){d.yb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.yb[c.data.url]&&(d.yb[c.data.url].success(e),d.yb[c.data.url]=null);}):d.yb[c.data.url]&&(d.yb[c.data.url].success(JSON.parse(c.data.JSON)),d.yb[c.data.url]=null));},!1));d.mf.postMessage(c.url);}}else{return jQuery.ajax(c);}},If:function(c){return this.Sd.replace("{page}",c);},ga:function(c,d,e){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.Cf&&(c=CryptoJS.Re.encrypt(c.toString(),CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)).toString());return !e||e&&!this.pageSVGImagePattern?d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?0<this.pageThumbImagePattern.indexOf("?")?this.pageThumbImagePattern.replace("{page}",c)+"&resolution="+d:this.pageThumbImagePattern.replace("{page}",c)+"?resolution="+d:0<this.pageImagePattern.indexOf("?")?this.pageImagePattern.replace("{page}",c)+"&resolution="+d:this.pageImagePattern.replace("{page}",c)+"?resolution="+d:this.pageImagePattern.replace("{page}",c):d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?this.pageThumbImagePattern.replace("{page}",c):0<this.pageSVGImagePattern.indexOf("?")?this.pageSVGImagePattern.replace("{page}",c)+"&resolution="+d:this.pageSVGImagePattern.replace("{page}",c)+"?resolution="+d:this.pageSVGImagePattern.replace("{page}",c);},Nb:function(c,d){return this.lj.replace("{page}",c).replace("{sector}",d);},Nf:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c);return 0===d?c:c+(d-c%d);},yc:function(c,d,e){var g=this;g.ud!=g.Nf(c)&&(g.ud=g.Nf(c),g.bf({url:g.If(g.ud),dataType:g.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.vc.lg)),g.Cf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var f=parseInt(c[d].number)-1;g.S[f]=c[d];g.S[f].loaded=!0;g.Rl(f);}g.Ba.$c(g.S);jQuery(g).trigger("onTextDataUpdated",c[0].number);null!=e&&e();}g.ud=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",g.P);g.ud=null;}}));},Ea:function(c){return c.Ze;},Ga:function(c,d){c.Ze=d;},Vb:function(c,d,e){var g=this;if(c.H!=g.Ja(c)&&-1<g.Ea(c)){window.clearTimeout(c.pc),c.pc=setTimeout(function(){g.Vb(c,d,e);},250);}else{if(g.qa&&c.H!=g.Ja(c)&&(!g.af&&c.Zk!=c.scale||g.af&&!c.$k||"SinglePage"==c.H)&&("Portrait"==c.H||"SinglePage"==c.H)){"SinglePage"!=c.H?g.Ga(c,c.pageNumber):0<=g.Ea(c)&&jQuery(c.pa).css("background-image","url('"+g.ga(c.pages.R+1)+"')");var h=jQuery(c.pa).get(0),f=1.5<g.Xa?g.Xa:1.5;g.af&&(f=2);h.width=jQuery(h).width()*f;h.height=jQuery(h).height()*f;c.Zk=c.scale;jQuery(h).data("needs-overlay",1);c.$k||(c.$k=!0);g.af?(c.W=new Image,jQuery(c.W).bind("load",function(){var d=jQuery(c.pa).get(0);d.getContext("2d").drawImage(c.W,0,0,d.width,d.height);c.ae(d).then(function(){jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);},function(){});}),jQuery(c.W).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))):c.ae(h).then(function(){},function(){});}if(!c.oa||c.H==g.Ja(c)){f=c.Fg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ja(c)){var k=c.za(),l=c.Ha(),h=c.dc();0==jQuery("#"+f).length?(f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+k+"px;height:"+l+"px;margin-left:"+h+"px;'></div>","Portrait"==c.H||g.Ja(c)||"SinglePage"==c.H?jQuery(c.xa).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.xa+"_"+(c.pageNumber%2+1)).append(f)):jQuery("#"+f).css({width:k,height:l,"margin-left":h});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.Bb).css({"z-index":11,"margin-left":h}),jQuery(c.Bb).transition({rotate:c.rotation,translate:"-"+h+"px, 0px"},0);}}if("Portrait"==c.H||"ThumbView"==c.H){c.oa||jQuery(c.pa).attr("src")!=g.ea&&!g.Eb&&!g.qa||c.hf||(g.Ga(c,c.pageNumber),c.dimensions.loaded||g.yc(c.pageNumber+1,!0,function(){g.Kc(c);}),c.ad(),g.W=new Image,jQuery(g.W).bind("load",function(){c.hf=!0;c.jf=this.height;c.kf=this.width;g.Zc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.ya,"Portrait"!=c.H&&"SinglePage"!=c.H||c.Qa());}).bind("error",function(){O("Error loading image ("+this.src+")","onErrorLoadingPage",g.P,c.pageNumber);}),jQuery(g.W).bind("error",function(){g.Ga(c,-1);}),jQuery(g.W).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))),!c.oa&&jQuery(c.pa).attr("src")==g.ea&&c.hf&&g.Zc(c),null!=e&&e();}c.H==g.Ja(c)&&(c.dimensions.loaded||g.dimensions[c.pageNumber-1].loaded&&(g.getNumPages()!=c.pageNumber+1||0!=g.getNumPages()%2)||g.yc(c.pageNumber+1,!0,function(){g.Kc(c);}),g.xb(c).Vb(g,c,d,e));"SinglePage"==c.H&&(c.zc||(c.ad(),c.zc=!0),0==c.pageNumber&&(g.Ga(c,c.pages.R),g.getDimensions()[g.Ea(c)].loaded||g.yc(g.Ea(c)+1,!0,function(){g.Kc(c);}),g.W=new Image,jQuery(g.W).bind("load",function(){c.hf=!0;c.jf=this.height;c.kf=this.width;c.Qb();g.Zc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.ya,c.Qa());c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ga(c,-1);}),jQuery(g.W).bind("error",function(){c.Qb();g.Ga(c,-1);}),jQuery(g.W).attr("src",g.ga(c.pages.R+1)),jQuery(c.T+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()));if("TwoPage"==c.H||"BookView"==c.H){c.zc||(c.ad(),c.zc=!0),0==c.pageNumber?(jQuery(c.pa),"BookView"==c.H?g.Ga(c,0!=c.pages.R?c.pages.R:c.pages.R+1):"TwoPage"==c.H&&g.Ga(c,c.pages.R),g.getDimensions()[g.Ea(c)-1]&&!g.getDimensions()[g.Ea(c)-1].loaded&&g.yc(g.Ea(c)+1,!0,function(){g.Kc(c);}),g.W=new Image,jQuery(g.W).bind("load",function(){c.hf=!0;c.jf=this.height;c.kf=this.width;c.Qb();g.Zc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.ya,c.Qa());c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ga(c,-1);}),jQuery(g.W).bind("error",function(){c.Qb();g.Ga(c,-1);}),"BookView"==c.H&&jQuery(g.W).attr("src",g.ga(0!=c.pages.R?c.pages.R:c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.W).attr("src",g.ga(c.pages.R+1)),jQuery(c.T+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()):1==c.pageNumber&&(h=jQuery(c.pa),c.pages.R+1>c.pages.getTotalPages()?h.attr("src",""):(0!=c.pages.R||"TwoPage"==c.H?(g.Ga(c,c.pages.R+1),g.W=new Image,jQuery(g.W).bind("load",function(){c.Qb();g.Zc(c);c.dimensions.ma>c.dimensions.width&&(c.dimensions.width=c.dimensions.ma,c.dimensions.height=c.dimensions.ya);c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;g.Ga(c,-1);}),jQuery(g.W).bind("error",function(){g.Ga(c,-1);c.Qb();})):c.Qb(),"BookView"==c.H&&jQuery(g.W).attr("src",g.ga(c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.W).attr("src",g.ga(c.pages.R+2)),1<c.pages.R&&jQuery(c.T+"_2").removeClass("flowpaper_hidden"),jQuery(c.T+"_2").removeClass("flowpaper_load_on_demand")),null!=e&&e());}}}},Zc:function(c){if("Portrait"!=c.H||Math.round(c.kf/c.jf*100)==Math.round(c.dimensions.width/c.dimensions.height*100)&&!this.Eb||eb.browser.msie&&9>eb.browser.version){c.H==this.Ja(c)?this.xb(c).Zc(this,c):"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&(d="BookView"==c.H?0!=c.pages.R?c.pages.R:c.pages.R+1:c.pages.R+1,c.Hh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb?jQuery(c.pa).attr("src",this.ga(d)):jQuery(c.pa).css("background-image","url('"+this.ga(d)+"')"),jQuery(c.T+"_1").removeClass("flowpaper_hidden"),c.Hh=d),jQuery(c.pa).removeClass("flowpaper_hidden")),1==c.pageNumber&&(d="BookView"==c.H?c.pages.R+1:c.pages.R+2,c.Hh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb?jQuery(c.pa).attr("src",this.ga(d)):jQuery(c.pa).css("background-image","url('"+this.ga(d)+"')"),c.Hh=d,"TwoPage"==c.H&&jQuery(c.T+"_2").removeClass("flowpaper_hidden")),jQuery(c.pa).removeClass("flowpaper_hidden")),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):"SinglePage"==c.H?(this.qa?jQuery(c.pa).css("background-image","url('"+this.ga(this.Ea(c)+1)+"')"):jQuery(c.pa).attr("src",this.ga(this.Ea(c)+1)),jQuery("#"+c.ec).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):this.af?this.af&&(jQuery("#"+c.ec).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0):(this.Eb?(jQuery(c.pa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.T).removeClass("flowpaper_load_on_demand")):this.qa?jQuery(c.pa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"):jQuery(c.pa).attr("src",this.ga(c.pageNumber+1),"ThumbView"==c.H?200:null),jQuery("#"+c.ec).hide(),c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0);}else{if(this.Eb){jQuery(c.pa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.T).removeClass("flowpaper_load_on_demand"),jQuery(c.pa).css("width",jQuery(c.pa).css("width"));}else{if(this.af&&this.qa){var d=jQuery(c.pa).css("background-image");0<d.length&&"none"!=d?(jQuery(c.pa).css("background-image",d+",url('"+this.ga(c.pageNumber+1)+"')"),jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),aa(jQuery(c.pa).get(0))):jQuery(c.pa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')");}else{jQuery(c.pa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"),jQuery(c.pa).attr("src",this.ea);}}jQuery("#"+c.ec).hide();c.oa||this.qa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;}this.Ga(c,-1);this.Rf||(this.Rf=!0,c.F.Fh());},Jl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")")):jQuery(c.fa).css("background-image","url("+this.ea+")");},vb:function(c){jQuery(c.T).addClass("flowpaper_load_on_demand");var d=null;if("Portrait"==c.H||"ThumbView"==c.H||"SinglePage"==c.H){d=jQuery(c.pa);}if("TwoPage"==c.H||"BookView"==c.H){d=jQuery(c.pa),jQuery(c.pa).addClass("flowpaper_hidden");}c.H==this.Ja(c)&&this.xb(c).vb(this,c);null!=d&&0<d.length&&(d.attr("alt",d.attr("src")),d.attr("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"));c.zc=!1;c.Hh=-1;jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.pj&&c.pj();jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove();c.Ng&&c.Ng();},getNumPages:function(){return this.S.length;},Kc:function(c,d,e,g){this.Ba.Kc(c,d,e,g);},Jc:function(c,d,e,g){this.Ba.Jc(c,d,e,g);},Se:function(c,d,e,g){this.Ba.Se(c,d,e,g);},Fa:function(c,d,e){this.Ba.Fa(c,e);},wh:function(c,d){if(this.mb){if(c.scale<c.yg()){c.dm=d,c.em=!1;}else{!d&&c.dm&&(d=c.dm);var e=0.25*Math.round(c.Ni()),g=0.25*Math.round(c.Mi());jQuery(".flowpaper_flipview_canvas_highres_"+c.pageNumber).remove();null==d&&(d=c.T);var h=eb.platform.Rd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";jQuery(d).append(String.format("<div id='"+c.aa+"_canvas_highres_l1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat:no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,3*g+0,e,g,h)+"");c.em=!0;}}},Xc:function(c){if(!(c.scale<c.yg())){!c.em&&this.mb&&this.wh(c);if(this.mb){var d=document.getElementById(c.aa+"_canvas_highres_l1t1"),e=document.getElementById(c.aa+"_canvas_highres_l2t1"),g=document.getElementById(c.aa+"_canvas_highres_l1t2"),h=document.getElementById(c.aa+"_canvas_highres_l2t2"),f=document.getElementById(c.aa+"_canvas_highres_r1t1"),k=document.getElementById(c.aa+"_canvas_highres_r2t1"),l=document.getElementById(c.aa+"_canvas_highres_r1t2"),n=document.getElementById(c.aa+"_canvas_highres_r2t2"),p=document.getElementById(c.aa+"_canvas_highres_l1b1"),r=document.getElementById(c.aa+"_canvas_highres_l2b1"),t=document.getElementById(c.aa+"_canvas_highres_l1b2"),q=document.getElementById(c.aa+"_canvas_highres_l2b2"),u=document.getElementById(c.aa+"_canvas_highres_r1b1"),v=document.getElementById(c.aa+"_canvas_highres_r2b1"),A=document.getElementById(c.aa+"_canvas_highres_r1b2"),w=document.getElementById(c.aa+"_canvas_highres_r2b2");if(1==c.pageNumber&&1==c.pages.R||c.pageNumber==c.pages.R-1||c.pageNumber==c.pages.R-2){var x=c.H==this.Ja(c)?c.pages.J:null,D=c.H==this.Ja(c)?c.pageNumber+1:c.pages.R+1;jQuery(d).visible(!0,x)&&"none"===jQuery(d).css("background-image")&&jQuery(d).css("background-image","url('"+this.Nb(D,"l1t1")+"')");jQuery(e).visible(!0,x)&&"none"===jQuery(e).css("background-image")&&jQuery(e).css("background-image","url('"+this.Nb(D,"l2t1")+"')");jQuery(g).visible(!0,x)&&"none"===jQuery(g).css("background-image")&&jQuery(g).css("background-image","url('"+this.Nb(D,"l1t2")+"')");jQuery(h).visible(!0,x)&&"none"===jQuery(h).css("background-image")&&jQuery(h).css("background-image","url('"+this.Nb(D,"l2t2")+"')");jQuery(f).visible(!0,x)&&"none"===jQuery(f).css("background-image")&&jQuery(f).css("background-image","url('"+this.Nb(D,"r1t1")+"')");jQuery(k).visible(!0,x)&&"none"===jQuery(k).css("background-image")&&jQuery(k).css("background-image","url('"+this.Nb(D,"r2t1")+"')");jQuery(l).visible(!0,x)&&"none"===jQuery(l).css("background-image")&&jQuery(l).css("background-image","url('"+this.Nb(D,"r1t2")+"')");jQuery(n).visible(!0,x)&&"none"===jQuery(n).css("background-image")&&jQuery(n).css("background-image","url('"+this.Nb(D,"r2t2")+"')");jQuery(p).visible(!0,x)&&"none"===jQuery(p).css("background-image")&&jQuery(p).css("background-image","url('"+this.Nb(D,"l1b1")+"')");jQuery(r).visible(!0,x)&&"none"===jQuery(r).css("background-image")&&jQuery(r).css("background-image","url('"+this.Nb(D,"l2b1")+"')");jQuery(t).visible(!0,x)&&"none"===jQuery(t).css("background-image")&&jQuery(t).css("background-image","url('"+this.Nb(D,"l1b2")+"')");jQuery(q).visible(!0,x)&&"none"===jQuery(q).css("background-image")&&jQuery(q).css("background-image","url('"+this.Nb(D,"l2b2")+"')");jQuery(u).visible(!0,x)&&"none"===jQuery(u).css("background-image")&&jQuery(u).css("background-image","url('"+this.Nb(D,"r1b1")+"')");jQuery(v).visible(!0,x)&&"none"===jQuery(v).css("background-image")&&jQuery(v).css("background-image","url('"+this.Nb(D,"r2b1")+"')");jQuery(A).visible(!0,x)&&"none"===jQuery(A).css("background-image")&&jQuery(A).css("background-image","url('"+this.Nb(D,"r1b2")+"')");jQuery(w).visible(!0,x)&&"none"===jQuery(w).css("background-image")&&jQuery(w).css("background-image","url('"+this.Nb(D,"r2b2")+"')");}}c.Hl=!0;}},Mc:function(c){if(this.mb){var d=eb.platform.Rd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";c.Hl&&0<jQuery("."+d).length&&(jQuery("."+d).css("background-image",""),c.Hl=!1);}}};return f;}(),CanvasPageRenderer=window.CanvasPageRenderer=function(){function f(c,d,e,g){this.P=c;this.file=d;this.jsDirectory=e;this.initialized=!1;this.JSONPageDataFormat=this.Ia=this.dimensions=null;this.pageThumbImagePattern=g.pageThumbImagePattern;this.pageImagePattern=g.pageImagePattern;this.config=g;this.gh=this.P+"_dummyPageCanvas_[pageNumber]";this.zi="#"+this.gh;this.hh=this.P+"dummyPageCanvas2_[pageNumber]";this.Ai="#"+this.hh;this.tb=[];this.context=this.fa=null;this.Sa=[];this.Mh=[];this.pb=this.Rf=!1;this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Dh=1;this.ta=[];this.Gg={};this.JSONPageDataFormat=null;this.pe=!0;this.Ma=null!=g.compressedJSONFormat?g.compressedJSONFormat:!0;this.pi=[];}f.prototype={rh:function(){return"CanvasPageRenderer";},Ja:function(c){return c.F?c.F.I?c.F.I.Z:"":!1;},xb:function(c){return c.F.I.xn;},dispose:function(){jQuery(this.Ba).unbind();this.Ba.dispose();delete this.wc;this.wc=null;delete this.dimensions;this.dimensions=null;delete this.Ba;this.Ba=null;delete this.Sa;this.Sa=null;delete this.Mh;this.Mh=null;},initialize:function(c,d){var e=this;e.wc=c;e.Xa=eb.platform.Xa;1<e.Xa&&eb.platform.touchonlydevice&&(e.Xa=1);e.config.MixedMode&&(eb.browser.Zf||eb.browser.msie)&&0==e.file.indexOf("http")&&(e.config.MixedMode=!1);e.$o=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.min.js";e.Ma?e.JSONPageDataFormat={vf:"width",tf:"height",Le:"text",ub:"d",Jg:"f",qc:"l",Fb:"t",Ed:"w",Dd:"h"}:e.JSONPageDataFormat={vf:e.config.JSONPageDataFormat.pageWidth,tf:e.config.JSONPageDataFormat.pageHeight,Le:e.config.JSONPageDataFormat.textCollection,ub:e.config.JSONPageDataFormat.textFragment,Jg:e.config.JSONPageDataFormat.textFont,qc:e.config.JSONPageDataFormat.textLeft,Fb:e.config.JSONPageDataFormat.textTop,Ed:e.config.JSONPageDataFormat.textWidth,Dd:e.config.JSONPageDataFormat.textHeight};e.ra=e.file.indexOf&&0<=e.file.indexOf("[*,")&&e.config&&null!=e.config.jsonfile&&!d.Pk;e.Ba=new ua(e.P,e.ra,e.JSONPageDataFormat,!0);e.ra&&(e.Pp=e.file.substr(e.file.indexOf("[*,"),e.file.indexOf("]")-e.file.indexOf("[*,")),e.Jk=e.Jk=!1);PDFJS.workerSrc=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.worker.min.js";jQuery.getScript(e.$o,function(){if(e.Jk){var g=new XMLHttpRequest;g.open("HEAD",e.vi(1),!1);g.overrideMimeType("application/pdf");g.onreadystatechange=function(){if(200==g.status){var c=g.getAllResponseHeaders(),d={};if(c){for(var c=c.split("\r\n"),h=0;h<c.length;h++){var f=c[h],m=f.indexOf(": ");0<m&&(d[f.substring(0,m)]=f.substring(m+2));}}e.ek="bytes"===d["Accept-Ranges"];e.Bn="identity"===d["Content-Encoding"]||null===d["Content-Encoding"]||!d["Content-Encoding"];e.ek&&e.Bn&&!eb.platform.ios&&!eb.browser.safari&&(e.file=e.file.substr(0,e.file.indexOf(e.Pp)-1)+".pdf",e.ra=!1);}g.abort();};try{g.send(null);}catch(f){}}window["wordPageList_"+e.P]=e.Ba.Sa;jQuery("#"+e.P).trigger("onDocumentLoading");FLOWPAPER.RANGE_CHUNK_SIZE&&(PDFJS.RANGE_CHUNK_SIZE=FLOWPAPER.RANGE_CHUNK_SIZE);PDFJS.disableWorker=e.ra||eb.browser.Zf||eb.browser.msie;PDFJS.disableRange=e.ra;PDFJS.disableAutoFetch=e.ra||!1;PDFJS.disableStream=e.ra||!1;PDFJS.pushTextGeometries=!e.ra;PDFJS.verbosity=PDFJS.VERBOSITY_LEVELS.errors;PDFJS.enableStats=!1;PDFJS.vr=!0;PDFJS.wr=!0;if(e.ra){e.ra&&e.config&&null!=e.config.jsonfile&&(e.ra=!0,e.Sd=e.config.jsonfile,e.ks=new Promise(function(){}),m=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10,e.bf({url:e.If(m),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.vc.lg)),e.Cf=!0);jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.1});if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Kh(d);}0<e.S.length&&(e.Ta=e.S[0].twofold,e.Ta&&(e.Xa=1));for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.Ba&&e.Ba.$c&&e.Ba.$c(e.S);}e.Ye=1;e.Ia=Array(c[0].pages);e.tb=Array(c[0].pages);e.bj(e.Ye,function(){jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});e.wc();},null,function(c){c=0.1+c;1<c&&(c=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:c});});},error:function(g,h,f){h=null!=g.responseText&&0==g.responseText.indexOf("Error:")?g.responseText.substr(6):"";this.url.indexOf("view.php")||this.url.indexOf("view.ashx")?(console.log("Warning: Could not load JSON file. Switching to single file mode."),d.Pk=!0,e.ra=!1,e.initialize(c,d),e.pageThumbImagePattern=null):O("Error loading JSON file ("+g.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",e.P,h);}}));}else{e.Sd=e.config.jsonfile;var h=new jQuery.Deferred,m=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;e.Sd&&0<e.Sd.length?e.bf({url:e.If(m),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.vc.lg)),e.Cf=!0);if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Kh(d);}for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.Ba&&e.Ba.$c&&e.Ba.$c(e.S);0<e.S.length&&(e.Ta=e.S[0].twofold,e.Ta&&(e.Xa=1));}h.resolve();}}):h.resolve();h.then(function(){var c={},g=e.file;d&&d.Pk&&g.match(/(page=\d)/ig)&&(g=g.replace(/(page=\d)/ig,""));!e.file.indexOf||e.file instanceof Uint8Array||e.file.indexOf&&0==e.file.indexOf("blob:")?c=g:c.url=g;e.Il()&&(c.password=e.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");var h=0;c.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;c=PDFJS.getDocument(c);c.onPassword=function(c,d){jQuery("#"+e.P).trigger("onPasswordNeeded",c,d);};c.onProgress=function(c){h=c.loaded/c.total;1<h&&(h=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:h});};c.then(function(c){0.5>h&&jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.5});e.pdf=e.Ia=c;e.Ia.getPageLabels().then(function(c){jQuery(e).trigger("labelsLoaded",{ll:c});});e.initialized=!0;e.dimensions=null;e.tb=Array(e.Ta?e.S.length:e.Ia.numPages);e.dimensions=[];(e.Fn=e.Ia.getDestinations()).then(function(c){e.destinations=c;});(e.Wo=e.Ia.getOutline()).then(function(c){e.outline=c||[];});var g=d&&d.StartAtPage?parseInt(d.StartAtPage):1;e.Ia.getPage(g).then(function(c){c=c.getViewport(1);var d=e.Ia.numPages;!e.ra&&e.Ta&&(d=e.S.length);for(i=1;i<=d;i++){e.dimensions[i-1]=[],e.dimensions[i-1].page=i-1,e.dimensions[i-1].width=c.width,e.dimensions[i-1].height=c.height,e.dimensions[i-1].ma=c.width,e.dimensions[i-1].ya=c.height;}e.wi=!0;jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});1==g&&1<d&&window.zine?e.Ia.getPage(2).then(function(c){c=c.getViewport(1);e.Ta=2*Math.round(e.dimensions[0].width)>=Math.round(c.width)-1&&2*Math.round(e.dimensions[0].width)<=Math.round(c.width)+1;if(e.Ta){e.S=Array(2*(d-1));for(var g=0;g<e.S.length;g++){e.S[g]={},e.S[g].text=[],e.S[g].pages=d,e.S[g].Ta=!0,e.S[g].width=0==g?e.dimensions[0].width:c.width,e.S[g].height=0==g?e.dimensions[0].height:c.height,e.Kh(g);}}e.wc();}):e.wc();});(null==e.config.jsonfile||null!=e.config.jsonfile&&0==e.config.jsonfile.length||!e.ra)&&e.fm(e.Ia);},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",e.P,"Cannot load PDF file ("+c+")");jQuery(e).trigger("loadingProgress",{P:e.P,progress:"Error"});},function(){},function(c){jQuery(e).trigger("loadingProgress",{P:e.P,progress:c.loaded/c.total});});});}}).fail(function(){});e.JSONPageDataFormat={vf:"width",tf:"height",Le:"text",ub:"d",Jg:"f",qc:"l",Fb:"t",Ed:"w",Dd:"h"};},bj:function(c,d,e){var g=this,h={},f=c;g.config.RTLMode&&(f=g.S.length-f+1);h.url=g.vi(f);g.Il()&&(h.password=g.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");h.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;g.Ps=PDFJS.getDocument(h).then(function(h){g.Ia[c-1]=h;g.initialized=!0;g.dimensions||(g.dimensions=[]);g.Ia[c-1].getDestinations().then(function(c){g.destinations=c;});g.Ia[c-1].getPage(1).then(function(h){g.tb[c-1]=h;var f=h.getViewport(g.Ta?1:1.5),m=g.dimensions&&g.dimensions[c-1]?g.dimensions[c-1]:[],k=Math.floor(f.width),f=Math.floor(f.height),t=m&&m.width&&!(k>m.width-1&&k<m.width+1),q=m&&m.height&&!(f>m.height-1&&f<m.height+1);g.dimensions[c-1]=[];g.dimensions[c-1].loaded=!0;g.dimensions[c-1].page=c-1;g.dimensions[c-1].width=k;1<c&&g.Ta&&(c<g.Ia[c-1].numPages||0!=g.Ia[c-1].numPages%2)?(g.dimensions[c-1].width=g.dimensions[c-1].width/2,g.dimensions[c-1].ma=k/2):g.dimensions[c-1].ma=k;m.width&&!ka(g.dimensions[c-1].width,m.width-1,m.width+1)&&e&&!g.Ta&&(e.dimensions.ma=k,e.dimensions.ya=f,e.Qa());if(t||!g.dimensions[c-1].ma){g.dimensions[c-1].ma=k;}if(q||!g.dimensions[c-1].ya){g.dimensions[c-1].ya=f;}g.dimensions[c-1].height=f;1<c&&g.Ta&&(c<g.Ia[c-1].numPages||0!=g.Ia[c-1].numPages%2)&&(g.dimensions[c-1].ma=g.dimensions[c-1].ma/2);null!=g.Ca[c-1]&&g.Ca.length>c&&(g.dimensions[c-1].cd=g.Ca[c].cd,g.dimensions[c-1].bd=g.Ca[c].bd,g.dimensions[c-1].nb=g.Ca[c].nb,g.dimensions[c-1].nd=g.Ca[c].nd);g.Gg[c-1+" "+h.ref.gen+" R"]=c-1;g.wi=!0;g.Ye=-1;d&&d();});g.Ye=-1;},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",g.P);jQuery(g).trigger("loadingProgress",{P:g.P,progress:"Error"});g.Ye=-1;});},bf:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ta(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.yb||(d.yb={});d.yb[c.url]=c;d.mf||(d.mf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.mf.addEventListener("message",function(c){d.yb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.yb[c.data.url]&&(d.yb[c.data.url].success(e),d.yb[c.data.url]=null);}):d.yb[c.data.url]&&(d.yb[c.data.url].success(JSON.parse(c.data.JSON)),d.yb[c.data.url]=null));},!1));d.mf.postMessage(c.url);}}else{return jQuery.ajax(c);}},If:function(c){return this.Sd.replace("{page}",c);},jh:function(c){var d=1;if(1<c){for(var e=0;e<c;e++){(0!=e%2||0==e%2&&0==c%2&&e==c-1)&&d++;}return d;}return 1;},Il:function(){return null!=this.config.signature&&0<this.config.signature.length;},vi:function(c){this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.Ta&&1<c&&(c=this.jh(c));if(0<=this.file.indexOf("{page}")){return this.file.replace("{page}",c);}if(0<=this.file.indexOf("[*,")){var d=this.file.substr(this.file.indexOf("[*,"),this.file.indexOf("]")-this.file.indexOf("[*,")+1);return this.file.replace(d,la(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}},Nf:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},yc:function(c,d,e,g,h){var f=this;f.ud==f.Nf(c)?(window.clearTimeout(h.Go),h.Go=setTimeout(function(){h.dimensions.loaded||f.yc(c,d,e,g,h);},100)):(f.ud=f.Nf(c),f.bf({url:f.If(f.ud),dataType:f.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Re.decrypt(c.e,CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.vc.lg)),f.Cf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var g=parseInt(c[d].number)-1;f.S[g]=c[d];f.S[g].loaded=!0;f.Ko(g);f.Kh(g,h);}f.Ba.$c&&f.Ba.$c(f.S);jQuery(f).trigger("onTextDataUpdated");null!=e&&e();}f.ud=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",f.P);f.ud=null;}}));},Kh:function(c){this.Ca||(this.Ca=[]);this.Ca[c]||(this.Ca[c]=[]);this.Ca[c].cd=this.S[c][this.JSONPageDataFormat.vf];this.Ca[c].bd=this.S[c][this.JSONPageDataFormat.tf];this.Ca[c].nb=this.Ca[c].cd;this.Ca[c].nd=this.Ca[c].bd;c=this.Ca[c];for(var d=0;d<this.getNumPages();d++){null==this.Ca[d]&&(this.Ca[d]=[],this.Ca[d].cd=c.cd,this.Ca[d].bd=c.bd,this.Ca[d].nb=c.nb,this.Ca[d].nd=c.nd);}},getDimensions:function(){var c=this;if(null==c.dimensions||c.wi||null!=c.dimensions&&0==c.dimensions.length){null==c.dimensions&&(c.dimensions=[]);var d=c.Ia.numPages;!c.ra&&c.Ta&&(d=c.S.length);if(c.ra){for(var e=0;e<c.getNumPages();e++){null!=c.dimensions[e]||null!=c.dimensions[e]&&!c.dimensions[e].loaded?(null==c.uc&&(c.uc=c.dimensions[e]),c.dimensions[e].nb||null==c.Ca[e]||(c.dimensions[e].nb=c.Ca[e].nb,c.dimensions[e].nd=c.Ca[e].nd)):null!=c.uc&&(c.dimensions[e]=[],c.dimensions[e].page=e,c.dimensions[e].loaded=!1,c.dimensions[e].width=c.uc.width,c.dimensions[e].height=c.uc.height,c.dimensions[e].ma=c.uc.ma,c.dimensions[e].ya=c.uc.ya,null!=c.Ca[e]&&(c.dimensions[e].width=c.Ca[e].cd,c.dimensions[e].height=c.Ca[e].bd,c.dimensions[e].ma=c.Ca[e].nb,c.dimensions[e].ya=c.Ca[e].nd),null!=c.Ca[e-1]&&(c.dimensions[e-1].cd=c.Ca[e].cd,c.dimensions[e-1].bd=c.Ca[e].bd,c.dimensions[e-1].nb=c.Ca[e].nb,c.dimensions[e-1].nd=c.Ca[e].nd),e==c.getNumPages()-1&&(c.dimensions[e].cd=c.Ca[e].cd,c.dimensions[e].bd=c.Ca[e].bd,c.dimensions[e].nb=c.Ca[e].nb,c.dimensions[e].nd=c.Ca[e].nd),c.Gg[e+" 0 R"]=e);}}else{c.Rk=[];for(e=1;e<=d;e++){var g=e;c.Ta&&(g=c.jh(e));c.Rk.push(c.Ia.getPage(g).then(function(d){var e=d.getViewport(1);c.dimensions[d.pageIndex]=[];c.dimensions[d.pageIndex].page=d.pageIndex;c.dimensions[d.pageIndex].width=e.width;c.dimensions[d.pageIndex].height=e.height;c.dimensions[d.pageIndex].ma=e.width;c.dimensions[d.pageIndex].ya=e.height;e=d.ref;c.Gg[e.num+" "+e.gen+" R"]=d.pageIndex;}));}if(Promise.all){if(c.Ta){for(e=1;e<=d;e++){c.dimensions[e]||(c.dimensions[e]=[],c.dimensions[e].page=e+1,c.dimensions[e].width=c.dimensions[0].width,c.dimensions[e].height=c.dimensions[0].height,c.dimensions[e].ma=c.dimensions[0].ma,c.dimensions[e].ya=c.dimensions[0].ya);}}Promise.all(c.Rk.concat(c.Fn).concat(c.Wo)).then(function(){jQuery(c).trigger("outlineAdded",{P:c.P});});}}c.wi=!1;}return c.dimensions;},Ko:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.ta[c]=[];this.ta[c]="";for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.Le][e++];){this.Ma?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<=Number(g[2].toString())&&!isNaN(g[3].toString())&&0<=Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.ta[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.ta[c].endsWith(" ")&&(this.ta[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.ta[c]+=d),this.config.RTLMode&&(this.ta[c]+=R(d))):!isNaN(g[this.JSONPageDataFormat.qc].toString())&&0<=Number(g[this.JSONPageDataFormat.qc].toString())&&!isNaN(g[this.JSONPageDataFormat.Fb].toString())&&0<=Number(g[this.JSONPageDataFormat.Fb].toString())&&!isNaN(g[this.JSONPageDataFormat.Ed].toString())&&0<Number(g[this.JSONPageDataFormat.Ed].toString())&&!isNaN(g[this.JSONPageDataFormat.Dd].toString())&&0<Number(g[this.JSONPageDataFormat.Dd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Fb])!=Math.round(g[this.JSONPageDataFormat.Fb])&&Math.round(d[this.JSONPageDataFormat.qc])==Math.round(prev[this.JSONPageDataFormat.qc])&&(this.ta[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Fb])!=Math.round(g[this.JSONPageDataFormat.Fb])&&!this.ta[c].endsWith(" ")&&(this.ta[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.ub]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.ta[c]+=d),this.config.RTLMode&&(this.ta[c]+=R(d))),d=g;}this.ta[c]=this.ta[c].toLowerCase();}},getNumPages:function(){return this.ra?this.S.length:this.Ta?this.S.length:this.Ia?this.Ia.numPages:this.S.length;},getPage:function(c){this.Ia.getPage(c).then(function(c){return c;});return null;},Zc:function(c){var d=this;"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url('"+d.ga(c.pages.R+1)+"')"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url('"+d.ga(c.pages.R+2)+"')")):"ThumbView"==c.H?jQuery(c.fa).css("background-image","url('"+d.ga(c.pageNumber+1,200)+"')"):"SinglePage"==c.H?jQuery(c.fa).css("background-image","url('"+d.ga(d.Ea(c)+1)+"')"):jQuery(c.fa).css("background-image","url('"+d.ga(c.pageNumber+1)+"')");c.W=new Image;jQuery(c.W).bind("load",function(){var e=Math.round(c.W.width/c.W.height*100),g=Math.round(c.dimensions.width/c.dimensions.height*100);if("SinglePage"==c.H){var e=d.Ca[c.pages.R],h=Math.round(e.cd/e.bd*100),g=Math.round(c.dimensions.ma/c.dimensions.ya*100);h!=g&&(c.dimensions.ma=e.cd,c.dimensions.ya=e.bd,c.Qa(),c.Lj=-1,d.Fa(c,!0,null));}else{e!=g&&(c.dimensions.ma=c.W.width,c.dimensions.ya=c.W.height,c.Qa(),c.Lj=-1,d.Fa(c,!0,null));}});jQuery(c.W).attr("src",d.ga(c.pageNumber+1));},Jl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")")):jQuery(c.fa).css("background-image","url("+this.ea+")");},Qd:function(c){this.wb=c.wb=this.ra&&this.config.MixedMode;"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.T).append("<canvas id='"+this.Da(1,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:none;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas><canvas id='"+this.Da(2,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas>");c.H==this.Ja(c)&&this.xb(c).Qd(this,c);"ThumbView"==c.H&&jQuery(c.T).append("<canvas id='"+this.Da(1,c)+"' style='"+c.getDimensions()+";background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden' ></canvas>");if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.T+"_1").append("<img id='"+c.ec+"_1' src='"+c.F.ke+"' style='position:absolute;left:"+(c.za()-30)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.T+"_1").append("<canvas id='"+this.Da(1,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.T+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>")),1==c.pageNumber&&(jQuery(c.T+"_2").append("<img id='"+c.ec+"_2' src='"+c.F.ke+"' style='position:absolute;left:"+(c.za()/2-10)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.T+"_2").append("<canvas id='"+this.Da(2,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.T+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>"));}},Da:function(c,d){var e=d.pageNumber;if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return this.P+"_dummyCanvas2";}if(1==c){return this.gh.replace("[pageNumber]",e);}if(2==c){return this.hh.replace("[pageNumber]",e);}},co:function(c,d){if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return"#"+this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return"#"+this.P+"_dummyCanvas2";}if(1==c){return this.zi.replace("[pageNumber]",d.pageNumber);}if(2==c){return this.Ai.replace("[pageNumber]",d.pageNumber);}},Vb:function(c,d,e){var g=this;g.Ci=!0;if(c.H!=g.Ja(c)||g.xb(c).Hp(g,c,d,e)){if("Portrait"!=c.H&&"TwoPage"!=c.H&&"BookView"!=c.H||null!=c.context||c.zc||(c.ad(),c.zc=!0),1==g.mp&&1<c.scale&&c.wb&&g.Ga(c,-1),-1<g.Ea(c)||g.ra&&null!=g.cg){window.clearTimeout(c.pc),c.pc=setTimeout(function(){setTimeout(function(){g.Vb(c,d,e);});},50);}else{g.nl=c;g.mp=c.scale;if("TwoPage"==c.H||"BookView"==c.H){if(0==c.pageNumber){"BookView"==c.H?g.Ga(c,0==c.pages.R?c.pages.R:c.pages.R-1):"TwoPage"==c.H&&g.Ga(c,c.pages.R),g.Dk=c,c.Qb();}else{if(1==c.pageNumber){"BookView"==c.H?g.Ga(c,c.pages.R):"TwoPage"==c.H&&g.Ga(c,c.pages.R+1),g.Dk=c,jQuery(c.T+"_2").removeClass("flowpaper_hidden"),jQuery(c.T+"_2").removeClass("flowpaper_load_on_demand"),c.Qb();}else{return;}}}else{"SinglePage"==c.H?g.Ga(c,c.pages.R):(g.Ga(c,c.pageNumber),g.Dk=c);}g.Dj(c);if((c.wb||g.ra)&&!c.dimensions.loaded){var h=c.pageNumber+1;"SinglePage"==c.H&&(h=g.Ea(c)+1);g.yc(h,!0,function(){c.dimensions.loaded=!1;g.Kc(c);},!0,c);}var h=!1,f=c.Fg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ja(c)&&g.xb(c).oq(g,c)){var h=!0,k=c.dc(),l=c.za(),n=c.Ha();0==jQuery("#"+f).length?(f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+l+"px;height:"+n+"px;backface-visibility:hidden;margin-left:"+k+"px;'></div>","Portrait"==c.H||g.Ja(c)||"SinglePage"==c.H?jQuery(c.xa).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.xa+"_"+(c.pageNumber%2+1)).append(f)):jQuery("#"+f).css({width:l,height:n,"margin-left":k});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.Bb).css({"z-index":11,"margin-left":k}),jQuery(c.Bb).transition({rotate:c.rotation,translate:"-"+k+"px, 0px"},0);}}if(c.wb&&c.scale<=g.Ch(c)&&!c.xi){-1<g.Ea(c)&&window.clearTimeout(c.pc),jQuery(c.T).removeClass("flowpaper_load_on_demand"),g.ra&&c.F.initialized&&!c.wn?g.pi.push(function(){var d=new XMLHttpRequest;d.open("GET",g.vi(c.pageNumber+1),!0);d.overrideMimeType("text/plain; charset=x-user-defined");d.addEventListener("load",function(){g.Kd();});d.addEventListener("error",function(){g.Kd();});d.send(null);c.wn=!0;}):g.ek&&null==g.tb[g.Ea(c)]&&(k=g.Ea(c)+1,g.Ia&&g.Ia.getPage&&g.Ia.getPage(k).then(function(d){g.tb[g.Ea(c)]=d;})),c.H==g.Ja(c)?g.xb(c).Vb(g,c,d,e):(g.Zc(c),g.df(c,e)),c.oa=!0;}else{if(c.wb&&c.scale>g.Ch(c)&&!c.xi){c.H!=g.Ja(c)&&g.Zc(c);}else{if(!c.wb&&c.Uc&&c.H==g.Ja(c)&&1==c.scale&&!g.eh){if(!c.od&&100!=c.fa.width){c.od=c.fa.toDataURL(),k=jQuery("#"+g.Da(1,c)),k.css("background-image").length<c.od.length+5&&k.css("background-image","url("+c.od+")"),k[0].width=100;}else{if(c.od&&!g.ra&&"none"!=jQuery("#"+g.Da(1,c)).css("background-image")){g.Ga(c,-1);c.oa=!0;return;}}g.Dl(c);}}null!=g.tb[g.Ea(c)]||g.ra||(k=g.Ea(c)+1,g.Ta&&(k=g.jh(k)),g.Ia&&g.Ia.getPage&&g.Ia.getPage(k).then(function(h){g.tb[g.Ea(c)]=h;window.clearTimeout(c.pc);g.Ga(c,-1);g.Vb(c,d,e);}));if(c.fa){if(100==c.fa.width||1!=c.scale||c.H!=g.Ja(c)||c.Ml){if(k=!0,null==g.tb[g.Ea(c)]&&g.ra&&(c.H==g.Ja(c)&&(k=g.xb(c).Gp(g,c)),null==g.Ia[g.Ea(c)]&&-1==g.Ye&&k&&null==g.cg&&(g.Ye=g.Ea(c)+1,g.bj(g.Ye,function(){window.clearTimeout(c.pc);g.Ga(c,-1);g.Vb(c,d,e);},c))),null!=g.tb[g.Ea(c)]||!k){if(c.H==g.Ja(c)?g.xb(c).Vb(g,c,d,e):(c.fa.width=c.za(),c.fa.height=c.Ha()),g.Ta&&0<c.Jb.indexOf("cropCanvas")&&(c.fa.width=2*c.fa.width),null!=g.tb[g.Ea(c)]||!k){if(g.Ci){k=c.fa.height/g.getDimensions()[c.pageNumber].height;c.H!=g.Ja(c)&&(k*=g.Xa,g.ra&&(k*=1.5));g.jq=k;1.5>k&&(k=1.5);g.ls=k;var p=g.tb[g.Ea(c)].getViewport(k);g.Ta||(c.fa.width=p.width,c.fa.height=p.height);var r=c.lp={canvasContext:c.context,viewport:p,pageNumber:c.pageNumber,Nh:h&&!g.ra?new va:null};g.tb[g.Ea(c)].objs.geometryTextList=[];window.requestAnim(function(){c.fa.style.display="none";c.fa.redraw=c.fa.offsetHeight;c.fa.style.display="";g.cg=g.tb[g.Ea(c)].render(r);g.cg.onContinue=function(c){c();};g.cg.promise.then(function(){g.cg=null;if(null!=g.tb[g.Ea(c)]){if(g.ra||c.wb&&c.scale<=g.Ch(c)||!c.fa){g.ra||g.Zl(g.tb[g.Ea(c)],c,p,g.ra),g.df(c,e);}else{var d=c.fa.height/g.getDimensions()[c.pageNumber].height,h=g.tb[g.Ea(c)].objs.geometryTextList;if(h){for(var f=0;f<h.length;f++){h[f].xp!=d&&(h[f].h=h[f].metrics.height/d,h[f].l=h[f].metrics.left/d,h[f].t=h[f].metrics.top/d,h[f].w=h[f].textMetrics.geometryWidth/d,h[f].d=h[f].unicode,h[f].f=h[f].fontFamily,h[f].xp=d);}"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H?g.Ba.Tl(h,g.Ea(c),g.getNumPages()):g.Ba.Tl(h,c.pageNumber,g.getNumPages());}g.Zl(g.tb[g.Ea(c)],c,p,g.ra);g.df(c,e);g.Fa(c,!0,e);}}else{g.df(c,e),N(c.pageNumber+"  is missing its pdf page ("+g.Ea(c)+")");}},function(c){O(c.toString(),"onDocumentLoadedError",g.P);g.cg=null;});},50);}else{g.Ga(c,-1);}jQuery(c.T).removeClass("flowpaper_load_on_demand");}}}else{jQuery("#"+g.Da(1,c)).Ec(),jQuery("#"+g.Da(2,c)).Kb(),1==c.scale&&eb.browser.safari?(jQuery("#"+g.Da(1,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+g.Da(2,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+g.Da(1,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+g.Da(2,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","visible")),g.Ga(c,-1),c.oa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1),c.oa=!0,g.Fa(c,!0,e);}}else{window.clearTimeout(c.pc);}}}}},Dl:function(c){var d=null,e=null;0!=c.pageNumber%2?(d=c,e=c.F.pages.pages[c.pageNumber-1]):(e=c,d=c.F.pages.pages[c.pageNumber+1]);if(c.H==this.Ja(c)&&!c.wb&&c.Uc&&d&&e&&(!d.kc||!e.kc)&&!this.eh){var g=e.od,d=d.od;g&&d&&!c.kc&&e.Uc(g,d);}},Ch:function(){return 1.1;},Ea:function(c){return this.ra||PDFJS.disableWorker||null==c?this.Ze:c.Ze;},Ga:function(c,d){(!this.ra||c&&c.wb&&1==c.scale)&&c&&(c.Ze=d);this.Ze=d;},Dj:function(c){"Portrait"==c.H||"SinglePage"==c.H?jQuery(this.co(1,c)).is(":visible")?(c.Jb=this.Da(2,c),c.Uf=this.Da(1,c)):(c.Jb=this.Da(1,c),c.Uf=this.Da(2,c)):c.H==this.Ja(c)?this.xb(c).Dj(this,c):(c.Jb=this.Da(1,c),c.Uf=null);this.Ta&&0<c.pageNumber&&0==c.pageNumber%2?(c.fa=document.createElement("canvas"),c.fa.width=c.fa.height=100,c.fa.id=c.Jb+"_cropCanvas",c.Jb=c.Jb+"_cropCanvas"):c.fa=document.getElementById(c.Jb);null!=c.so&&(c.so=document.getElementById(c.Uf));c.fa&&c.fa.getContext&&(c.context=c.fa.getContext("2d"),c.context.jg=c.context.mozImageSmoothingEnabled=c.context.imageSmoothingEnabled=!1);},Cn:function(c,d,e,g){c=g.convertToViewportRectangle(d.rect);c=PDFJS.Util.normalizeRect(c);d=e.dc();g=document.createElement("a");var h=e.H==this.Ja(e)?1:this.Xa;g.style.position="absolute";g.style.left=Math.floor(c[0])/h+d+"px";g.style.top=Math.floor(c[1])/h+"px";g.style.width=Math.ceil(c[2]-c[0])/h+"px";g.style.height=Math.ceil(c[3]-c[1])/h+"px";g.style["z-index"]=20;g.style.cursor="pointer";g.className="pdfPageLink_"+e.pageNumber+" flowpaper_interactiveobject_"+this.P;return g;},Zl:function(c,d,e,g){var h=this;if(1==d.scale||d.H!=h.Ja(d)){jQuery(".pdfPageLink_"+d.pageNumber).remove(),c.getAnnotations().then(function(e){for(var f=0;f<e.length;f++){var l=e[f];switch(l.subtype){case"Link":var n=h.Cn("a",l,d,c.getViewport(h.jq),c.view);n.style.position="absolute";n.href=l.url||"";eb.platform.touchonlydevice||(jQuery(n).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",d.F.linkColor);jQuery(this).css({opacity:d.F.Tc});}),jQuery(n).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));l.url||g?null!=n.href&&""!=n.href&&l.url&&(jQuery(n).on("click touchstart",function(){jQuery(d.L).trigger("onExternalLinkClicked",this.href);}),jQuery(d.xa).append(n)):(l="string"===typeof l.dest?h.destinations[l.dest][0]:null!=l&&null!=l.dest?l.dest[0]:null,l=l instanceof Object?h.Gg[l.num+" "+l.gen+" R"]:l+1,jQuery(n).data("gotoPage",l+1),jQuery(n).on("click touchstart",function(){d.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}),jQuery(d.xa).append(n));}}});}},df:function(c,d){this.Fa(c,!0,d);jQuery("#"+c.Jb).Ec();this.cl(c);"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.Ub).remove();c.H==this.Ja(c)&&this.xb(c).df(this,c,d);if(c.Jb&&0<c.Jb.indexOf("cropCanvas")){var e=c.fa;c.Jb=c.Jb.substr(0,c.Jb.length-11);c.fa=jQuery("#"+c.Jb).get(0);c.fa.width=e.width/2;c.fa.height=e.height;c.fa.getContext("2d").drawImage(e,e.width/2,0,c.fa.width,c.fa.height,0,0,e.width/2,e.height);jQuery(c.fa).Ec();}c.wb||!c.Uc||c.kc||!c.fa||this.eh||(c.od=c.fa.toDataURL(),this.Dl(c));if(c.od&&1==c.scale&&!this.eh){var g=jQuery("#"+this.Da(1,c));requestAnim(function(){g.css("background-image").length<c.od.length+5&&g.css("background-image","url("+c.od+")");g[0].width=100;});}if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.pa).removeClass("flowpaper_hidden"),jQuery(c.T+"_1").removeClass("flowpaper_hidden")),1==c.pageNumber&&jQuery(c.pa).removeClass("flowpaper_hidden");}c.oa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.oa=!0;c.Ml=!1;c.Zr=!1;this.Rf||(this.Rf=!0,c.F.Fh());null!=d&&d();this.Kd();},Kd:function(){0<this.pi.length&&-1==this.Ea()&&this.nl.oa&&!this.nl.zb&&this.pi.shift()();},cl:function(c){"TwoPage"==c.H||"BookView"==c.H||c.H==this.Ja(c)&&!eb.browser.safari||jQuery("#"+c.Uf).Kb();this.Ga(c,-1);},ga:function(c,d){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.Cf&&(c=CryptoJS.Re.encrypt(c.toString(),CryptoJS.vc.Qe.parse(eb.Sg?P():eb.je.innerHTML)).toString());this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);if(!d){return this.pageSVGImagePattern?this.pageSVGImagePattern.replace("{page}",c):this.pageImagePattern.replace("{page}",c);}if(null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length){return this.pageThumbImagePattern.replace("{page}",c)+(0<this.pageThumbImagePattern.indexOf("?")?"&":"?")+"resolution="+d;}},vb:function(c){jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.H!=this.Ja(c)&&this.Jl(c);c.wb&&(jQuery(c.fa).css("background-image","url("+this.ea+")"),c.W=null);null!=c.context&&null!=c.fa&&100!=c.fa.width&&(this.context=this.fa=c.lp=null,c.pj&&c.pj(),jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove());this.ra&&(this.tb[c.pageNumber]&&this.tb[c.pageNumber].cleanup(),this.Ia[c.pageNumber]=null,this.tb[c.pageNumber]=null);c.Ng&&c.Ng();},fm:function(c){var d=this;d.Ia&&d.Ia.getPage(d.Dh).then(function(e){e.getTextContent().then(function(e){var h="";if(e){for(var f=0;f<e.items.length;f++){h+=e.items[f].str;}}d.ta[d.Dh-1]=h.toLowerCase();e=d.getNumPages();!d.ra&&d.Ta&&(e=d.Ia.numPages);d.Dh+1<e+1&&(d.Dh++,d.fm(c));});});},Kc:function(c,d,e,g){this.Ba.Kc(c,d,e,g);},Jc:function(c,d,e,g){this.Ba.Jc(c,d,e,g);},Se:function(c,d,e,g){this.Ba.Se(c,d,e,g);},Fa:function(c,d,e){var g=null!=this.S&&this.S[c.pageNumber]&&this.S[c.pageNumber].text&&0<this.S[c.pageNumber].text.length&&this.ra;if(c.oa||d||g){c.Lj!=c.scale&&(jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber).remove(),c.Lj=c.scale),d=null!=this.hg?this.hg:e,this.hg=null,this.Ba&&this.Ba.Fa&&this.Ba.Fa(c,d);}else{if(null!=e){if(null!=this.hg){var h=this.hg;this.hg=function(){h();e();};}else{this.hg=e;}}}}};return f;}();function va(){this.beginLayout=function(){this.textDivs=[];this.Mh=[];};this.endLayout=function(){};}var ua=window.TextOverlay=function(){function f(c,d,e,g){this.P=c;this.JSONPageDataFormat=e;this.S=[];this.Na=null;this.Sa=[];this.Ma=this.nq=d;this.pb=g;this.state={};this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";}f.prototype={dispose:function(){delete this.P;this.P=null;delete this.S;this.S=null;delete this.JSONPageDataFormat;this.JSONPageDataFormat=null;delete this.Na;this.Na=null;delete this.Sa;this.Sa=null;delete this.state;this.state=null;delete this.ea;this.ea=null;delete this.pb;this.pb=null;},wp:function(){this.state[this.Ma]||(this.state[this.Ma]=[],this.state[this.Ma].S=this.S,this.state[this.Ma].Na=this.Na,this.state[this.Ma].Sa=this.Sa,window["wordPageList_"+this.P]=null);this.S=[];this.Na=null;this.Sa=[];this.Ma=this.nq;},Ja:function(c){return c.F.I?c.F.I.Z:"";},xb:function(c){return c.F.I.fq;},nn:function(c){return c.F.document.AutoDetectLinks;},$c:function(c){this.S=c;null==this.Na&&(this.Na=Array(c.length));window["wordPageList_"+this.P]=this.Sa;},Tl:function(c,d,e){null==this.Na&&(this.Na=Array(e));this.S[d]=[];this.S[d].text=c;window["wordPageList_"+this.P]=this.Sa;},Kc:function(c,d,e,g){var h=c.pageNumber,f=!1,k=!1;if(!this.Na){if(c.wb&&(this.Ma=!0),this.state[this.Ma]){if(this.S=this.state[this.Ma].S,this.Na=this.state[this.Ma].Na,this.Sa=this.state[this.Ma].Sa,window["wordPageList_"+this.P]=this.Sa,!this.Na){return;}}else{return;}}if(window.annotations||!eb.touchdevice||g){if(window.annotations||c.F.rc||g||c.F.fl||(f=!0),k=null!=this.zd&&null!=this.zd[c.pageNumber],"ThumbView"!=c.H){if("BookView"==c.H&&(0==c.pageNumber&&(h=0!=c.pages.R?c.pages.R-1:c.pages.R),1==c.pageNumber&&(h=c.pages.R),0==c.pages.getTotalPages()%2&&h==c.pages.getTotalPages()&&(h=h-1),0==c.pages.R%2&&c.pages.R>c.pages.getTotalPages())){return;}"SinglePage"==c.H&&(h=c.pages.R);if("TwoPage"==c.H&&(0==c.pageNumber&&(h=c.pages.R),1==c.pageNumber&&(h=c.pages.R+1),1==c.pageNumber&&h>=c.pages.getTotalPages()&&0!=c.pages.getTotalPages()%2)){return;}d=c.Wa||!d;c.H==this.Ja(c)&&(isvisble=this.xb(c).Qc(this,c));g=jQuery(".flowpaper_pageword_"+this.P+"_page_"+h+":not(.flowpaper_annotation_"+this.P+")"+(g?":not(.pdfPageLink_"+h+")":"")).length;var l=null!=c.dimensions.nb?c.dimensions.nb:c.dimensions.ma,l=this.pb?c.za()/l:1;if(d&&0==g){var n=g="",p=0,r=h;c.F.config.document.RTLMode&&(r=c.pages.getTotalPages()-h-1);if(null==this.Na[r]||!this.pb){if(null==this.S[r]){return;}this.Na[r]=this.S[r][this.JSONPageDataFormat.Le];}if(null!=this.Na[r]){c.wb&&(this.Ma=!0);var t=new WordPage(this.P,h),h=c.dc(),q=[],u=c.Pc(),v=c.Mf(),A=!1,w=-1,x=-1,D=0,B=-1,K=-1,C=!1;this.Sa[r]=t;c.H==this.Ja(c)&&(l=this.xb(c).Zn(this,c,l));c.As=l;for(var E=0,F;F=this.Na[r][E++];){var z=E-1,y=this.Ma?F[5]:F[this.JSONPageDataFormat.ub],G=E,H=E+1,J=E<this.Na[r].length?this.Na[r][E]:null,M=E+1<this.Na[r].length?this.Na[r][E+1]:null,A=J?this.Ma?J[5]:J[this.JSONPageDataFormat.ub]:"",L=M?this.Ma?M[5]:M[this.JSONPageDataFormat.ub]:"";" "==A&&(G=E+1,H=E+2,A=(J=G<this.Na[r].length?this.Na[r][G]:null)?this.Ma?J[5]:J[this.JSONPageDataFormat.ub]:"",L=(M=H<this.Na[r].length?this.Na[r][H]:null)?this.Ma?M[5]:M[this.JSONPageDataFormat.ub]:"");J=M=null;if(null==y){N("word not found in node");e&&e();return;}0==y.length&&(y=" ");C=null;if(-1==y.indexOf("actionGoToR")&&-1==y.indexOf("actionGoTo")&&-1==y.indexOf("actionURI")&&this.nn(c)){if(C=y.match(/\b((?:(https?|ftp):(?:\/{1,3}|[0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig)){y="actionURI("+C[0]+"):"+C[0],this.Na[r][z][this.Ma?5:this.JSONPageDataFormat.ub]=y;}!C&&-1<y.indexOf("@")&&(C=y.trim().match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi),!C&&(C=(y.trim()+A.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(A="actionURI(mailto:"+C[0]+"):"+C[0],this.Na[r][G][this.Ma?5:this.JSONPageDataFormat.ub]=A),!C&&(C=(y.trim()+A.trim()+L.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(A="actionURI(mailto:"+C[0]+"):"+C[0],this.Na[r][G][this.Ma?5:this.JSONPageDataFormat.ub]=A,L="actionURI(mailto:"+C[0]+"):"+C[0],this.Na[r][H][this.Ma?5:this.JSONPageDataFormat.ub]=L),C&&(y=C[0],y.endsWith(".")&&(y=y.substr(0,y.length-1)),y="actionURI(mailto:"+y+"):"+y,this.Na[r][z][this.Ma?5:this.JSONPageDataFormat.ub]=y));}if(0<=y.indexOf("actionGoToR")){M=y.substring(y.indexOf("actionGoToR")+12,y.indexOf(",",y.indexOf("actionGoToR")+13)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionGoTo")){M=y.substring(y.indexOf("actionGoTo")+11,y.indexOf(",",y.indexOf("actionGoTo")+12)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionURI")||C){if(0<=y.indexOf("actionURI(")&&0<y.indexOf("):")?(J=y.substring(y.indexOf("actionURI(")+10,y.lastIndexOf("):")),y=y.substring(y.indexOf("):")+2)):(J=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10)),-1==J.indexOf("http")&&-1==J.indexOf("mailto")&&0!=J.indexOf("/")){J="http://"+J;}else{if(!C){for(z=E,G=this.Ma?F[5]:F[this.JSONPageDataFormat.ub],H=1;2>=H;H++){for(z=E;z<this.Na[r].length&&0<=this.Na[r][z].toString().indexOf("actionURI")&&-1==this.Na[r][z].toString().indexOf("actionURI(");){A=this.Na[r][z],C=this.Ma?A[5]:A[this.JSONPageDataFormat.ub],1==H?0<=C.indexOf("actionURI")&&11<C.length&&-1==C.indexOf("http://")&&-1==C.indexOf("https://")&&-1==C.indexOf("mailto")&&(G+=C.substring(C.indexOf("actionURI")+10)):this.Ma?A[5]=G:A[this.JSONPageDataFormat.ub],z++;}2==H&&-1==G.indexOf("actionURI(")&&(y=G,J=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10));}}}}}}if(M||J||!f||k){G=(this.Ma?F[0]:F[this.JSONPageDataFormat.Fb])*l+0;H=(this.Ma?F[1]:F[this.JSONPageDataFormat.qc])*l+0;z=(this.Ma?F[2]:F[this.JSONPageDataFormat.Ed])*l;F=(this.Ma?F[3]:F[this.JSONPageDataFormat.Dd])*l;t.Ep(p,y);A=-1!=w&&w!=G;C=E==this.Na[r].length;H+z>u&&(z=u-H);G+F>v&&(F=v-G);q[p]={};q[p].left=H;q[p].right=H+z;q[p].top=G;q[p].bottom=G+F;q[p].el="#"+this.P+"page_"+r+"_word_"+p;q[p].i=p;q[p].Al=M;q[p].Bm=J;g+="<span id='"+this.P+"page_"+r+"_word_"+p+"' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+r+" flowpaper_pageword_"+this.P+(null!=M||null!=J?" pdfPageLink_"+c.pageNumber:"")+"' style='left:"+H+"px;top:"+G+"px;width:"+z+"px;height:"+F+"px;margin-left:0px;"+(q[p].Al||q[p].Bm?"cursor:hand;":"")+";"+(eb.browser.msie?"background-image:url("+this.ea+");color:transparent;":"")+"'>"+(c.F.fl?y:"")+"</span>";if(null!=M||null!=J){L=document.createElement("a");L.style.position="absolute";L.style.left=Math.floor(H)+h+"px";L.style.top=Math.floor(G)+"px";L.style.width=Math.ceil(z)+"px";L.style.height=Math.ceil(F)+"px";L.style["margin-left"]=h;L.style.cursor="pointer";L.setAttribute("data-href",null!=J?J:"");L.setAttribute("rel","nofollow noopener");jQuery(L).css("z-index","99");L.className="pdfPageLink_"+c.pageNumber+" flowpaper_interactiveobject_"+this.P+" flowpaper_pageword_"+this.P+"_page_"+r+" gotoPage_"+M+" flowpaper_pageword_"+this.P;eb.platform.touchonlydevice&&(L.style.background=c.F.linkColor,L.style.opacity=c.F.Tc);null!=M&&(jQuery(L).data("gotoPage",M),jQuery(L).on("click touchstart",function(){c.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}));if(null!=J){jQuery(L).on("click touchstart",function(d){jQuery(c.L).trigger("onExternalLinkClicked",this.getAttribute("data-href"));d.stopImmediatePropagation();d.preventDefault();return !1;});}eb.platform.touchonlydevice||(jQuery(L).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",c.F.linkColor);jQuery(this).css({opacity:c.F.Tc});}),jQuery(L).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.T+"_1_textoverlay").append(L),1==c.pageNumber&&jQuery(c.T+"_2_textoverlay").append(L)):jQuery(c.xa).append(L);}eb.platform.touchdevice&&"Portrait"==c.H&&(A||C?(C&&(D+=z,n=n+"<div style='float:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>"),n="<div id='"+this.P+"page_"+r+"_word_"+p+"_wordspan' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+r+" flowpaper_pageword_"+this.P+"' style='color:transparent;left:"+B+"px;top:"+w+"px;width:"+D+"px;height:"+x+"px;margin-left:"+K+"px;font-size:"+x+"px"+(q[p].Al||q[p].Bm?"cursor:hand;":"")+"'>"+n+"</div>",jQuery(c.jj).append(n),w=G,x=F,D=z,B=H,K=h,n="<div style='background-colorfloat:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>"):(-1==B&&(B=H),-1==K&&(K=h),-1==w&&(w=G),-1==x&&(x=F),n=n+"<div style='float:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>",D+=z,x=F));}p++;}t.Bp(q);"Portrait"==c.H&&(0==jQuery(c.Bb).length&&(f=c.Fg,z=c.za(),F=c.Ha(),h=c.dc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),jQuery(c.Bb).append(g));"SinglePage"==c.H&&(0==jQuery(c.Bb).length&&(f=c.Fg,z=c.za(),F=c.Ha(),h=c.dc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),jQuery(c.Bb).append(g));c.H==this.Ja(c)&&(0==jQuery(c.Bb).length&&(f=c.yd+"_textLayer",z=c.za(),F=c.Ha(),h=c.dc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),this.xb(c).kn(this,c,g));if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&jQuery(c.T+"_1_textoverlay").append(g),1==c.pageNumber&&jQuery(c.T+"_2_textoverlay").append(g);}d&&jQuery(c).trigger("onAddedTextOverlay",c.pageNumber);if(k){for(k=0;k<this.zd[c.pageNumber].length;k++){this.an(c,this.zd[c.pageNumber][k].Sp,this.zd[c.pageNumber][k].gq);}}}}null!=e&&e();}}else{e&&e();}},Jc:function(c,d,e,g,h){var f=this;window.annotations||jQuery(c).unbind("onAddedTextOverlay");var k="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(k=k-2);"SinglePage"==c.H&&(k=c.pages.R);if((c.Wa||!e)&&c.F.Va-1==k){jQuery(".flowpaper_selected").removeClass("flowpaper_selected");jQuery(".flowpaper_selected_searchmatch").removeClass("flowpaper_selected_searchmatch");jQuery(".flowpaper_selected_default").removeClass("flowpaper_selected_default");jQuery(".flowpaper_tmpselection").remove();var l=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+"):not(.pdfPageLink_"+c.pageNumber+")").length;h&&(l=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+")").length);if(f.Sa[k]&&0!=l){h=f.Sa[k].Sh;for(var l="",n=0,p=0,r=-1,t=-1,q=d.split(" "),u=0,v=0,A=0;A<h.length;A++){var w=ma((h[A]+"").toLowerCase()),u=u+w.length;u>g&&u-d.length<=g+v&&(v+=d.length);w||jQuery.trim(w)!=d&&jQuery.trim(l+w)!=d||(w=jQuery.trim(w));if(0==d.indexOf(l+w)&&(l+w).length<=d.length&&" "!=l+w){if(l+=w,-1==r&&(r=n,t=n+1),d.length==w.length&&(r=n),l.length==d.length){if(p++,c.F.Ge==p){if("Portrait"==c.H||"SinglePage"==c.H){eb.browser.capabilities.Db?jQuery("#pagesContainer_"+f.P).scrollTo(jQuery(f.Sa[k].$a[r].el),0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(jQuery(f.Sa[k].$a[r].el),!1);}for(var x=r;x<n+1;x++){c.H==f.Ja(c)?(w=jQuery(f.Sa[k].$a[x].el).clone(),f.xb(c).qk(f,c,w,d,!0,x==r,x==n)):(jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected"),jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected_default"),jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected_searchmatch"));}}else{l="",r=-1;}}}else{if(0<=(l+w).indexOf(q[0])){-1==r&&(r=n,t=n+1);l+=w;if(1<q.length){for(w=0;w<q.length-1;w++){0<q[w].length&&h.length>n+1+w&&0<=(l+h[n+1+w]).toLowerCase().indexOf(q[w])?(l+=h[n+1+w].toLowerCase(),t=n+1+w+1):(l="",t=r=-1);}}-1==l.indexOf(d)&&(l="",t=r=-1);x=(l.match(new RegExp(d.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"g"))||[]).length;if(0<l.length){for(var D=0;D<x;D++){if(-1<l.indexOf(d)&&p++,c.F.Ge==p){for(var B=jQuery(f.Sa[k].$a[r].el),K=parseFloat(B.css("left").substring(0,B.css("left").length-2))-(c.H==f.Ja(c)?c.dc():0),w=B.clone(),C=0,E=0,F=0;r<t;r++){C+=parseFloat(jQuery(f.Sa[k].$a[r].el).css("width").substring(0,B.css("width").length-2));}E=1-(l.length-d.length)/l.length;t=-1;for(r=0;r<D+1;r++){t=l.indexOf(d,t+1),F=t/l.length;}w.addClass("flowpaper_tmpselection");w.attr("id",w.attr("id")+"tmp");w.addClass("flowpaper_selected");w.addClass("flowpaper_selected_searchmatch");w.addClass("flowpaper_selected_default");w.css("width",C*E+"px");w.css("left",K+C*F+"px");if("Portrait"==c.H||"SinglePage"==c.H){jQuery(c.Bb).append(w),eb.browser.capabilities.Db?jQuery("#pagesContainer_"+f.P).scrollTo(w,0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(w,!1);}c.H==f.Ja(c)&&f.xb(c).qk(f,c,w,d);"BookView"==c.H&&(0==k?jQuery("#dummyPage_0_"+f.P+"_1_textoverlay").append(w):jQuery("#dummyPage_"+(k-1)%2+"_"+f.P+"_"+((k-1)%2+1)+"_textoverlay").append(w));"TwoPage"==c.H&&jQuery("#dummyPage_"+k%2+"_"+f.P+"_"+(k%2+1)+"_textoverlay").append(w);t=r=-1;}else{D==x-1&&(l="",t=r=-1);}}}}else{0<l.length&&(l="",r=-1);}}n++;}}else{jQuery(c).bind("onAddedTextOverlay",function(){f.Jc(c,d,e,g,!0);}),f.Kc(c,e,null,!0);}}},Se:function(c,d,e){null==this.zd&&(this.zd=Array(this.Na.length));null==this.zd[c.pageNumber]&&(this.zd[c.pageNumber]=[]);var g={};g.Sp=d;g.gq=e;this.zd[c.pageNumber][this.zd[c.pageNumber].length]=g;},an:function(c,d,e){jQuery(c).unbind("onAddedTextOverlay");var g="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(g=g-2);"SinglePage"==c.H&&(g=c.pages.R);for(var h=this.Sa[g].Sh,f=-1,k=-1,l=0,n=0;n<h.length;n++){var p=h[n]+"";l>=d&&-1==f&&(f=n);if(l+p.length>=d+e&&-1==k&&(k=n,-1!=f)){break;}l+=p.length;}for(d=f;d<k+1;d++){c.H==this.Ja(c)?jQuery(this.Sa[g].$a[d].el).clone():(jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected"),jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected_yellow"),jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected_searchmatch"));}},Fa:function(c,d){this.Kc(c,null==d,d);}};return f;}();window.WordPage=function(f,c){this.P=f;this.pageNumber=c;this.Sh=[];this.$a=null;this.Ep=function(c,e){this.Sh[c]=e;};this.Bp=function(c){this.$a=c;};this.match=function(c,e){var g,h=null;g="#page_"+this.pageNumber+"_"+this.P;0==jQuery(g).length&&(g="#dummyPage_"+this.pageNumber+"_"+this.P);g=jQuery(g).offset();"SinglePage"==window.$FlowPaper(this.P).H&&(g="#dummyPage_0_"+this.P,g=jQuery(g).offset());if("TwoPage"==window.$FlowPaper(this.P).H||"BookView"==window.$FlowPaper(this.P).H){g=0==this.pageNumber||"TwoPage"==window.$FlowPaper(this.P).H?jQuery("#dummyPage_"+this.pageNumber%2+"_"+this.P+"_"+(this.pageNumber%2+1)+"_textoverlay").offset():jQuery("#dummyPage_"+(this.pageNumber-1)%2+"_"+this.P+"_"+((this.pageNumber-1)%2+1)+"_textoverlay").offset();}c.top=c.top-g.top;c.left=c.left-g.left;for(g=0;g<this.$a.length;g++){this.ro(c,this.$a[g],e)&&(null==h||null!=h&&h.top<this.$a[g].top||null!=h&&h.top<=this.$a[g].top&&null!=h&&h.left<this.$a[g].left)&&(h=this.$a[g],h.pageNumber=this.pageNumber);}return h;};this.ul=function(c){for(var e=0;e<this.$a.length;e++){if(this.$a[e]&&this.$a[e].el=="#"+c){return this.$a[e];}}return null;};this.ro=function(c,e,g){return e?g?c.left+3>=e.left&&c.left-3<=e.right&&c.top+3>=e.top&&c.top-3<=e.bottom:c.left+3>=e.left&&c.top+3>=e.top:!1;};this.Jf=function(c,e){var g=window.a,h=window.b,f=new wa,k,l,n=0,p=-1;if(null==g){return f;}if(g&&h){var r=[],t;g.top>h.top?(k=h,l=g):(k=g,l=h);for(k=k.i;k<=l.i;k++){if(this.$a[k]){var q=jQuery(this.$a[k].el);0!=q.length&&(t=parseInt(q.attr("id").substring(q.attr("id").indexOf("word_")+5)),p=parseInt(q.attr("id").substring(q.attr("id").indexOf("page_")+5,q.attr("id").indexOf("word_")-1))+1,0<=t&&r.push(this.Sh[t]),n++,c&&(q.addClass("flowpaper_selected"),q.addClass(e),"flowpaper_selected_strikeout"!=e||q.data("adjusted")||(t=q.height(),q.css("margin-top",t/2-t/3/1.5),q.height(t/2.3),q.data("adjusted",!0))));}}eb.platform.touchonlydevice||jQuery(".flowpaper_selector").val(r.join("")).select();}else{eb.platform.touchdevice||jQuery("#selector").val("");}f.Tr=n;f.Ms=g.left;f.Ns=g.right;f.Os=g.top;f.Ls=g.bottom;f.Is=g.left;f.Js=g.right;f.Ks=g.top;f.Hs=g.bottom;f.Qn=null!=r&&0<r.length?r[0]:null;f.as=null!=r&&0<r.length?r[r.length-1]:f.Qn;f.Rn=null!=g?g.i:-1;f.bs=null!=h?h.i:f.Rn;f.text=null!=r?r.join(""):"";f.page=p;f.Gs=this;return f;};};function wa(){}function V(f){var c=hoverPage;if(f=window["wordPageList_"+f]){return f.length>=c?f[c]:null;}}var W=function(){function f(c,d,e,g){this.F=d;this.L=c;this.pages={};this.selectors={};this.container="pagesContainer_"+e;this.J="#"+this.container;this.R=null==g?0:g-1;this.Ke=g;this.Zd=this.fg=null;this.Sc=this.Rc=-1;this.Ee=this.jd=0;this.initialized=!1;this.ia=eb.platform.touchonlydevice&&!eb.platform.lb?30:22;this.P=this.F.P;this.document=this.F.document;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},ij:function(){null!=this.Bi&&(window.clearTimeout(this.Bi),this.Bi=null);this.F.I&&this.F.H==this.F.I.Z&&this.F.I.kb.ij(this);},Wb:function(){return this.F.I&&this.F.H==this.F.I.Z&&this.F.I.kb.Wb(this)||"SinglePage"==this.F.H;},np:function(){return !(this.F.I&&this.F.I.kb.Wb(this));},Qa:function(c,d,e){var g=this.F.scale;this.F.scale=c;if("TwoPage"==this.F.H||"BookView"==this.F.H){var h=100*c+"%";eb.platform.touchdevice||this.M(this.J).css({width:h,"margin-left":this.Of()});}this.pages[0]&&(this.pages[0].scale=c);if("Portrait"==this.F.H||"SinglePage"==this.F.H){for(h=this.Bg=0;h<this.document.numPages;h++){if(this.Ra(h)){var f=this.pages[h].za(c);f>this.Bg&&(this.Bg=f);}}}for(h=0;h<this.document.numPages;h++){this.Ra(h)&&(this.pages[h].scale=c,this.pages[h].Qa());}this.F.I&&this.F.H==this.F.I.Z&&this.F.I.kb.Qa(this,g,c,d,e);},dispose:function(){for(var c=0;c<this.document.numPages;c++){this.pages[c].dispose(),delete this.pages[c];}this.selectors=this.pages=this.L=this.F=null;},resize:function(c,d,e){if("Portrait"==this.F.H||"SinglePage"==this.F.H){d+=eb.browser.capabilities.Db?0:14,c=c-(eb.browser.msie?0:2);}"ThumbView"==this.F.H&&(d=d-10);this.M(this.J).css({width:c,height:d});"TwoPage"==this.F.H&&(this.F.Rj=this.L.height()-(eb.platform.touchdevice?0:27),this.F.Mg=c/2-2,this.M(this.J).height(this.F.Rj),this.M("#"+this.container+"_2").css("left",this.M("#"+this.container).width()/2),eb.platform.touchdevice||(this.M(this.J+"_1").width(this.F.Mg),this.M(this.J+"_2").width(this.F.Mg)));if(this.F.I&&this.F.H==this.F.I.Z){this.F.I.kb.resize(this,c,d,e);}else{for(this.md(),c=0;c<this.document.numPages;c++){this.Ra(c)&&(this.pages[c].Qa(),this.F.renderer.pb||this.F.renderer.ra||(this.pages[c].oa=!1));}}this.Tj=null;null!=this.jScrollPane&&(this.jScrollPane.data("jsp").reinitialise(this.hd),this.jScrollPane.data("jsp").scrollTo(this.Rc,this.Sc,!1));},xe:function(c,d){var e=this;if(!e.ba){var g=!1;"function"===typeof e.Qi&&e.Qr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(g=!0);});null!=e.touchwipe&&(e.touchwipe.config.preventDefaultEvents=!1);e.Wb()||(jQuery(".flowpaper_pageword_"+e.P).remove(),setTimeout(function(){"TwoPage"!=e.F.H&&"BookView"!=e.F.H||e.oc();e.Fa();g&&e.getPage(e.F.Va-1).Jc(e.F.$d,!1);},500));e.F.I&&e.F.H==e.F.I.Z?e.F.I.kb.xe(e,c,d):e.Qa(1);null!=e.jScrollPane?(e.jScrollPane.data("jsp").reinitialise(e.hd),e.jScrollPane.data("jsp").scrollTo(e.Rc,e.Sc,!1)):"TwoPage"!=e.F.H&&"BookView"!=e.F.H||e.M(e.J).parent().scrollTo({left:e.Rc+"px",top:e.Sc+"px"},0,{axis:"xy"});}},sd:function(c){var d=this;if(!d.ba){var e=!1;null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!0);"function"===typeof d.Qi&&d.Rr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});d.Wb()||jQuery(".flowpaper_pageword_"+d.P).remove();d.F.I&&d.F.H==d.F.I.Z?d.F.I.kb.sd(d,c):d.Qa(window.FitHeightScale);setTimeout(function(){d.Fa();e&&d.getPage(d.F.Va-1).Jc(d.F.$d,!1);},500);d.Fa();null!=d.jScrollPane?(d.jScrollPane.data("jsp").scrollTo(0,0,!1),d.jScrollPane.data("jsp").reinitialise(d.hd)):d.M(d.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}},hj:function(){var c=this;c.Ve();if(c.F.I&&c.F.H==c.F.I.Z){c.F.I.kb.hj(c);}else{if("SinglePage"==c.F.H||"TwoPage"==c.F.H||"BookView"==c.F.H){c.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){if(!c.F.gd&&!window.Hb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.next(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-5,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.ma/c.getPage(g).dimensions.ya,d=Math.round(100*(d/(c.getPage(g).Aa*h)-0.03));100*c.F.scale<1.2*d&&c.next();}},wipeRight:function(){if(!c.F.gd&&!window.Hb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.previous(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-15,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.ma/c.getPage(g).dimensions.ya,d=Math.round(100*(d/(c.getPage(g).Aa*h)-0.03));100*c.F.scale<1.2*d&&c.previous();}},preventDefaultEvents:"TwoPage"==c.F.H||"BookView"==c.F.H||"SinglePage"==c.F.H,min_move_x:eb.platform.lb?150:200,min_move_y:500});}}if(eb.platform.mobilepreview){c.M(c.J).on("mousedown",function(d){c.Rc=d.pageX;c.Sc=d.pageY;});}c.M(c.J).on("touchstart",function(d){c.Rc=d.originalEvent.touches[0].pageX;c.Sc=d.originalEvent.touches[0].pageY;});c.M(c.J).on(eb.platform.mobilepreview?"mouseup":"touchend",function(){null!=c.F.pages.jScrollPane&&c.F.pages.jScrollPane.data("jsp").enable&&c.F.pages.jScrollPane.data("jsp").enable();if(null!=c.cb&&"SinglePage"==c.F.H){for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&c.M(c.pages[d].pa).transition({y:0,scale:1},0,"ease",function(){c.ba>c.F.scale&&c.ba-c.F.scale<c.F.document.ZoomInterval&&(c.ba+=c.F.document.ZoomInterval);0<c.ed-c.le&&c.ba<c.F.scale&&(c.ba=c.F.scale+c.F.document.ZoomInterval);c.F.ib(c.ba,{sg:!0});c.ba=null;});}c.pages[0]&&c.pages[0].Ve();c.M(c.J).addClass("flowpaper_pages_border");c.mj=c.cb<c.ba;c.cb=null;c.wf=null;c.ba=null;c.Ab=null;c.xc=null;}});if(c.F.I&&c.F.H==c.F.I.Z){c.F.I.kb.rk(c);}else{if(eb.platform.touchdevice){var d=c.M(c.J);d.doubletap(function(d){if("TwoPage"==c.F.H||"BookView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1!=c.F.scale||c.sd():c.xe(d.target),d.preventDefault();}},null,300);}else{c.F.Rb&&(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Xi);d.preventDefault();d.stopImmediatePropagation();},null,300));}}c.M(c.J).on("scroll gesturechange",function(){"SinglePage"==c.F.H?c.F.renderer.mb&&!c.ba&&c.F.renderer.Xc(c.pages[0]):c.F.I&&c.F.H==c.F.I.Z||(eb.platform.ios&&c.wj(-1*c.M(c.J).scrollTop()),eb.platform.ios?(setTimeout(function(){c.Og();c.kd();},1000),setTimeout(function(){c.Og();c.kd();},2000),setTimeout(function(){c.Og();c.kd();},3000)):c.Og(),c.kd(),c.Fa(),null!=c.fg&&(window.clearTimeout(c.fg),c.fg=null),c.fg=setTimeout(function(){c.al();window.clearTimeout(c.fg);c.fg=null;},100),c.ms=!0);});this.al();},rk:function(){},wj:function(c){for(var d=0;d<this.document.numPages;d++){this.Ra(d)&&this.pages[d].wj(c);}},rm:function(){var c=this.M(this.J).css("transform")+"";null!=c&&(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.replace("px",""),c=c.split(","),this.jd=parseFloat(c[0]),this.Ee=parseFloat(c[1]),isNaN(this.jd)&&(this.Ee=this.jd=0));},yk:function(c,d){this.M(this.J).transition({x:this.jd+(c-this.Ab)/this.F.scale,y:this.Ee+(d-this.xc)/this.F.scale},0);},bh:function(c,d){this.F.I&&this.F.I.kb.bh(this,c,d);},ao:function(c,d){var e=this.L.width();return c/d-this.Fd/e/d*e;},bo:function(c){var d=this.L.height();return c/this.F.scale-this.Gd/d/this.F.scale*d;},Ve:function(){this.F.I&&this.F.I.kb.Ve(this);},Oi:function(){if(this.F.I){return this.F.I.kb.Oi(this);}},getTotalPages:function(){return this.document.numPages;},ui:function(c){var d=this;c.empty();jQuery(d.F.renderer).on("onTextDataUpdated",function(){d.Fa(d);});null!=d.F.Zd||d.F.document.DisableOverflow||d.F.bb||(d.F.Zd=d.L.height(),eb.platform.touchonlydevice?d.F.ac||d.L.height(d.F.Zd-10):d.L.height(d.F.Zd-27));var e=d.F.I&&d.F.I.backgroundColor?"background-color:"+d.F.I.backgroundColor+";":"";d.F.I&&d.F.I.backgroundImage&&(e="background-color:transparent;");if("Portrait"==d.F.H||"SinglePage"==d.F.H){eb.platform.touchonlydevice&&"SinglePage"==d.F.H&&(eb.browser.capabilities.Db=!1);var g=jQuery(d.F.K).height()+(window.zine&&"Portrait"==d.F.sb?20:0),h=eb.platform.touchonlydevice?31:26;window.zine&&"Portrait"!=d.F.sb&&(h=eb.platform.touchonlydevice?41:36);var g=d.L.height()+(eb.browser.capabilities.Db?window.annotations?0:h-g:-5),h=d.L.width()-2,f=1<d.Ke?"visibility:hidden;":"",k=eb.browser.msie&&9>eb.browser.version?"position:relative;":"";d.F.document.DisableOverflow?c.append("<div id='"+d.container+"' class='flowpaper_pages' style='overflow:hidden;padding:0;margin:0;'></div>"):c.append("<div id='"+d.container+"' class='flowpaper_pages "+(window.annotations?"":"flowpaper_pages_border")+"' style='"+(eb.platform.Cm?"touch-action: none;":"")+"-moz-user-select:none;-webkit-user-select:none;"+k+";"+f+"height:"+g+"px;width:"+h+"px;overflow-y: auto;overflow-x: auto;;-webkit-overflow-scrolling: touch;-webkit-backface-visibility: hidden;-webkit-perspective: 1000;"+e+";'></div>");d.F.document.DisableOverflow||(eb.browser.capabilities.Db?eb.platform.touchonlydevice?(jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):jQuery(c).css("-webkit-overflow-scrolling","hidden"));eb.platform.touchdevice&&(eb.platform.ipad||eb.platform.iphone||eb.platform.android||eb.platform.Cm)&&(jQuery(d.J).on("touchmove",function(c){if(!eb.platform.ios&&2==c.originalEvent.touches.length&&(d.F.pages.jScrollPane&&d.F.pages.jScrollPane.data("jsp").disable(),1!=d.yi)){c.preventDefault&&c.preventDefault();c.returnValue=!1;c=Math.sqrt((c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)*(c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)+(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY)*(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY));c*=2;null==d.ba&&(d.M(d.J).removeClass("flowpaper_pages_border"),d.cb=1,d.wf=c);null==d.ba&&(d.cb=1,d.le=1+(jQuery(d.pages[0].pa).width()-d.L.width())/d.L.width());var e=c=(d.cb+(c-d.wf)/jQuery(d.J).width()-d.cb)/d.cb;d.Wb()||(1<e&&(e=1),-0.3>e&&(e=-0.3),0<c&&(c*=0.7));d.ed=d.le+d.le*c;d.ed<d.F.document.MinZoomSize&&(d.ed=d.F.document.MinZoomSize);d.ed>d.F.document.MaxZoomSize&&(d.ed=d.F.document.MaxZoomSize);d.Hc=1+(d.ed-d.le);d.ba=d.pages[0].Sk(jQuery(d.pages[0].pa).width()*d.Hc);d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);jQuery(d.pages[0].pa).width()>jQuery(d.pages[0].pa).height()?d.ba<d.F.oh()&&(d.Hc=d.Dg,d.ba=d.F.oh()):d.ba<d.F.ff()&&(d.Hc=d.Dg,d.ba=d.F.ff());d.Dg=d.Hc;if(d.Wb()&&0<d.Hc){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ra(c)&&jQuery(d.pages[c].pa).transition({transformOrigin:"50% 50%",scale:d.Hc},0,"ease",function(){});}}}}),jQuery(d.J).on("touchstart",function(){}),jQuery(d.J).on("gesturechange",function(c){if(1!=d.bq&&1!=d.yi){d.F.renderer.mb&&jQuery(".flowpaper_flipview_canvas_highres").hide();null==d.ba&&(d.cb=1,d.le=1+(jQuery(d.pages[0].pa).width()-d.L.width())/d.L.width());var e,g=e=(c.originalEvent.scale-d.cb)/d.cb;d.Wb()||(1<g&&(g=1),-0.3>g&&(g=-0.3),0<e&&(e*=0.7));d.ed=d.le+d.le*e;d.ed<d.F.document.MinZoomSize&&(d.ed=d.F.document.MinZoomSize);d.ed>d.F.document.MaxZoomSize&&(d.ed=d.F.document.MaxZoomSize);d.Hc=1+(d.ed-d.le);d.ba=d.pages[0].Sk(jQuery(d.pages[0].pa).width()*d.Hc);jQuery(d.pages[0].pa).width()>jQuery(d.pages[0].pa).height()?d.ba<d.F.oh()&&(d.Hc=d.Dg,d.ba=d.F.oh()):d.ba<d.F.ff()&&(d.Hc=d.Dg,d.ba=d.F.ff());d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);c.preventDefault&&c.preventDefault();d.Dg=d.Hc;if(d.Wb()&&0<d.Hc){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ra(c)&&jQuery(d.pages[c].pa).transition({transformOrigin:"50% 50%",scale:d.Hc},0,"ease",function(){});}}!d.Wb()&&(0.7<=g||-0.3>=g)&&(d.bq=!0,d.ba>d.F.scale&&d.ba-d.F.scale<d.F.document.ZoomInterval&&(d.ba+=d.F.document.ZoomInterval),d.F.ib(d.ba),d.ba=null);}}),jQuery(d.J).on("gestureend",function(){}));d.F.renderer.qa&&jQuery(d.F.renderer).bind("onTextDataUpdated",function(c,e){for(var g=e+12,h=e-2;h<g;h++){var f=d.getPage(h);if(f){var m=jQuery(f.pa).get(0);if(m){var k=f.za(),v=f.Ha(),A=1.5<d.F.renderer.Xa?d.F.renderer.Xa:1.5;m.width!=k*A&&(jQuery(m).data("needs-overlay",1),d.F.document.DisableOverflow&&(A=2),m.width=k*A,m.height=v*A,f.ae(m).then(function(c){if(d.F.document.DisableOverflow){var e=jQuery(c).css("background-image");0<e.length&&"none"!=e?(jQuery(c).css("background-image","url('"+c.toDataURL()+"'),"+e),e=jQuery(c).attr("id").substr(5,jQuery(c).attr("id").lastIndexOf("_")-5),jQuery("#"+d.P).trigger("onPageLoaded",parseInt(e)+1),aa(c)):jQuery(c).css("background-image","url('"+c.toDataURL()+"')");}}));}}}});}if("TwoPage"==d.F.H||"BookView"==d.F.H){g=d.L.height()-(eb.browser.msie?37:0),h=d.L.width()-(eb.browser.msie?0:20),e=0,1==d.F.da&&"BookView"==d.F.H&&(e=h/3,h-=e),eb.platform.touchdevice?eb.browser.capabilities.Db?(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;width:100%;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div>"),jQuery(c).css("overflow-y","scroll"),jQuery(c).css("overflow-x","scroll"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(c.append("<div id='"+d.container+"_jpane' style='-moz-user-select:none;-webkit-user-select:none;height:"+g+"px;width:100%;"+(window.eb.browser.msie||eb.platform.android?"overflow-y: scroll;overflow-x: scroll;":"overflow-y: auto;overflow-x: auto;")+";-webkit-overflow-scrolling: touch;'><div id='"+d.container+"' style='margin-left:"+e+"px;position:relative;height:100%;width:100%' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div></div>"),jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div><div id='"+d.container+"_2' class='flowpaper_pages "+("BookView"==d.F.H&&2>d.Ke?"flowpaper_hidden":"")+"' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div></div>"),jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")),null==d.F.Rj&&(d.F.Rj=d.L.height()-(eb.platform.touchdevice?0:27),d.F.Mg=d.M(d.J).width()/2-2),d.M(d.J).css({height:"90%"}),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2),eb.platform.touchdevice||(d.M(d.J+"_1").width(d.F.Mg),d.M(d.J+"_2").width(d.F.Mg));}"ThumbView"==d.F.H&&(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible"),k=eb.browser.msie&&9>eb.browser.version?"position:relative;":"",c.append("<div id='"+this.container+"' class='flowpaper_pages' style='"+k+";"+(eb.platform.touchdevice?"padding-left:10px;":"")+(eb.browser.msie?"overflow-y: scroll;overflow-x: hidden;":"overflow-y: auto;overflow-x: hidden;-webkit-overflow-scrolling: touch;")+"'></div>"),jQuery(".flowpaper_pages").height(d.L.height()-0));d.F.I&&d.F.I.kb.ui(d,c);d.L.trigger("onPagesContainerCreated");jQuery(d).bind("onScaleChanged",d.ij);},create:function(c){var d=this;d.ui(c);eb.browser.capabilities.Db||"ThumbView"==d.F.H||(d.hd={},"TwoPage"!=d.F.H&&"BookView"!=d.F.H)||(d.jScrollPane=d.M(d.J+"_jpane").jScrollPane(d.hd));for(c=0;c<this.document.numPages;c++){d.Ra(c)&&this.addPage(c);}d.hj();if(!eb.browser.capabilities.Db){if("Portrait"==d.F.H||"SinglePage"==d.F.H){d.jScrollPane=d.M(this.J).jScrollPane(d.hd);}!window.zine||d.F.I&&d.F.I.Z==d.F.H||jQuery(d.M(this.J)).bind("jsp-initialised",function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").hide();}).jScrollPane().hover(function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0.9);},function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0);});}eb.browser.capabilities.Db||"ThumbView"!=d.F.H||(d.jScrollPane=d.M(d.J).jScrollPane(d.hd));1<d.Ke&&"Portrait"==d.F.H&&setTimeout(function(){d.scrollTo(d.Ke,!0);d.Ke=-1;jQuery(d.J).css("visibility","visible");},500);d.Ke&&"SinglePage"==d.F.H&&jQuery(d.J).css("visibility","visible");},getPage:function(c){if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0!=c%2){return this.pages[1];}if(0==c%2){return this.pages[0];}}else{return"SinglePage"==this.F.H?this.pages[0]:this.pages[c];}},Ra:function(c){return this.F.DisplayRange?-1<this.F.DisplayRange.indexOf(c+1):("TwoPage"==this.F.H||"BookView"==this.F.H)&&(0==c||1==c)||"TwoPage"!=this.F.H&&"BookView"!=this.F.H;},addPage:function(c){this.pages[c]=new xa(this.P,c,this,this.L,this.F,this.ph(c));this.pages[c].create(this.M(this.J));jQuery(this.F.L).trigger("onPageCreated",c);},ph:function(c){for(var d=0;d<this.document.dimensions.length;d++){if(this.document.dimensions[d].page==c){return this.document.dimensions[d];}}return{width:-1,height:-1};},scrollTo:function(c,d){if(this.R+1!=c||d){!eb.browser.capabilities.Db&&this.jScrollPane?this.jScrollPane.data("jsp").scrollToElement(this.pages[c-1].M(this.pages[c-1].xa),!0,!1):jQuery(this.J).scrollTo&&jQuery(this.J).scrollTo(this.pages[c-1].M(this.pages[c-1].xa),0);}this.Fa();},qp:function(){for(var c=0;c<this.getTotalPages();c++){this.Ra(c)&&this.pages[c]&&this.pages[c].pc&&window.clearTimeout(this.pages[c].pc);}},al:function(){this.md();},md:function(){var c=this;null!=c.be&&(window.clearTimeout(c.be),c.be=null);c.be=setTimeout(function(){c.oc();},200);},Kj:function(){if(null!=this.jScrollPane){try{this.jScrollPane.data("jsp").reinitialise(this.hd);}catch(c){}}},oc:function(c){var d=this;if(d.F){if(d.F.I&&d.F.H==d.F.I.Z){d.F.I.kb.oc(d,c);}else{null!=d.be&&(window.clearTimeout(d.be),d.be=null);c=d.M(this.J).scrollTop();for(var e=0;e<this.document.numPages;e++){if(this.pages[e]&&d.Ra(e)){var g=!d.pages[e].Wa;this.pages[e].Qc(c,d.M(this.J).height(),!0)?(g&&d.L.trigger("onVisibilityChanged",e+1),this.pages[e].Wa=!0,this.pages[e].load(function(){if("TwoPage"==d.F.H||"BookView"==d.F.H){d.M(d.J).is(":animated")||1==d.F.scale||(d.M(d.J).css("margin-left",d.Of()),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2)),d.initialized||null==d.jScrollPane||(d.jScrollPane.data("jsp").reinitialise(d.hd),d.initialized=!0);}}),this.pages[e].Eo(),this.pages[e].Fa()):"TwoPage"!=d.F.H&&"BookView"!=d.F.H&&this.pages[e].vb();}}}}},kd:function(){this.F.H!=this.F.Z()?this.F.Nc(this.R+1):this.F.Nc(this.R);},Fa:function(c){c=c?c:this;for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&c.pages[d]&&c.pages[d].Wa&&c.pages[d].Fa();}},Og:function(){for(var c=this.R,d=this.M(this.J).scrollTop(),e=0;e<this.document.numPages;e++){if(this.Ra(e)&&"SinglePage"!=this.F.H){var g=!this.pages[e].Wa;if(this.pages[e].Qc(d,this.M(this.J).height(),!1)){c=e;g&&this.L.trigger("onVisibilityChanged",e+1);break;}}}this.R!=c&&this.L.trigger("onCurrentPageChanged",this.F.config&&this.F.config.document&&this.F.config.document.RTLMode?this.F.getTotalPages()-(c+1)+1:c+1);this.R=c;},setCurrentCursor:function(c){for(var d=0;d<this.document.numPages;d++){this.Ra(d)&&("TextSelectorCursor"==c?jQuery(this.pages[d].T).addClass("flowpaper_nograb"):jQuery(this.pages[d].T).removeClass("flowpaper_nograb"));}},gotoPage:function(c){this.F.gotoPage(c);},zg:function(c,d){c=parseInt(c);var e=this;e.F.renderer.Mc&&e.F.renderer.Mc(e.pages[0]);jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();e.pages[0].vb();e.pages[0].visible=!0;var g=e.M(e.J).scrollTop();e.F.Nc(c);e.L.trigger("onCurrentPageChanged",e.F.config&&e.F.config.document&&e.F.config.document.RTLMode?e.F.getTotalPages()-newPageIndex+1:c);e.pages[0].Qc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[0].load(function(){null!=d&&d();e.md();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.hd);}));},Ag:function(c,d){c=parseInt(c);var e=this;0==c%2&&0<c&&"BookView"==e.F.H&&c!=e.getTotalPages()&&(c+=1);c==e.getTotalPages()&&"TwoPage"==e.F.H&&0==e.getTotalPages()%2&&(c=e.getTotalPages()-1);0==c%2&&"TwoPage"==e.F.H&&--c;c>e.getTotalPages()&&(c=e.getTotalPages());jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();if(c<=e.getTotalPages()&&0<c){e.F.Nc(c);e.R!=c&&e.L.trigger("onCurrentPageChanged",e.F.config&&e.F.config.document&&e.F.config.document.RTLMode?e.F.getTotalPages()-newPageIndex+1:c);e.pages[0].vb();e.pages[0].load(function(){if("TwoPage"==e.F.H||"BookView"==e.F.H){e.M(e.J).animate({"margin-left":e.Of()},{duration:250}),e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2),e.Qa(e.F.scale);}});1<e.F.da?(e.M(e.pages[1].T+"_2").removeClass("flowpaper_hidden"),e.M(e.J+"_2").removeClass("flowpaper_hidden")):"BookView"==e.F.H&&1==e.F.da&&(e.M(e.pages[1].T+"_2").addClass("flowpaper_hidden"),e.M(e.J+"_2").addClass("flowpaper_hidden"));0!=e.getTotalPages()%2&&"TwoPage"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].T+"_2").addClass("flowpaper_hidden");0==e.getTotalPages()%2&&"BookView"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].T+"_2").addClass("flowpaper_hidden");var g=e.M(this.J).scrollTop();e.pages[1].vb();e.pages[1].visible=!0;!e.M(e.pages[1].T+"_2").hasClass("flowpaper_hidden")&&e.pages[1].Qc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[1].load(function(){null!=d&&d();e.M(e.J).animate({"margin-left":e.Of()},{duration:250});e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2);e.md();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.hd);}));}},rotate:function(c){this.pages[c].rotate();},Of:function(c){this.L.width();var d=0;1!=this.F.da||c||"BookView"!=this.F.H?(c=jQuery(this.J+"_2").width(),0==c&&(c=this.M(this.J+"_1").width()),d=(this.L.width()-(this.M(this.J+"_1").width()+c))/2):d=(this.L.width()/2-this.M(this.J+"_1").width()/2)*(this.F.scale+0.7);10>d&&(d=0);return d;},previous:function(){var c=this;if("Portrait"==c.F.H){var d=c.M(c.J).scrollTop()-c.pages[0].height-14;0>d&&(d=1);eb.browser.capabilities.Db?c.M(c.J).scrollTo(d,{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da-2].M(this.pages[c.F.da-2].xa),!0,!0);}"SinglePage"==c.F.H&&0<c.F.da-1&&(eb.platform.touchdevice&&1!=this.F.scale?(c.F.gd=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:1000},350,function(){c.pages[0].vb();c.M(c.J).transition({x:-800},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.zg(c.F.da-1,function(){});c.M(c.J).transition({x:0},350,function(){c.F.gd=!1;window.annotations||c.M(c.J).addClass("flowpaper_pages_border");});})):c.zg(c.F.da-1));c.F.I&&c.F.H==c.F.I.Z&&c.F.I.kb.previous(c);"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1>c.F.da-2||(eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da-2,c.F.gd=!0,c.M(c.J).animate({"margin-left":1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();1==c.F.da-2&&"BookView"==c.F.H&&c.pages[1].M(c.pages[1].T+"_2").addClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",-800);c.pages[0].vb();c.pages[1].vb();c.M(c.J).animate({"margin-left":c.Of()},{duration:350,complete:function(){setTimeout(function(){c.F.gd=!1;c.Ag(c.F.da-2);},500);}});},500);}})):c.Ag(c.F.da-2));},next:function(){var c=this;if("Portrait"==c.F.H){0==c.F.da&&(c.F.da=1);var d=c.F.da-1;100<this.pages[c.F.da-1].M(this.pages[c.F.da-1].xa).offset().top-c.L.offset().top?d=c.F.da-1:d=c.F.da;eb.browser.capabilities.Db?this.pages[d]&&c.M(c.J).scrollTo(this.pages[d].M(this.pages[d].xa),{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da].M(this.pages[c.F.da].xa),!0,!0);}"SinglePage"==c.F.H&&c.F.da<c.getTotalPages()&&(eb.platform.touchdevice&&1!=c.F.scale?(c.F.gd=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:-1000},350,"ease",function(){c.pages[0].vb();c.M(c.J).transition({x:1200},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.zg(c.F.da+1,function(){});c.M(c.J).transition({x:0},350,"ease",function(){window.annotations||c.M(c.J).addClass("flowpaper_pages_border");c.F.gd=!1;});})):c.zg(c.F.da+1));c.F.I&&c.F.H==c.F.I.Z&&c.F.I.kb.next(c);if("TwoPage"==c.F.H||"BookView"==c.F.H){if("TwoPage"==c.F.H&&c.F.da+2>c.getTotalPages()){return !1;}eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da+2,c.F.gd=!0,c.M(c.J).animate({"margin-left":-1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();c.F.da+2<=c.getTotalPages()&&0<c.F.da+2&&c.pages[1].M(c.pages[1].T+"_2").removeClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",800);c.pages[0].vb();c.pages[1].vb();c.pages[0].Wa=!0;c.pages[1].Wa=!0;c.L.trigger("onVisibilityChanged",c.R);c.M(c.J).animate({"margin-left":c.Of(!0)},{duration:350,complete:function(){setTimeout(function(){c.F.gd=!1;c.Ag(c.F.da+2);},500);}});},500);}})):c.Ag(c.F.da+2);}},lf:function(c){this.F.I&&this.F.H==this.F.I.Z&&this.F.I.kb.lf(this,c);}};return f;}(),xa=function(){function f(c,d,e,g,h,f){this.L=g;this.F=h;this.pages=e;this.Aa=1000;this.oa=this.Wa=!1;this.P=c;this.pageNumber=d;this.dimensions=f;this.selectors={};this.aa="dummyPage_"+this.pageNumber+"_"+this.P;this.page="page_"+this.pageNumber+"_"+this.P;this.yd="pageContainer_"+this.pageNumber+"_"+this.P;this.Fg=this.yd+"_textLayer";this.gh="dummyPageCanvas_"+this.pageNumber+"_"+this.P;this.hh="dummyPageCanvas2_"+this.pageNumber+"_"+this.P;this.ri=this.page+"_canvasOverlay";this.ec="pageLoader_"+this.pageNumber+"_"+this.P;this.zl=this.yd+"_textoverlay";this.H=this.F.H;this.Z=this.F.I?this.F.I.Z:"";this.renderer=this.F.renderer;c=this.F.scale;this.scale=c;this.T="#"+this.aa;this.pa="#"+this.page;this.xa="#"+this.yd;this.Bb="#"+this.Fg;this.zi="#"+this.gh;this.Ai="#"+this.hh;this.Ub="#"+this.ec;this.jj="#"+this.zl;this.ua={bottom:3,top:2,right:0,left:1,Za:4,back:5};this.Ua=[];this.duration=1.3;this.Xo=16777215;this.offset=this.force=0;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},show:function(){"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M(this.pa).removeClass("flowpaper_hidden");},Ve:function(){this.pages.jScrollPane&&(!eb.browser.capabilities.Db&&this.pages.jScrollPane?"SinglePage"==this.F.H?0>this.M(this.pages.J).width()-this.M(this.xa).width()?(this.pages.jScrollPane.data("jsp").scrollToPercentX(0.5,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0.5,!1)):(this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0,!1)):this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1):this.M(this.xa).parent().scrollTo&&this.M(this.xa).parent().scrollTo({left:"50%"},0,{axis:"x"}));},create:function(c){var d=this;if("Portrait"==d.F.H){c.append("<div class='flowpaper_page "+(d.F.document.DisableOverflow?"flowpaper_ppage":"")+" "+(d.F.document.DisableOverflow&&d.pageNumber<d.F.renderer.getNumPages()-1?"ppage_break":"ppage_none")+"' id='"+d.yd+"' style='position:relative;"+(d.F.document.DisableOverflow?"margin:0;padding:0;overflow:hidden;":"")+"'><div id='"+d.aa+"' class='' style='z-index:11;"+d.getDimensions()+";'></div></div>");if(0<jQuery(d.F.Uj).length){var e=this.Aa*this.scale;jQuery(d.F.Uj).append("<div id='"+d.zl+"' class='flowpaper_page' style='position:relative;height:"+e+"px;width:100%;overflow:hidden;'></div>");}d.hl();}"SinglePage"==d.F.H&&0==d.pageNumber&&c.append("<div class='flowpaper_page' id='"+d.yd+"' class='flowpaper_rescale' style='position:relative;'><div id='"+d.aa+"' class='' style='position:absolute;z-index:11;"+d.getDimensions()+"'></div></div>");if("TwoPage"==d.F.H||"BookView"==d.F.H){0==d.pageNumber&&jQuery(c.children().get(0)).append("<div class='flowpaper_page' id='"+d.yd+"_1' style='z-index:2;float:right;position:relative;'><div id='"+d.aa+"_1' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:right;'></div></div>"),1==d.pageNumber&&jQuery(c.children().get(1)).append("<div class='flowpaper_page' id='"+d.yd+"_2' style='position:relative;z-index:1;float:left;'><div id='"+d.aa+"_2' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:left'></div></div>");}"ThumbView"==d.F.H&&(c.append("<div class='flowpaper_page' id='"+d.yd+"' style='position:relative;"+(eb.browser.msie?"clear:none;float:left;":"display:inline-block;")+"'><div id=\""+d.aa+'" class="flowpaper_page flowpaper_thumb flowpaper_border flowpaper_load_on_demand" style="margin-left:10px;'+d.getDimensions()+'"></div></div>'),jQuery(d.xa).on("mousedown touchstart",function(){d.F.gotoPage(d.pageNumber+1);}));d.F.H==d.Z?d.F.I.Ic.create(d,c):(d.F.renderer.Qd(d),d.show(),d.height=d.M(d.xa).height(),d.$l());jQuery(d.xa).on("mousedown",function(c){var e=$(this),f=c.pageX-e.offset().left;c=c.pageY-e.offset().top;var k=e.width(),e=e.height(),f=d.Aa*d.se()/k*f;c*=d.Aa/e;jQuery(d.L).trigger("onPageClicked",{pageNumber:d.pageNumber+1,left:f,top:c});});},hl:function(){var c=this;if(c.F.Rb){jQuery(c.xa).on("mouseover, mousemove",function(){"Portrait"==c.F.H?qa("pageContainer_"+c.pageNumber+"_documentViewer_textLayer",c.pageNumber+1):qa("turn-page-wrapper-"+(c.pageNumber+1),c.pageNumber+1);});}},$n:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.ri;}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){return this.ri+"_1";}if(1==this.pageNumber){return this.ri+"_2";}}},wj:function(c){this.M(this.jj).css({top:c});},Qb:function(){"Portrait"!=this.F.H&&"SinglePage"!=this.F.H&&this.F.H!=this.Z||jQuery("#"+this.ec).remove();if("TwoPage"==this.F.H||"BookView"==this.F.H){0==this.pageNumber&&this.M(this.Ub+"_1").hide(),1==this.pageNumber&&this.M(this.Ub+"_2").hide();}},ad:function(){if(!this.F.document.DisableOverflow){if("Portrait"==this.F.H||"SinglePage"==this.F.H||this.F.H==this.Z){this.Aa=1000;if(0<this.M(this.Ub).length){return;}var c=0<jQuery(this.xa).length?jQuery(this.xa):this.Dc;c&&c.find&&0!=c.length?0==c.find("#"+this.ec).length&&c.append("<img id='"+this.ec+"' src='"+this.F.ke+"' class='flowpaper_pageLoader'  style='position:absolute;left:50%;top:50%;height:8px;margin-left:"+(this.dc()-10)+"px;' />"):N("can't show loader, missing container for page "+this.pageNumber);}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){if(0<this.M(this.Ub+"_1").length){this.M(this.Ub+"_1").show();return;}this.M(this.T+"_1").append("<img id='"+this.ec+"_1' src='"+this.F.ke+"' style='position:absolute;left:"+(this.za()-30)+"px;top:"+this.Ha()/2+"px;' />");this.M(this.Ub+"_1").show();}1==this.pageNumber&&(0<this.M(this.Ub+"_2").length||this.M(this.T+"_2").append("<img id='"+this.ec+"_2' src='"+this.F.ke+"' style='position:absolute;left:"+(this.za()/2-10)+"px;top:"+this.Ha()/2+"px;' />"),this.M(this.Ub+"_2").show());}}},Qa:function(){var c,d;d=this.za();c=this.Ha();var e=this.dc();this.F.document.DisableOverflow&&(c=Math.floor(c),d=Math.floor(d));if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.M(this.xa).css({height:c,width:d,"margin-left":e,"margin-top":0}),this.M(this.T).css({height:c,width:d,"margin-left":e}),this.M(this.pa).css({height:c,width:d,"margin-left":e}),this.M(this.zi).css({height:c,width:d}),this.M(this.Ai).css({height:c,width:d}),this.M(this.jj).css({height:c,width:d}),this.M(this.Ub).css({"margin-left":e}),jQuery(this.Bb).css({height:c,width:d,"margin-left":e}),this.F.renderer.mb&&(jQuery(".flowpaper_flipview_canvas_highres").css({width:0.25*d,height:0.25*c}).show(),this.scale<this.yg()?this.F.renderer.Mc(this):this.F.renderer.Xc(this)),this.Vf(this.scale,e);}if("TwoPage"==this.F.H||"BookView"==this.F.H){this.M(this.T+"_1").css({height:c,width:d}),this.M(this.T+"_2").css({height:c,width:d}),this.M(this.T+"_1_textoverlay").css({height:c,width:d}),this.M(this.T+"_2_textoverlay").css({height:c,width:d}),this.M(this.pa).css({height:c,width:d}),eb.browser.capabilities.Db||(0==this.pages.R?this.pages.M(this.pages.J).css({height:c,width:d}):this.pages.M(this.pages.J).css({height:c,width:2*d}),"TwoPage"==this.F.H&&this.pages.M(this.pages.J).css({width:"100%"})),eb.platform.touchdevice&&1<=this.scale&&this.pages.M(this.pages.J).css({width:2*d}),eb.platform.touchdevice&&("TwoPage"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2),"BookView"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2));}if(this.F.H==this.Z){var g=this.se()*this.Aa,h=this.za()/g;null!=this.dimensions.nb&&this.pb&&this.F.renderer.ra&&(h=this.pages.qd/2/g);this.F.H==this.Z?1==this.scale&&this.Vf(h,e):this.Vf(h,e);}this.height=c;this.width=d;},yg:function(){return 1;},Wb:function(){return"SinglePage"==this.F.H;},resize:function(){},se:function(){return this.dimensions.ma/this.dimensions.ya;},Pc:function(){return this.F.H==this.Z?this.F.I.Ic.Pc(this):this.dimensions.ma/this.dimensions.ya*this.scale*this.Aa;},Mf:function(){return this.F.H==this.Z?this.F.I.Ic.Mf(this):this.Aa*this.scale;},getDimensions:function(){var c=this.ve(),d=this.F.Pc();if(this.F.document.DisableOverflow){var e=this.Aa*this.scale;return"height:"+e+"px;width:"+e*c+"px";}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return e=this.Aa*this.scale,"height:"+e+"px;width:"+e*c+"px;margin-left:"+(d-e*c)/2+"px;";}if(this.F.H==this.Z){return this.F.I.Ic.getDimensions(this,c);}if("TwoPage"==this.F.H||"BookView"==this.F.H){return e=this.L.width()/2*this.scale,(0==this.pageNumber?"margin-left:0px;":"")+"height:"+e+"px;width:"+e*c+"px";}if("ThumbView"==this.F.H){return e=this.Aa*((this.L.height()-100)/this.Aa)/2.7,"height:"+e+"px;width:"+e*c+"px";}},ve:function(){return this.dimensions.ma/this.dimensions.ya;},za:function(c){return this.F.H==this.Z?this.F.I.Ic.za(this):this.Aa*this.ve()*(c?c:this.scale);},Ni:function(){return this.F.H==this.Z?this.F.I.Ic.Ni(this):this.Aa*this.ve()*this.scale;},Sk:function(c){return c/(this.Aa*this.ve());},Pi:function(){return this.F.H==this.Z?this.F.I.Ic.Pi(this):this.Aa*this.ve();},Ha:function(){return this.F.H==this.Z?this.F.I.Ic.Ha(this):this.Aa*this.scale;},Mi:function(){return this.F.H==this.Z?this.F.I.Ic.Mi(this):this.Aa*this.scale;},dc:function(){var c=this.F.Pc(),d=0;if(this.F.document.DisableOverflow){return 0;}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.pages.Bg&&this.pages.Bg>c&&(c=this.pages.Bg),d=(c-this.za())/2/2-4,0<d?d:0;}if("TwoPage"==this.F.H||"BookView"==this.F.H){return 0;}if(this.F.H==this.Z){return this.F.I.Ic.dc(this);}},Qc:function(c,d,e){var g=!1;if("Portrait"==this.F.H||"ThumbView"==this.F.H){if(this.offset=this.M(this.xa).offset()){this.pages.Tj||(this.pages.Tj=this.F.N.offset().top);var g=this.offset.top-this.pages.Tj+c,h=this.offset.top+this.height;d=c+d;g=e||eb.platform.touchdevice&&!eb.browser.capabilities.Db?this.Wa=c-this.height<=g&&d>=g||g-this.height<=c&&h>=d:c<=g&&d>=g||g<=c&&h>=d;}else{g=!1;}}"SinglePage"==this.F.H&&(g=this.Wa=0==this.pageNumber);this.F.H==this.Z&&(g=this.Wa=this.F.I.Ic.Qc(this));if("BookView"==this.F.H){if(0==this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Wa=0==this.pageNumber||0!=this.pages.R&&1==this.pageNumber;}if("TwoPage"==this.F.H){if(0!=this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Wa=0==this.pageNumber||1==this.pageNumber;}return g;},Eo:function(){this.oa||this.load();},load:function(c){this.Fa(c);if(!this.oa){"TwoPage"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa());"BookView"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R-(0<this.pages.R?1:0)+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa());if("SinglePage"==this.F.H){c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R];if(c.width!=this.dimensions.width||c.height!=this.dimensions.height){this.dimensions=c,this.Qa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Fa();}this.dimensions.loaded=!1;}"Portrait"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Fa());this.F.renderer.Vb(this,!1);"function"===typeof this.Qi&&this.loadOverlay();}},vb:function(){if(this.oa||"TwoPage"==this.F.H||"BookView"==this.F.H||this.F.H==this.Z){delete this.selectors,this.selectors={},jQuery(this.W).unbind(),delete this.W,this.W=null,this.oa=!1,this.F.renderer.vb(this),jQuery(this.Ub).remove(),this.Yj&&(delete this.Yj,this.Yj=null),this.F.H==this.Z&&this.F.I.Ic.vb(this),"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M("#"+this.$n()).remove(),"function"===typeof this.Qi&&this.Fs();}},Fa:function(c){"ThumbView"==this.F.H||!this.Wa&&null==c||this.pages.animating||this.F.renderer.Fa(this,!1,c);},Jc:function(c,d,e){this.F.renderer.Jc(this,c,d,e);},Se:function(c,d,e){this.F.renderer.Se(this,c,d,e);},$l:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){eb.browser.msie&&9>eb.browser.version||eb.platform.ios||(new ba(this.F,"CanvasPageRenderer"==this.renderer.rh()?this.T:this.pa,this.M(this.xa).parent())).scroll();}},Vf:function(c,d){var e=this;if(e.F.U[e.pageNumber]){for(var g=0;g<e.F.U[e.pageNumber].length;g++){if("link"==e.F.U[e.pageNumber][g].type){var h=e.F.U[e.pageNumber][g].Bo*c,f=e.F.U[e.pageNumber][g].Co*c,k=e.F.U[e.pageNumber][g].width*c,l=e.F.U[e.pageNumber][g].height*c,n=e.F.U[e.pageNumber][g].Ip,p=e.F.U[e.pageNumber][g].Jp,r=e.F.U[e.pageNumber][g].Oo;if(0==jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g).length){var t=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}' class='flowpaper_mark_link flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;box-shadow: 0px 0px 0px 0px;'></div>",h,f,k,l,e.pageNumber,g)),q=e.xa;0==jQuery(q).length&&(q=e.Dc);if(n){n="flowpaper-linkicon-url";e.F.U[e.pageNumber][g].href&&-1<e.F.U[e.pageNumber][g].href.indexOf("mailto:")&&(n="flowpaper-linkicon-email");e.F.U[e.pageNumber][g].href&&-1<e.F.U[e.pageNumber][g].href.indexOf("tel:")&&(n="flowpaper-linkicon-phone");e.F.U[e.pageNumber][g].href&&-1<e.F.U[e.pageNumber][g].href.indexOf("actionGoTo:")&&(n="flowpaper-linkicon-bookmark");var u=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon flowpaper-linkicon-roundbg' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,k,l,e.pageNumber,g));jQuery(q).append(u);h=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon {6}' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,k,l,e.pageNumber,g,n));jQuery(q).append(h);}q=jQuery(q).append(t).find("#flowpaper_mark_link_"+e.pageNumber+"_"+g);p&&(q.data("mouseOverText",r),q.bind("mouseover",function(c){for(var d=document.querySelectorAll(".popover"),g=0;g<d.length;g++){d[g].remove();}!jQuery(this).data("mouseOverText")||jQuery(this).data("mouseOverText")&&0==jQuery(this).data("mouseOverText").length||(c=new Popover({position:"top",button:c.target}),c.setContent('<span style="font-family:Arial;font-size:0.8em;">'+jQuery(this).data("mouseOverText")+"</span>"),c.render("open",e.F.N.get(0)));}),q.bind("mouseout",function(){for(var c=document.querySelectorAll(".popover"),d=0;d<c.length;d++){c[d].remove();}}));q.data("link",e.F.U[e.pageNumber][g].href);q.bind("mousedown touchstart",function(c){if(e.pages.Oe||e.pages.animating){return !1;}if(0==jQuery(this).data("link").indexOf("actionGoTo:")){e.F.gotoPage(jQuery(this).data("link").substr(11));}else{if(0==jQuery(this).data("link").indexOf("javascript")){var d=unescape(jQuery(this).data("link"));eval(d.substring(11));}else{jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));}}e.F.Xd="up";c.preventDefault();c.stopImmediatePropagation();return !1;});eb.platform.touchonlydevice||(jQuery(q).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",e.F.linkColor);jQuery(this).css({opacity:e.F.Tc});}),jQuery(q).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));}else{t=jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g),t.css({left:h+"px",top:f+"px",width:k+"px",height:l+"px","margin-left":d+"px"});}}"audio"==e.F.U[e.pageNumber][g].type&&(h=e.F.U[e.pageNumber][g].ln*c,f=e.F.U[e.pageNumber][g].mn*c,r=e.F.U[e.pageNumber][g].width*c,t=e.F.U[e.pageNumber][g].height*c,k=e.F.U[e.pageNumber][g].src,q=e.F.U[e.pageNumber][g].autoplay&&!eb.platform.touchonlydevice,l=e.F.U[e.pageNumber][g].url,n=e.F.U[e.pageNumber][g].no&&!eb.platform.touchonlydevice,FLOWPAPER.authenticated&&(k=FLOWPAPER.appendUrlParameter(k,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_audio_"+e.pageNumber+"_"+g).length?(p="vimeoframe_"+FLOWPAPER.Qk(),k=jQuery(String.format('<div id=\'flowpaper_mark_audio_{4}_{5}\' data-autoplay=\'{8}\' class=\'flowpaper_mark_video flowpaper_mark_video_{4} flowpaper_mark\' style=\'left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px;display:{11}\'><audio id="{9}" poster="{6}" style="width:{2}px;height:{3}px;" class="audioframe flowpaper_mark video-js vjs-default-skin flowpaper_mark" controls controlsList="nodownload" preload="auto" autoplay="{8}" width="{2}" height="{3}" data-setup=\'{}\'><source src="{10}" type="audio/mp3" /></audio></div>',h,f,r,t,e.pageNumber,g,k,d,q,p,l,n?"none":"block")),q=e.xa,0==jQuery(q).length&&(q=e.Dc),jQuery(q).length&&(q=jQuery(q).append(k).find("#flowpaper_mark_audio_"+e.pageNumber+"_"+g),videojs(p),q.data("audio",e.F.U[e.pageNumber][g].url),q.bind("mousedown touchstart",function(c){jQuery(e.L).trigger("onAudioStarted",{AudioUrl:jQuery(this).data("audio"),PageNumber:e.pageNumber+1});e.F.Xd="up";c.preventDefault();c.stopImmediatePropagation();}))):(k=jQuery("#flowpaper_mark_audio_"+e.pageNumber+"_"+g),k.css({left:h+"px",top:f+"px",width:r+"px",height:t+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:r+"px",height:t+"px"}),h=k.find("iframe"),0<h.length&&(h.attr("width",r),h.attr("height",t))));"video"==e.F.U[e.pageNumber][g].type&&(t=e.F.U[e.pageNumber][g].Qh*c,h=e.F.U[e.pageNumber][g].Rh*c,p=e.F.U[e.pageNumber][g].width*c,r=e.F.U[e.pageNumber][g].height*c,f=e.F.U[e.pageNumber][g].src,q=e.F.U[e.pageNumber][g].autoplay,FLOWPAPER.authenticated&&(f=FLOWPAPER.appendUrlParameter(f,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g).length?(f=jQuery(String.format("<div id='flowpaper_mark_video_{4}_{5}' data-autoplay='{8}' class='flowpaper_mark_video flowpaper_mark_video_{4} flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",t,h,p,r,e.pageNumber,g,f,d,q)),q=e.xa,0==jQuery(q).length&&(q=e.Dc),q=jQuery(q).append(f).find("#flowpaper_mark_video_"+e.pageNumber+"_"+g),q.data("video",e.F.U[e.pageNumber][g].url),q.data("maximizevideo",e.F.U[e.pageNumber][g].Mo),q.bind("mousedown touchstart",function(c){jQuery(e.L).trigger("onVideoStarted",{VideoUrl:jQuery(this).data("video"),PageNumber:e.pageNumber+1});if(e.pages.Oe||e.pages.animating){return !1;}var d=jQuery(this).data("video"),g="true"==jQuery(this).data("maximizevideo");if(d&&0<=d.toLowerCase().indexOf("youtube")){for(var h=d.substr(d.indexOf("?")+1).split("&"),f="",m=0;m<h.length;m++){0==h[m].indexOf("v=")&&(f=h[m].substr(2));}if(g){e.F.Ac=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>'));e.F.N.append(e.F.Ac);jQuery(e.F.Ac).html(String.format("<iframe class='flowpaper_videoframe' width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f,-1<location.href.indexOf("https:")?"https":"http"));var k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.og));e.F.N.append(k);jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",jQuery(this).width(),jQuery(this).height(),f,-1<location.href.indexOf("https:")?"https":"http"));}}d&&0<=d.toLowerCase().indexOf("vimeo")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.Ac=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.Ac),jQuery(e.F.Ac).html(String.format("<iframe class='flowpaper_videoframe' src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f)),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.og)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));d&&0<=d.toLowerCase().indexOf("wistia")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.Ac=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.Ac),jQuery(e.F.Ac).html(String.format("<iframe class='flowpaper_videoframe' src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f)),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.og)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));if(d&&-1<d.indexOf("{")){try{var l=JSON.parse(d),r=FLOWPAPER.appendUrlParameter(l.mp4,FLOWPAPER.authenticated?FLOWPAPER.authenticated.getParams():""),q=FLOWPAPER.appendUrlParameter(l.webm,FLOWPAPER.authenticated?FLOWPAPER.authenticated.getParams():""),p="vimeoframe_"+FLOWPAPER.Qk();if(g){e.F.Ac=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.Ac),jQuery(e.F.Ac).html(jQuery(String.format('<video id="{2}" style="width:{3}px;height:{4}px;" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay controlsList="nodownload" preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',r,q,p,0.95*e.F.N.width(),0.95*e.F.N.height()))),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.og)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{if(0==jQuery(this).find("video").length){jQuery(this).html(jQuery(String.format('<video id="{2}" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay controlsList="nodownload" preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',r,q,p,jQuery(this).width(),jQuery(this).height()))),videojs(p);}else{return !0;}}}catch(n){}}e.F.Xd="up";c.preventDefault();c.stopImmediatePropagation();return !1;})):(f=jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g),f.css({left:t+"px",top:h+"px",width:p+"px",height:r+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:p+"px",height:r+"px"}),h=f.find("iframe"),0<h.length&&(h.attr("width",p),h.attr("height",r))));if("image"==e.F.U[e.pageNumber][g].type){var q=e.F.U[e.pageNumber][g].uh*c,f=e.F.U[e.pageNumber][g].vh*c,k=e.F.U[e.pageNumber][g].width*c,l=e.F.U[e.pageNumber][g].height*c,p=e.F.U[e.pageNumber][g].src,r=e.F.U[e.pageNumber][g].href,t=e.F.U[e.pageNumber][g].po,v=e.F.U[e.pageNumber][g].ep;FLOWPAPER.authenticated&&(p=FLOWPAPER.appendUrlParameter(p,FLOWPAPER.authenticated.getParams()));0==jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g).length?(h=jQuery(String.format("<div id='flowpaper_mark_image_{4}_{5}' class='flowpaper_mark_image flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",q,f,k,l,e.pageNumber,g,p)),q=e.xa,0==jQuery(q).length&&(q=e.Dc),q=jQuery(q).append(h).find("#flowpaper_mark_image_"+e.pageNumber+"_"+g),q.data("image",e.F.U[e.pageNumber][g].url),null!=r&&0<r.length?(q.data("link",r),q.bind("mousedown touchstart",function(c){if(e.pages.Oe||e.pages.animating){return !1;}0==jQuery(this).data("link").indexOf("actionGoTo:")?e.F.gotoPage(jQuery(this).data("link").substr(11)):jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));e.F.Xd="up";c.preventDefault();c.stopImmediatePropagation();return !1;})):null!=t&&0<t.length?(q.data("hoversrc",t),q.data("imagesrc",p),q.bind("mouseover",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("hoversrc"));}),q.bind("mouseout",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("imagesrc"));}),e.F.Rb||h.css({"pointer-events":"auto"})):v&&v.length?q.bind("mousedown touchstart",function(){var c=new Image;c.onload=function(){var c=this.height,d=this.width;c>window.innerHeight&&(d=d/c*window.innerHeight,c=window.innerHeight);d>window.innerWidth&&(c=c/d*window.innerWidth,d=window.innerWidth);jQuery("#modal_image_"+Q(this.src)).length?jQuery("#modal_image_"+Q(this.src)).smodal({minHeight:c,minWidth:d}):(e.F.N.prepend("<div id='modal_image_"+Q(this.src)+"' class='modal-content flowpaper-mark-image-popover' style='overflow:hidden;'><div style='overflow:hidden;'><img src='"+this.src+"' style='width:100%;height:auto;'/></div></div>"),jQuery("#modal_image_"+Q(this.src)).smodal({minHeight:c,minWidth:d,appendTo:e.F.N}));};c.src=v;}):e.F.Rb||h.css({"pointer-events":"none"})):(h=jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g),h.css({left:q+"px",top:f+"px",width:k+"px",height:l+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:k+"px",height:l+"px"}));}"iframe"==e.F.U[e.pageNumber][g].type&&(t=e.F.U[e.pageNumber][g].Ji*c,h=e.F.U[e.pageNumber][g].Ki*c,q=e.F.U[e.pageNumber][g].width*c,r=e.F.U[e.pageNumber][g].height*c,f=e.F.U[e.pageNumber][g].src,FLOWPAPER.authenticated&&(f=FLOWPAPER.appendUrlParameter(f,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g).length?(p=q-10,50<p&&(p=50),50>q&&(p=q-10),50>r&&(p=r-10),f=jQuery(String.format("<div id='flowpaper_mark_frame_{4}_{5}' class='flowpaper_mark_frame flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/><div id='flowpaper_mark_frame_{4}_{5}_play' style='position:absolute;top:{9}px;left:{8}px;'></div></div>",t,h,q,r,e.pageNumber,g,f,d,q/2-p/3,r/2-p)),q=e.xa,0==jQuery(q).length&&(q=e.Dc),q=jQuery(q).append(f).find("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").Ad(p,"#AAAAAA",!0),q.data("url",e.F.U[e.pageNumber][g].url),q.data("maximizeframe",e.F.U[e.pageNumber][g].Lo),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").bind("mouseup touchend",function(c){if(e.pages.Oe||e.pages.animating){return !1;}var d=jQuery(this).parent().data("url"),g="true"==jQuery(this).parent().data("maximizeframe");-1<d.indexOf("http")&&(d=d.substr(d.indexOf("//")+2));g?(e.F.vl=jQuery(String.format('<div class="flowpaper_mark_frame_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.vl),jQuery(e.F.vl).html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),d,-1<location.href.indexOf("https:")?"https":"http")),d=jQuery(String.format('<img class="flowpaper_mark_frame_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.og)),e.F.N.append(d),jQuery(d).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_frame_maximized").remove();jQuery(".flowpaper_mark_frame_maximized_closebutton").remove();})):jQuery(this).parent().html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",jQuery(this).parent().width(),jQuery(this).parent().height(),d,-1<location.href.indexOf("https:")?"https":"http"));e.F.Xd="up";c.preventDefault();c.stopImmediatePropagation();return !1;})):(f=jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),f.css({left:t+"px",top:h+"px",width:q+"px",height:r+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:q+"px",height:r+"px"}),h=f.find("iframe"),0<h.length&&(h.attr("width",q),h.attr("height",r))));}}},dispose:function(){jQuery(this.xa).find("*").unbind();jQuery(this).unbind();jQuery(this.W).unbind();delete this.W;this.W=null;jQuery(this.xa).find("*").remove();this.selectors=this.pages=this.F=this.L=null;},rotate:function(){this.rotation&&360!=this.rotation||(this.rotation=0);this.rotation=this.rotation+90;360==this.rotation&&(this.rotation=0);var c=this.dc();if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.Qa(),90==this.rotation?(this.M(this.T).transition({rotate:this.rotation},0),jQuery(this.pa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):270==this.rotation?(jQuery(this.pa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),this.M(this.T).transition({rotate:this.rotation},0),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):180==this.rotation?(jQuery(this.pa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),this.M(this.T).transition({rotate:this.rotation},0),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):(jQuery(this.pa).css("transform",""),jQuery(this.Bb).css({"z-index":"","margin-left":0}),this.M(this.T).css("transform",""),jQuery(this.Bb).css("transform",""));}},ae:function(c,d,e,g,h,f,k){var l=this,n=l.pageNumber+(d?d:0),p=new jQuery.Deferred;if(!l.F.renderer.qa){return p.resolve(),p;}l.pages.animating&&(window.clearTimeout(l.qj),l.qj=setTimeout(function(){l.ae(c,d,e,g,h,f,k);},50));k||l.ad();var r=l.F.renderer;"SinglePage"==l.H&&(n=l.pages.R);l.F.config.document.RTLMode&&(n=l.pages.getTotalPages()-n-1);r.S[n]&&r.S[n].loaded&&(1==jQuery(c).data("needs-overlay")||f)?(jQuery(c).data("needs-overlay",jQuery(c).data("needs-overlay")-1),l.Fo(d,function(){l.Ho=!0;var d=r.S[n].text,f=c.getContext("2d"),m=(e?e:c.width)/(r.S[0]?r.S[0].width:r.S[n].width),k=!0;g||(g=0,k=!1);h||(h=0,k=!1);f.setTransform(1,0,0,1,g,h);f.save();f.scale(m,m);for(var A=0;A<d.length;A++){var w=d[A],x=w[1],D=w[0]+w[10]*w[3],B=w[9],K=w[2],C=w[3],E=w[7],F=w[8],z=w[6],y=w[11],w=w[12],G=E&&0==E.indexOf("(bold)"),H=E&&0==E.indexOf("(italic)");E&&(E=E.replace("(bold) ",""),E=E.replace("(italic) ",""),f.font=(H?"italic ":"")+(G?"bold ":"")+Math.abs(C)+"px "+E+", "+F);if("object"==typeof z&&z.length&&6==z.length){var J,E=z[1],F=z[2],G=z[3],H=z[4],C=z[5];"axial"===z[0]?J=f.createLinearGradient(E[0],E[1],F[0],F[1]):"radial"===z[0]&&(J=f.createRadialGradient(E[0],E[1],G,F[0],F[1],H));z=0;for(E=C.length;z<E;++z){F=C[z],J.addColorStop(F[0],F[1]);}f.fillStyle=J;}else{f.fillStyle=z;}0!=y&&(f.save(),f.translate(x,D),f.rotate(y));if(w){for(z=0;z<w.length;z++){C=w[z],0==y?k&&(0>g+(x+C[0]*B+K)*m||g+(x+C[0]*B)*m>c.width)||f.fillText(C[1],x+C[0]*B,D):f.fillText(C[1],C[0]*Math.abs(B),0);}}0!=y&&f.restore();}f.restore();if($(c).hasClass("flowpaper_glyphcanvas")&&(d=l.pageNumber,l.F.U[d])){f.save();f.globalCompositeOperation="destination-out";f.beginPath();k=eb.platform.Xa;k=jQuery(l.T).get(0).getBoundingClientRect().width/(l.se()*l.Aa)*k;for(z=0;z<l.F.U[d].length;z++){"video"!=l.F.U[d][z].type&&"audio"!=l.F.U[d][z].type||f.rect(l.F.U[d][z].Qh*k,l.F.U[d][z].Rh*k,l.F.U[d][z].width*k,l.F.U[d][z].height*k),"image"==l.F.U[d][z].type&&f.rect(l.F.U[d][z].uh*k,l.F.U[d][z].vh*k,l.F.U[d][z].width*k,l.F.U[d][z].height*k);}f.closePath();f.fill();f.restore();}jQuery(c).data("overlay-scale",m);p.resolve(c);l.Qb();})):(r.S[n].loaded?p.resolve(c):(l.Ho=!1,c.width=100,p.reject()),l.Qb());return p;},Fo:function(c,d){var e=new jQuery.Deferred,g=this.F.renderer;g.mh||(g.mh={});g.Vc||(g.Vc={});var h=[],f=!1,k=this.pageNumber;this.F.config.document.RTLMode&&(k=this.pages.getTotalPages()-k-1);for(var k=g.Nf(k),l=k-10;l<k;l++){var n=this.F.config.document.RTLMode?this.pages.getTotalPages()-l-1:l;g.S[n]&&g.S[n].fonts&&0<g.S[n].fonts.length&&(f=!0);}if(!eb.browser.msie&&!eb.browser.Zf||f){if(l=this.pageNumber+(c?c:0),this.F.config.document.RTLMode&&(l=this.pages.getTotalPages()-l-1),n=g.S[l].text,f){for(l=k-(10<k?11:10);l<k;l++){if(n=this.F.config.document.RTLMode?this.pages.getTotalPages()-l-1:l,g.S[n]&&g.S[n].fonts&&0<g.S[n].fonts.length){for(f=0;f<g.S[n].fonts.length;f++){g.Vc[g.S[n].fonts[f].name]||(ha(g.S[n].fonts[f].name,g.S[n].fonts[f].data),h.push(g.S[n].fonts[f].name));}}}}else{if(n&&0<n.length){for(k=0;k<n.length;k++){n[k][7]&&!g.Vc[n[k][7]]&&-1==h.indexOf(n[k][7])&&0==n[k][7].indexOf("g_font")&&n[k][7]&&h.push(n[k][7]);}}}}else{for(f=this.pages.getTotalPages(),l=0;l<f;l++){if(k=g.S[l],k.loaded){for(n=k.text,k=0;k<n.length;k++){n[k][7]&&!g.Vc[n[k][7]]&&-1==h.indexOf(n[k][7])&&0==n[k][7].indexOf("g_font")&&n[k][7]&&h.push(n[k][7]);}}}}0<h.length?(f=h.join(" "),g.mh[f]?g.mh[f].then(function(){e.resolve();}):(g.mh[f]=e,WebFont.load({custom:{families:h},inactive:function(){e.resolve();},fontactive:function(c){g.Vc[c]="loaded";},fontinactive:function(c){g.Vc[c]="inactive";},active:function(){e.resolve();},timeout:eb.browser.msie||eb.browser.Zf?5000:25000})),e.then(function(){d&&d();})):(e.resolve(),d&&d());return e;}};return f;}();function ya(f,c){this.F=this.O=f;this.L=this.F.L;this.resources=this.F.resources;this.P=this.F.P;this.document=c;this.Ff=null;this.Pa="toolbar_"+this.F.P;this.K="#"+this.Pa;this.vk=this.Pa+"_bttnPrintdialogPrint";this.ki=this.Pa+"_bttnPrintdialogCancel";this.sk=this.Pa+"_bttnPrintDialog_RangeAll";this.tk=this.Pa+"_bttnPrintDialog_RangeCurrent";this.uk=this.Pa+"_bttnPrintDialog_RangeSpecific";this.hi=this.Pa+"_bttnPrintDialogRangeText";this.ml=this.Pa+"_labelPrintProgress";this.vg=null;this.create=function(){var c=this;c.cm="";if(eb.platform.touchonlydevice||c.vg){c.vg||(e=c.resources.sa.Fq,jQuery(c.K).html(""+(c.F.config.document.ViewModeToolsVisible?(eb.platform.lb?"":String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_singlepage {1} flowpaper_bttnSinglePage' style='margin-left:15px;'>",c.resources.sa.Uq,"Portrait"==c.F.sb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode  flowpaper_twopage {1} flowpaper_bttnTwoPage'>",c.resources.sa.cr,"TwoPage"==c.F.sb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_thumbview flowpaper_bttnThumbView'>",c.resources.sa.ar))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth'>",c.resources.sa.Hq))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode fitheight flowpaper_bttnFitHeight'>",c.resources.sa.Qq))+"":"")+(c.F.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:5px;' />",c.resources.sa.fr)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:-1px;' />",c.resources.sa.gr)+(eb.platform.lb?"":String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullScreen' src='{0}' style='margin-left:-1px;' />",c.resources.sa.Jq))+"":"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:15px;'/>",c.resources.sa.vq)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:70px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel_large flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}'  class='flowpaper_tbbutton_large flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.sa.wq)+"":"")+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_txtSearch' style='margin-left:15px;width:130px;' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton_large flowpaper_bttnFind' style=''/>",c.resources.sa.Gq)+"":"")),jQuery(c.K).addClass("flowpaper_toolbarios"));}else{var e=c.resources.sa.Gm,g=String.format("<div class='flowpaper_floatright flowpaper_bttnPercent' sbttnPrintIdtyle='text-align:center;padding-top:5px;background-repeat:no-repeat;width:20px;height:20px;font-size:9px;font-family:Arial;background-image:url({0})'><div id='lblPercent'></div></div>",c.resources.sa.Vm);eb.browser.msie&&addCSSRule(".flowpaper_tbtextinput","height","18px");jQuery(c.K).html(""+(c.F.config.document.ViewModeToolsVisible?String.format("<img src='{1}' class='flowpaper_bttnSinglePage flowpaper_tbbutton flowpaper_viewmode flowpaper_singlepage {0}' />","Portrait"==c.F.sb?"flowpaper_tbbutton_pressed":"",c.resources.sa.Um)+String.format("<img src='{1}' class='flowpaper_bttnTwoPage flowpaper_tbbutton flowpaper_viewmode flowpaper_twopage {0}' />","TwoPage"==c.F.sb?"flowpaper_tbbutton_pressed":"",c.resources.sa.Xm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_thumbview flowpaper_viewmode flowpaper_bttnThumbView' />",c.resources.sa.Wm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth' />",c.resources.sa.Rm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitheight flowpaper_bttnFitHeight'/>",c.resources.sa.Qm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnRotate'/>",c.resources.sa.Tm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_slider flowpaper_zoomSlider' style='{0}'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?c.cm:"")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img class='flowpaper_tbbutton flowpaper_bttnFullScreen' src='{0}' />",c.resources.sa.Jm)+String.format("<img src='{0}' class='flowpaper_tbseparator' style='margin-left:5px' />",e):"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",c.resources.sa.Dm)+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.sa.Em)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+""+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:70px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",c.resources.sa.Im)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+g);jQuery(c.K).addClass("flowpaper_toolbarstd");}jQuery(c.L).bind("onDocumentLoaded",function(){jQuery(c.K).find(".flowpaper_bttnPercent").hide();});};this.pl=function(c){c=this.Ka=c.split("\n");jQuery(this.K).find(".flowpaper_bttnPrint").attr("title",this.la(c,"Print"));jQuery(this.K).find(".flowpaper_bttnSinglePage").attr("title",this.la(c,"SinglePage"));jQuery(this.K).find(".flowpaper_bttnTwoPage, .flowpaper_bttnBookView").attr("title",this.la(c,"TwoPage"));jQuery(this.K).find(".flowpaper_bttnThumbView").attr("title",this.la(c,"ThumbView"));jQuery(this.K).find(".flowpaper_bttnFitWidth").attr("title",this.la(c,"FitWidth"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.la(c,"FitHeight"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.la(c,"FitPage"));jQuery(this.K).find(".flowpaper_zoomSlider").attr("title",this.la(c,"Scale"));jQuery(this.K).find(".flowpaper_txtZoomFactor").attr("title",this.la(c,"Scale"));jQuery(this.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").attr("title",this.la(c,"Fullscreen"));jQuery(this.K).find(".flowpaper_bttnPrevPage").attr("title",this.la(c,"PreviousPage"));jQuery(this.K).find(".flowpaper_txtPageNumber").attr("title",this.la(c,"CurrentPage"));jQuery(this.K).find(".flowpaper_bttnPrevNext").attr("title",this.la(c,"NextPage"));jQuery(this.K).find(".flowpaper_bttnDownload").attr("title",this.la(c,"Download"));jQuery(this.K).find(".flowpaper_txtSearch, .flowpaper_bttnTextSearch").attr("title",this.la(c,"Search"));jQuery(this.K).find(".flowpaper_bttnFind").attr("title",this.la(c,"Search"));var e=this.F.Xj&&0<this.F.Xj.length?this.F.Xj:this.F.N;e.find(".flowpaper_bttnHighlight").find(".flowpaper_tbtextbutton").html(this.la(c,"Highlight","Highlight"));e.find(".flowpaper_bttnComment").find(".flowpaper_tbtextbutton").html(this.la(c,"Comment","Comment"));e.find(".flowpaper_bttnStrikeout").find(".flowpaper_tbtextbutton").html(this.la(c,"Strikeout","Strikeout"));e.find(".flowpaper_bttnDraw").find(".flowpaper_tbtextbutton").html(this.la(c,"Draw","Draw"));e.find(".flowpaper_bttnDelete").find(".flowpaper_tbtextbutton").html(this.la(c,"Delete","Delete"));e.find(".flowpaper_bttnShowHide").find(".flowpaper_tbtextbutton").html(this.la(c,"ShowAnnotations","Show Annotations"));};this.la=function(c,e,g){if(c){for(var h=0;h<c.length;h++){var f=c[h].split("=");if(f[0]==e){return f[1];}}}return g?g:null;};this.bindEvents=function(){var c=this;jQuery(c.K).find(".flowpaper_tbbutton_large, .flowpaper_tbbutton").each(function(){jQuery(this).data("minscreenwidth")&&parseInt(jQuery(this).data("minscreenwidth"))>window.innerWidth&&jQuery(this).hide();});if(0==c.F.N.find(".flowpaper_printdialog").length){var e=c.la(c.Ka,"Enterpagenumbers","Enter page numbers and/or page ranges separated by commas. For example 1,3,5-12");c.F.Rb?c.F.N.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:205px;padding-bottom:20px;'>It's not possible to print from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='"+c.ki+"'>OK</a></div></div>"):c.F.N.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><b>"+c.la(c.Ka,"Selectprintrange","Select print range")+"</b></font><div style='width:98%;padding-top:5px;padding-left:5px;background-color:#ffffff;'><table border='0' style='margin-bottom:10px;'><tr><td><input type='radio' name='PrintRange' checked='checked' id='"+c.sk+"'/></td><td>"+c.la(c.Ka,"All","All")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.tk+"'/></td><td>"+c.la(c.Ka,"CurrentPage","Current Page")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.uk+"'/></td><td>"+c.la(c.Ka,"Pages","Pages")+"</td><td><input type='text' style='width:120px' id='"+c.hi+"' /><td></tr><tr><td colspan='3'>"+e+"</td></tr></table><a id='"+c.vk+"' class='flowpaper_printdialog_button'>"+c.la(c.Ka,"Print","Print")+"</a>&nbsp;&nbsp;<a class='flowpaper_printdialog_button' id='"+c.ki+"'>"+c.la(c.Ka,"Cancel","Cancel")+"</a><span id='"+c.ml+"' style='padding-left:5px;'></span><div style='height:5px;display:block;margin-top:5px;'>&nbsp;</div></div></div>");}jQuery("input:radio[name=PrintRange]:nth(0)").attr("checked",!0);c.F.config.Toolbar?(jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click touchstart",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return !1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click touchstart",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;})):(jQuery(c.K).find(".flowpaper_bttnFitWidth").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitwidth(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Width"));}),jQuery(c.K).find(".flowpaper_bttnFitHeight").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitheight(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Height"));}),jQuery(c.K).find(".flowpaper_bttnTwoPage").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||("BookView"==c.F.sb?c.F.switchMode("BookView"):c.F.switchMode("TwoPage"));}),jQuery(c.K).find(".flowpaper_bttnSinglePage").bind("click touchstart",function(){c.F.config.document.TouchInitViewMode&&"SinglePage"!=!c.F.config.document.TouchInitViewMode||!eb.platform.touchonlydevice?c.F.switchMode("Portrait",c.F.getCurrPage()-1):c.F.switchMode("SinglePage",c.F.getCurrPage());}),jQuery(c.K).find(".flowpaper_bttnThumbView").bind("click touchstart",function(){c.F.switchMode("Tile");}),jQuery(c.K).find(".flowpaper_bttnPrint").bind("click touchstart",function(){eb.platform.touchonlydevice?c.F.printPaper("current"):(jQuery("#modal-print").css("background-color","#dedede"),c.F.oj=jQuery("#modal-print").smodal({minHeight:255,appendTo:c.F.N}),jQuery("#modal-print").parent().css("background-color","#dedede"));}),jQuery(c.K).find(".flowpaper_bttnDownload").bind("click touchstart",function(){if(window.zine){var e=FLOWPAPER.Oj(c.document.PDFFile,c.F.getCurrPage());FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams()));var h=[],f=e.split("?")[0];h.push({download:e,filename:f.split("/").pop()});0<c.document.PDFFile.indexOf("[*,")&&-1==c.document.PDFFile.indexOf("[*,2,true]")&&1<c.F.getTotalPages()&&1<c.F.getCurrPage()&&(e=FLOWPAPER.Oj(c.document.PDFFile,c.F.getCurrPage()-1),f=e.split("?")[0],h.push({download:f,filename:f.split("/").pop()}));ia(h);jQuery(c.F).trigger("onDownloadDocument",e);}else{e=FLOWPAPER.Oj(c.document.PDFFile,c.F.getCurrPage()),FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams())),window.open(e,"windowname4",null);}return !1;}),jQuery(c.K).find(".flowpaper_bttnOutline").bind("click touchstart",function(){c.F.expandOutline();}),jQuery(c.K).find(".flowpaper_bttnPrevPage").bind("click touchstart",function(){c.F.previous();return !1;}),jQuery(c.K).find(".flowpaper_bttnPrevNext").bind("click touchstart",function(){c.F.next();return !1;}),jQuery(c.K).find(".flowpaper_bttnZoomIn").bind("click touchstart",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.xe():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomIn();}),jQuery(c.K).find(".flowpaper_bttnZoomOut").bind("click touchstart",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.sd():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomOut();}),jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click touchstart",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return jQuery(c.K).find(".flowpaper_txtZoomFactor").focus(),!1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").bind("click touchstart",function(){c.F.openFullScreen();}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click touchstart",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnTextSelect").bind("click touchstart",function(){c.F.Je="flowpaper_selected_default";jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("TextSelectorCursor");}),jQuery(c.K).find(".flowpaper_bttnHand").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("ArrowCursor");}),jQuery(c.K).find(".flowpaper_bttnRotate").bind("click touchstart",function(){c.F.rotate();}));jQuery("#"+c.hi).bind("keydown",function(){jQuery(this).focus();});jQuery(c.K).find(".flowpaper_currPageNum, .flowpaper_txtPageNumber").bind("keydown",function(e){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){if("13"!=e.keyCode){return;}c.gotoPage(this);}return !1;});c.F.N.find(".flowpaper_txtSearch").bind("keydown",function(e){if("13"==e.keyCode){return c.searchText(c.F.N.find(".flowpaper_txtSearch").val()),!1;}});jQuery(c.K).bind("onZoomFactorChanged",function(e,h){var f=Math.round(h.Kf/c.F.document.MaxZoomSize*100*c.F.document.MaxZoomSize)+"%";jQuery(c.K).find(".flowpaper_txtZoomFactor").val(f);c.Kf!=h.Kf&&(c.Kf=h.Kf,jQuery(c.F).trigger("onScaleChanged",h.Kf));});jQuery(c.L).bind("onDocumentLoaded",function(e,h){2>h?jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnTwoPage").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onCursorChanged",function(e,h){"TextSelectorCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed"));"ArrowCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed"));});jQuery(c.K).bind("onFitModeChanged",function(e,h){jQuery(".flowpaper_fitmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});"FitHeight"==h&&jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_pressed");"FitWidth"==h&&jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_pressed");});jQuery(c.K).bind("onProgressChanged",function(e,h){jQuery("#lblPercent").html(100*h);1==h&&jQuery(c.K).find(".flowpaper_bttnPercent").hide();});jQuery(c.K).bind("onViewModeChanged",function(e,h){jQuery(c.L).trigger("onViewModeChanged",h);jQuery(".flowpaper_viewmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});if("Portrait"==c.F.H||"SinglePage"==c.F.H){jQuery(c.K).find(".flowpaper_bttnSinglePage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.Fc&&c.F.toolbar.Fc.enable();}if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){jQuery(c.K).find(".flowpaper_bttnBookView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),eb.platform.touchdevice&&(jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar.Fc&&c.F.toolbar.Fc.disable()),eb.platform.touchdevice||eb.browser.msie||(jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar.Fc&&c.F.toolbar.Fc.enable());}"ThumbView"==c.F.H&&(jQuery(c.K).find(".flowpaper_bttnThumbView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.Fc&&c.F.toolbar.Fc.disable());});jQuery(c.K).bind("onFullscreenChanged",function(e,h){h?jQuery(c.K).find(".flowpaper_bttnFullscreen").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnFullscreen").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onScaleChanged",function(e,h){jQuery(c.L).trigger("onScaleChanged",h);c.Fc&&c.Fc.setValue(h,!0);});jQuery("#"+c.ki).bind("click touchstart",function(e){jQuery.smodal.close();e.stopImmediatePropagation();c.F.oj=null;return !1;});jQuery("#"+c.vk).bind("click touchstart",function(){var e="";jQuery("#"+c.sk).is(":checked")&&(c.F.printPaper("all"),e="1-"+c.F.renderer.getNumPages());jQuery("#"+c.tk).is(":checked")&&(c.F.printPaper("current"),e=jQuery(c.K).find(".flowpaper_txtPageNumber").val());jQuery("#"+c.uk).is(":checked")&&(e=jQuery("#"+c.hi).val(),c.F.printPaper(e));jQuery(this).html("Please wait");window.onPrintRenderingProgress=function(e){jQuery("#"+c.ml).html("Processing page:"+e);};window.onPrintRenderingCompleted=function(){jQuery.smodal.close();c.F.oj=null;c.L.trigger("onDocumentPrinted",e);};return !1;});c.lq();};this.kk=function(c,e){var g=this;if(0!=jQuery(g.K).find(".flowpaper_zoomSlider").length&&null==g.Fc){g=this;this.Xf=c;this.Wf=e;if(window.zine){var h={Pe:0,Xb:g.F.L.width()/2,sc:g.F.L.height()/2};g.Fc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.ib(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.ib(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.ib(g.F.document.MaxZoomSize,h);},animation_callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.ib(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.ib(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.ib(g.F.document.MaxZoomSize,h);},snapping:!1});}else{jQuery(g.K).find(".flowpaper_zoomSlider > *").bind("mousedown",function(){jQuery(g.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_pressed");jQuery(g.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_pressed");}),g.Fc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.Xd||(c*g.F.document.MaxZoomSize>=g.Xf&&c<=g.Wf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Xf?g.F.ib(g.Xf):c>g.Wf&&g.F.ib(g.Wf));},animation_callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.Xd||(c*g.F.document.MaxZoomSize>=g.Xf&&c<=g.Wf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Xf?g.F.ib(g.Xf):c>g.Wf&&g.F.ib(g.Wf));},snapping:!1});}jQuery(g.K).find(".flowpaper_txtZoomFactor").bind("keypress",function(c){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")&&13==c.keyCode){try{var d={Pe:0,Xb:g.F.L.width()/2,sc:g.F.L.height()/2},e=jQuery(g.K).find(".flowpaper_txtZoomFactor").val().replace("%","")/100;g.F.Zoom(e,d);}catch(h){}return !1;}});}};this.mq=function(c){jQuery(c).val()>this.document.numPages&&jQuery(c).val(this.document.numPages);(1>jQuery(c).val()||isNaN(jQuery(c).val()))&&jQuery(c).val(1);};this.kq=function(c){this.document.RTLMode?(c=this.O.getTotalPages()-c+1,1>c&&(c=1),"TwoPage"==this.F.H?"1"==c?jQuery(this.K).find(".flowpaper_txtPageNumber").val("1-2"):parseInt(c)<=this.document.numPages&&0==this.document.numPages%2||parseInt(c)<this.document.numPages&&0!=this.document.numPages%2?jQuery(this.K).find(".flowpaper_txtPageNumber").val(c+1+"-"+c):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.document.numPages):"BookView"==this.F.H||"FlipView"==this.F.H?"1"!=c||eb.platform.iphone?!(parseInt(c)+1<=this.document.numPages)||this.F.I&&this.F.I.ka?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&--c,jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,1<parseInt(c)?c+1+"-"+c:c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,c))):"TwoPage"==this.F.H?"1"==c?jQuery(this.K).find(".flowpaper_txtPageNumber").val("1-2"):parseInt(c)<=this.document.numPages&&0==this.document.numPages%2||parseInt(c)<this.document.numPages&&0!=this.document.numPages%2?jQuery(this.K).find(".flowpaper_txtPageNumber").val(c+"-"+(c+1)):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.document.numPages):"BookView"==this.F.H||"FlipView"==this.F.H?"1"!=c||eb.platform.iphone?!(parseInt(c)+1<=this.document.numPages)||this.F.I&&this.F.I.ka?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&(c=c-1),jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,1<parseInt(c)?c+"-"+(c+1):c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Cd(c,c));};this.sp=function(c){if(this.F.labels){for(var e=this.F.labels.children(),g=0;g<e.length;g++){if(e[g].getAttribute("title")==c){return parseInt(e[g].getAttribute("pageNumber"));}}}return null;};this.Cd=function(c,e,g){0==c&&(c=1);if(this.F.labels){var h=this.F.labels.children();h.length>parseInt(c)-1&&(e=h[parseInt(c-1)].getAttribute("title"),isNaN(e)?e=ma(h[parseInt(c)-1].getAttribute("title")):!("FlipView"==this.F.H&&1<parseInt(e)&&parseInt(e)+1<=this.document.numPages)||this.F.I&&this.F.I.ka||g||(0!=parseInt(e)%2&&(e=parseInt(e)-1),e=e+"-"+(parseInt(e)+1)));}return e;};this.lq=function(){this.vg?jQuery(this.vg.La).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages):jQuery(this.K).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages);};this.gotoPage=function(c){var e=this.sp(jQuery(c).val());e?this.F.gotoPage(e):0<=jQuery(c).val().indexOf("-")&&"TwoPage"==this.F.H?(c=jQuery(c).val().split("-"),isNaN(c[0])||isNaN(c[1])||(0==parseInt(c[0])%2?this.F.gotoPage(parseInt(c[0])-1):this.F.gotoPage(parseInt(c[0])))):isNaN(jQuery(c).val())||(this.mq(c),this.F.gotoPage(jQuery(c).val()));};this.searchText=function(c){this.F.searchText(c);};}window.addCSSRule=function(f,c,d){for(var e=null,g=0;g<document.styleSheets.length;g++){try{var h=document.styleSheets[g],m=h.cssRules||h.rules,k=f.toLowerCase();if(null!=m){null==e&&(e=document.styleSheets[g]);for(var l=0,n=m.length;l<n;l++){if(m[l].selectorText&&m[l].selectorText.toLowerCase()==k){if(null!=d){m[l].style[c]=d;return;}h.deleteRule?h.deleteRule(l):h.removeRule?h.removeRule(l):m[l].style.cssText="";}}}}catch(p){}}h=e||{};h.insertRule?(m=h.cssRules||h.rules,h.insertRule(f+"{ "+c+":"+d+"; }",m.length)):h.addRule&&h.addRule(f,c+":"+d+";",0);};window.FlowPaperViewer_Zine=function(f,c,d){this.F=c;this.L=d;this.toolbar=f;this.Z="FlipView";this.pn=this.toolbar.Pa+"_barSearchTools";this.un=this.toolbar.Pa+"_bttnMoreTools";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.ii="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgchEmOlRoEAAAFUSURBVDjLrZS9SgNREIW/m531JyGbQFAQJE+w4EuYWvQd7C0sAjYpfQcfwsJSXyJgbZFKEhTUuIZkd8Yimx/Dboyytzz345yZuZdxF2x0SpthiBbsZ3/gXnofuYBXbjZSrtevHeRycfQ0bIIo76+HlZ08zDSoPgcBYgz2Ai/t+mYZOQfAbXnJoIoYVFzmcGaiq0SGKL6XPcO56vmKGNgvnGFTztZzTDlNsltdyGqIEec88UKODdEfATm5irBJLoihClTaIaerfrc8Xn/O60OBdgjKyapn2L6a95soEJJdZ6hAYkjMyE+1u6wqv4BRXPB/to25onP/43e8evmw5Jd+vm6Oz1Q3ExAHdDpHOO6XkRbQ7ThAQIxdczC8zDBrpallw53h9731PST7E0pmWsetoRx1NRNjUi6/jfL3i1+zCASI/MZ2LqeTaDKb33hc2J4sep9+A+KGjvNJJ1I+AAAAAElFTkSuQmCC";this.ji="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggFBG3FVUsAAAFTSURBVDjLrZQxSwNBEIXfbuaSUxKUNDYKRmJhZXMIgv/FIm0K/0kau/wdqxQeaGEQksJW0CJ4SC6ZZ5G9eIZbc8pdOfftm/d2ljE3KPXZchhEK9bjH7jX+8TfsH7addzLRA683HI+ZhcQxdukUQ+8nIbhdL8NIR6D0DqXd3niCgBgxOr4EkKwYQrDZEXTmBGiqBVjaw6mpqu8xXet+SPC3EGPnuO4lSMhhHpG/F1WQrRMX4UA3KpHwJJKks1hHG8YJeN42CRJJbO8gwggzjc1o0HvZ94IxT4jurwLpDVXeyhymQJIFxW/Z5bmqu77H72zzZ9POT03rJFHZ+RGKG4l9G8v8gKZ/KjvloYQO0sAs+sCscxISAhw8my8DlddO4Alw441vyQ1ONwlhUjbremHf7/I0V4CCIAkOG6teyxSAlYCAAgMkHyaJLu/Od6r2pNV79MvlFCWQTKpHw8AAAAASUVORK5CYII%3D";this.ci="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcmKZ3vOWIAAAG3SURBVDjLrZS9bhNBFIW/uzOLwVacSIYCCUVCyivwAkgGJ31cpMwT8A6UlKnSpKTgARBPkCK8QZCIlAqRBPGXxbF37qFYO8aWNk6QVyvNnNlP52juzlx7xa2e7HYY0ZfspztwF6e/aoHQXO+MudOvq49rubL4/HsdovPz25PW/TpM3l750m4Txdmjdqjftd0L6WyFKGjZjcWxViGikwcHE/0eMmHsHiBMxod3mCDkTiYhdyXf7h0PDYDK3YbHvW1PchfSmEve3zzfvwQz8Gq43D/f7Hu65jyllHa2OLpqgASpGhpXR2ztpJSSS1GUDrvPP318nyJYlWtAvHj7/Vk3HEApMnfcvXuydxg3AkjIhQRhIx7unXTdHfcInoCnb/IMZIAlA1B4jY8iCRyicAeFMC3YtJpZAzm4iKrWZTI0w8mQqfpKFGn+b/i8SiKWDPI57s+8GpRLPs+acPbPO9XYWOuuuZN000SZZnKv/QyrMmxm9p/7WMxBNHg5cyFezCiIEMUD2QK3psjg4aJW5B3IJF/jJkNjrTr3o2bzx6C+v+SrKiACRd5p1IeOitGkfsPh0vrksvvpX4Z15Dxt627DAAAAAElFTkSuQmCC";this.Tg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfBarvnwYAAAG+SURBVDjLrZQ/axRRFMV/9+2bnUkgKGlsFIxEECWfwMaPIJhqk0+QbUxlkyqdrWBrp/gZ0sTGVgJptkkKmyASLRaHdWf2Hou3f9yVzSaylwf33XmHe+47vDn2kmtFuB6M6Evupxvgvn8p5xM2H24OcV/P4p25uEG/o02Izo+zvJnNxXlRnN9eJ0inWRE1NywWqx0pCuV25WUs74roNEwQnHYLD8J4+hlhHvjwluBgDSdI4E7te62TXlIzSR96J609r3EHKUhIGqi9c3HYBTNQSt3Di522BpISTpK0v8txvwAJlFLRP2Z3f3gehTu8en766f2gCZZ4DWh+e3P57EXjNbgI7kja7hwc5VsR0hhIELfyo4POtiTcI8iBRx/zADLA3ADUeIf/znAQROECxTgRbKJmWEECFzHNjUw2AoySIVM6JaZZpkKzlUSsqRozuGq2quolv2eNcPbXmtTYsNZNeUfs6SVqvBvzjvsZljhsavef91iMS5bwZOrz439NI0grC9sVUoAHi6i1AUEqNoJd9Vtyd1WKolpfO/8131/ivVslRKDM7q+NOepKEGIGkBmUPStH+vX5uSyfXLaf/gE6n/uTJg/UHAAAAABJRU5ErkJggg%3D%3D";this.Yg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcnEaz2sL0AAAGlSURBVDjLrZRNjtNAEIW/ssvDkGgyIwUWSGhWHIEj8Cf2bDgFV+AMLGHBCgmJA3ABdpyBkWaFmAHxGyLHrsfC7dgmsQhSvLG763O/qtddbU/Y6cl2w/DY83r6D+7z+Y9RIJ+czhN3/un4xihXLT78PAUPvn+5OT0cwxSzo4+zGS4urs/y8artIK8vjnDB1BrsBZaqMr190w2mC+FB0a5mIgXLswf2eg3mRZBJKJpHhgkz49fzy/uPom7nkfockkASB+V7e/g4epyLqLukaaSKy1dfb9+xl2k6RCZV7X+gBrP8lr97dna3DVSSB3SmmExgkT+1KIsuEDh93eQtQHbYBQJcRPQI9d4WXX6uTnftX+OPOl3hou7nN/hqA7XwimWxsfkYgH6n8bIanGe1NZhpDW87z4YhawgbCgw4WapUqZCOG/aREia03pzUbxoKN3qG0ZeWtval7diXsg2jtnK2aaiD21++oJRnG3BwcbWVuTfWmxORwbV/XUUxh0yKk20F9pI9CcnFajL5thy/X4pjLcCBRTG/Mi66Wqxa/8pyb/fkvu/TP0a/9eMEsgteAAAAAElFTkSuQmCC";this.li="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfGb7uw0kAAAGtSURBVDjLrZS/bhNBEIe/Wc/5DksRKA0NSASFBvEQvAM0IJ4gFfRUtJSJ0tHyEFQU1DQ0bpKCBgkEFBEny2fvj+LW98f2gSN5pdPt7nya2flpZuwlO62wG4bHPfvTNbgfn8vhgOMHx4n7euG3B7nlfKpj8Mivi3ycDXKxKC5vHRKkL1nhGlzmxWQquVBudTKfSBsFvT8nJMksvxIeGSUrpvrDZtPndrZswFEkSBDrJcOEmXH15tuzk7hI9yAFidVTkASSyOcf7cUrdQwu1Ept1Pv8++nPx0/C23QtEaQYO/5r3B+NP7yePm0skkfo+JMJLI7eWZyNW0PEQeslI4AwIcb2wkVUh1Dnv9KLKFxt3FY/TJjauGItX/V2avP1BdWIjQcagKp0rha9em5cmKmBt9WzYchqwvoBepwsZaqUSMv1+0gJE6KbH3W9dALX8QyjG1ra2pe2Y1/KNoTaytmmoN4dCUkXtKZLABc3lun4cKg3CxHg/v9Gh44gSMVRsH9Qxp2J5KI6PLj8Mzxf/O7NEhwos3sHTYxFJQieAWQG5czKlX5zfu9rTu57nv4FFIsPySkiwzoAAAAASUVORK5CYII%3D";this.Zg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcoGry8dfoAAAFASURBVDjLrZRNSgNBEEZfJzUqCZkERhdCCB7GC+jCrXgDb+QRvIBnEQkuxKAQI2NIeqpcTCI9Mp3JQHrzaPj6q5/uLnfPXquznwzRA/tZC93HdBEVdHuTbKObvg/PozqfP39PQJSvz3H/JCYzTQdvaYoYs7O0G6/aHXWL2QAx6LudzXH93BAlKd0eALiroiwlUcTAAjutgWGlbtNDj6D/sVGKoUWQTFEHNcTw21NSRqoCwBuif7tofqC4W16HTZc7HyOGlqceAbiqIsxvj7iGGMV2F+1LYYhnmQR+P3VYeiR8i3Vo9Z4Nd8PLoEm2uAjcnwC4rKJ13PBfel+Dln6hLt4XQ0Bc+BnqIOCumeMaorqUDpw2jSLNoGOmo52GjpGaibHu9ebL+HxJhpaXVeVJdhwPus7X2/6tVgebk4eep79dEZnAuEZ32QAAAABJRU5ErkJggg%3D%3D";this.mi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgggAxtSEA8AAAE0SURBVDjLrZQxT8MwEIW/uJc2VKpAXVhAoqgMbLDyq/iVjAiJgS7twIoEAyJCTerHYNokyGlTVC+fJT/fuzvZl9zTabluMswfOJ720L095u2G/avpr+51bqetutVypimY530+6KetOp9li5MxTnpOM1PrSiwbziQTGiRbi0kGn8I8vSB7AOCuiSDs+VBvrdc+BoQJ1q4lhv6i0qmenaIQJvw6ugWnJgC8MF/5tsbDY6Bw65YINnITPtx6AuCmicpXXXyb9bb2RcJKil4tXhFFidXfYgx7vWfVdNcxVLrN/iWcN7G3b/1flmUE/65jW1+E6zISHJg4Wu3qSyYcXO5KURNwUjZxybZvydlQMlGMR4uv9tzs/DgPVeXpxWjjURYCZylAmkD+neTr/i35ONScPPQ8/QFgdrQzzjNS3QAAAABJRU5ErkJggg%3D%3D";this.$g="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTLyj0mgAyAAAC8ElEQVRIx83Wz2ucZRAH8M+72c2mu91NmibFSEgaGy1SrRdFFFIJ9uDBk6KCN6EHD0qLB8GDFwXrQUEK7UnQP0DwUD23RVS8WG2EKrShDSpNYhLaNJtNNvs+HnbzY7fvLmmo2BneyzPzft+Z9zvPzEQngnsoKfdU0rH7Obrw38DNmbK4A4AOOUP2NsJNmdFtYAdwa0om3Ta0ScUt8wbldd01WBArKrihqLge3ax+RR12wnKkU4eqWYXNZPMiOy+ZSF5JWE82kxhZSqfH7Ddg0YwJ01bbEJIRb0YX7oDLOuo5nZg34HFHXXHeby3/Ye3ZgAtNX3vTiAVfm1SWlnPEU4ad800bWupwsWqT6W0j/vC52KCqorIv/eC4cVdbRBgLSAXBmrhBn/GwaaeMeNaoT72oYtjvPpPxsnSTd03XBEEqFtNgyHgSpzyCX2TRbcpVscvO2ufRRLgaRko92U1NO+hn01ZVZC3h9obtopKxBu91jTcvWdzAa0HkV3s8pMuKI9jtBbuUfWvOPw4lVmi8ldmtDg/gusixDcZGjYKzyspN3gnMVhscFgT9/vajPUqWjPlOTt6CuN4gk+CqNbg1lGW2GK6JjDrvKxNirxtTdFwa9Or1p+UEuLK15G5cNul5ObFRrCCug3FYr3PtmnvzfWDZBWlvmbRbpIeN5ljwGr5veSuC6NXANYUGQ94HBl1wpuG0x0f6RGa9o3wH2KL9rUbPktNWjHvfkF2ysorGndGPoM/Hulu1qlcC15uigwe94QmRvyzggC6RgEgQuewTt5qiG24HR9ZBTzskI+WGn8x5F0GEYMKHCXBtBuOKSy41nLznpKjefw8nlnECs63lipOW6y+uJDKbgrRom3rRaRWR4IsmS60yo5cCN6knsR0pKCqbb8gqiGqDEfrM6Ng23GLCthDbp7L+72I9dxVf81ikRywINWYrcnJuJtT6dnaUjG5BqdY+a4clGXtldwAXqyipNG9Qq22G8v+2Lt7f2+e/O1kvzGyGcjEAAAAASUVORK5CYII%3D";this.ni="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTOjTXLrppAAAC50lEQVRIx83WT2hcVRTH8c+bvMnMxMSkKU2Fqv1DhQ7aItJWRZEgiAUrKqJuXAZRN2ahRRfd+A+6EtFFF4roTrC4K0pBFDQRIsVakSht1FoUUtoG2oyTTPKui3kmmcmbIQ4Vcu/unvu+75z7O/fcE40G13DkXNMRJ9azd+H/wV1wUqWj8LrdYmcj7pyzYps7wC2aNymkwDjBJWcVdMt3gEsUFU0ZMIhcEJyWVxQLHcxIrKjHpCDUgw0KIp2LEim4IvwbbFcmLKfoLmXbzPjDuHPm2gC7JCuVbU7nkic9poBpW93tKT/41LdtfAzLuGbfYm8om/axH1Xk9XnE/XY55sO2uFz2Ab+p7HvP+UKvoiGJIw7p9rh9bYXJBUHSNA/Y47zD9jhg2CeeUXOb0w7p9qz8qv31GQS5RELDHwqG8bJbLRpTQL8zTqk56SNb7M30i0RSLwGN/hXc7mt/mjOvxyyuLtm+cdXBFr4tXbKkQYoBkTGb3Ktozn3o9bySqndN+8vezAxNWim7FWd0GVlSbGd6I9/xt2pGHjQlSmjYcFGwxe/GbVBx0QNOGHSdy4KcXAtcnREvoKZrhWFKZLfPHfWdxEsY8rQF0G/Ir2oZuJqF7Gpc9bOH9UqUMYckhbHfJsfbVb+wyvVZx+UdNul6kQFsTC39RnCi5a0IWTg+M+UeLxgXvKrsQbDRB3pxVKk1LstwxeuqHvK2HXqUlAw46JgbEGz2vg2tKssTgQnFVYabjbpT5DeXsEspLWKRIHLKK2aaTnxfOxxFuw27Q7ec87407QiCCMGE0Qxcm4exasJEw8qI90RpudzfukCtdfzkRZX0w2prKdbeCox5zbxI8FZmOxEHlCyuGfiVRw2ouLDqpANi2OGX9EzWMmaaNK0Hun35VhRtl/sPwOZXjBv1LL+zNYP6TJntqEeJ3aQ/7W/i+mJF3jZ9GUEsqKXa58Qr2o58Gk1FVbTULC3l3Twur7d2cX13n/8ANgFb4QoS+/QAAAAASUVORK5CYII%3D";this.ah="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTMCbeeCOrAAAC4ElEQVRIx83Wz2tcVRQH8M+bzGTixJmkaSNGSmpqtUi1LlREQSXYrRtFXIrgogtFV4ILV11UwYUU6krQP0BwUV23Xai4abQRqlCDDVqa1CS00cmbzMy7LuZHZqZvxnao2Ht4MLxz5vu+937PPedE7wS3cWXc1pVN3Mnswn8Dt2bZ5hAAIwpm7e6GW7ZqwswQcDVlS/4yuyPFdev2Gjd2y2BBoqToipJSi91V00pGDKNyZNSIuquKO5sdFxk+ZSLjykJrs7lUZhmjHnG/GZtWLVqxPUCQnGSHXbgBLu+I541i3YxHHXHRGT/1PcPG04YLPV87as6GLy2JZRU850n7nPbVAFmacIl6j+stc37xqcRedSWxz33rbfN+7cMwEZAJgpqky572oBUnzHlG1oQpVfv97GM5L8v2RDesJgitEpB0ndoTOOEh/KCo4rJ1cMEpL3rYQh9+zRKQqHdY1kHnrNhWlbeprNr2LSh7tiu6ZcnOJUu62BVFfrTLfmMqHZxjX1vzp0OpGZp0KtsZcC8uibzRVixq/jolFvdEpyhb7wrYEEy77Du7mrlOomijfTppcPUGXA2xXIfjN5EDzvjCokRO1ai4WWenTPndVgpcrJZejWNLXlCQONBkst0OO2zK6UHFvfc+sOWsrDctuVskkmmfXdGr+KbvrQhpcJy17HGvOddM8UbEpA8VcKxPXQxCeuv520kV89436y55eSXzPjGNYI8PTPQrVa8ELine4LjP6x4T+cMGHjAmEhAJIhd85HpX/KZ9g+DIO+gph+RkXPG9Ne+2szBYdCwFbkBjrDjvfNeb9xxvyhI5nJrGqVL0Wxcdt9X8Y6W/FFnRTdqCk6oiwWc9nmyD9UuBa7Rz699XUUlsvWtXQdRojLDHqpGbhttMmRYS96i2zi4xeUv8etsik5JGNQ6oKii4Jh5qRsmZEJQb5bPxsixnt/wQcImqsmrvBLU9oCn/b+PinT19/gPF4yPjYMxK2QAAAABJRU5ErkJggg%3D%3D";this.oi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUUAAI4cucMAAAC30lEQVRIx83WT2hcVRTH8c97eTN5E5M2TWkq+Kd/UGjQFpG2KroorgpWVETducpCV2YhRRdd+Qe6EtFFF4rozkVxVxRBFGoiRIpakfinUWtRSGkbrB2nM5l3XeR1kkzejHGokHM3j3fe+3LOPb977okmgutosetqSWY9Rxf+H9x5p1R7Sq/sdretxJ11RmJrD7imuhkhByYZLjqjX1mpB1wmlZo1bARxEJxWkkqEHlYkkRowIwiLyQb9Ir0XJdLvsnAt2b5CWCx1rzHbzfvNlLOudgH2yZZXtl3OFU96TD/mbHOfp3zjA190iTEs4dpjS7xizJz3fauqZMgjHrTLce92xcXFG/yqMV951icGpUZljjqs7HH7uhYmDoKsbR20xzlH7HEQIwY03Om0w8qeUVr1/eIKwrUWsDzZ1AG84A5NkzJ/qmmCU97ztL1OdlBg3gJWxtfvLif97qq6AU1NCy3f5/5yqENsrUOWrYhuWGTSFg9IW9L40Qaj3jTnD3sLFZp1quw2/KTPeKtiUf70hr/VCnTQJpSw4oMLgpv8asomVRdsRnCDS4JY3AG3yEgW0NC3zDErsttHjvlSJlUXW8h9G436WaMA17BQ3I1rvvewQZkx1GQtGPttcaJb9wurQr/ihJIjZmwQicXKrdjG8XHHUxGKcHxo1v2eM5VLqA42e8cgjql0xhU5LntZzUNet9OAiophhxx3I4Kt3rapU2d5IjAtXeW41YR7RH5xEbtU8iYWCSJfe9F8247v64YjtdsBdyuLnfOpOUdbKgymTRTgulyMNdOmV7wZ91Yu6cj+zg1qrfad51XzH2udS7H2UWDSS+oiwWuF40QSUMkb0FrsM48aVnV+1U4HJLDTD61j/u8231bTxUR3LJ2K1A7xfwC232LcbGDpnm0YMWTWlZ5mlMQtNubzTbL4sqpku6GCJBY08trHkmVjRynPpqomag1LLd3VcWm9jYvre/r8BzXJTgadvkYEAAAAAElFTkSuQmCC";this.Vg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqC+Q6N4oAAAF8SURBVDjLrZRBThRREIa/mq5WmJGBZJgFRjFx4cJ4AY/hhgvIAUyUW8DGtV6AAxjvoSsXJqILI2qiSDOZ6a7fxYOB0N1Om8zbvaov/19VqZQ9o9PrdcPwWLKe/oP7cXTSCmT97dE5d/RtfauVK4uPf7bBg98/7wxW2jDFcO3rcIiL4/Ewa+/abmTV8RouGFjAg6ebdej76w9gg0J4kGcB7K6807Uhhd3ffQFkeeACBTB6v1/X23sUgFDi0gwba0xB4SKqFKqauAoghIsyWKBXCo+5dgOn81zgdPEFF7FQL9XXwVe4qBb2UQkvmeQpctZEnQFMyiXvs65w04b89JKbx8YPM7+2ytW47nu487JB8LCm9+rL3VJQygBkDuaf39b04k3HPswg/Pm9U4DBp4OyN9/M5Ot28cHs8a30uW0mIKUcXKzKLlt80uTaFz3YXHSKYgQ9KTawf1DGRkguZv3+r0n7fcnXVYADRT662W46K2YX85tOl3Ynl31P/wJHQa4shXXBLAAAAABJRU5ErkJggg%3D%3D";this.ei="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghCwySqXwAAAGGSURBVDjLrZS/ThRRFMZ/d+YMO26yamgWEzdxFRsbqaTlGXgEnoAHwG20puABaC1MfA5jYWJsaBaNjQUJFIQJ2TtzP4sZdgh7B5dkb3XvmV++b86fHLfPUidZDsPCivX0AO7se9FtuPZ6s+H+TG3YyVWzE22CBc6nvbWskwt5fvp0nUT6meWmzuMs759IJtRzgrfvny2K/f3wA1zvUlggdQIm/a+6U6Tg3kx2AZeGOt8AbHyLdPDoXd0GYYKmhNFKquVU312EczUnYSI02iGmFgCCsLCMb8BaoejkhAY2EZp/VUxNN74PzvceTsJKfFpHfIzyAL5c8TzrFjeLfJ+13Dw23ErvTKuvhou+x3ufIoLHC3qHv8deUAYHoMTAZb++LOhVn5fMI3FQZR9fXQIMpgc+bVsvbL4S6o7vPK5fI1HdXhomHrUByu2YbS4SePm/UmsMiZSPE3cP5Xjel0z49cHpVfd+sdGTAgwosheDuUfpBYllAJmD4toVN/WbcbGqPbnqffoPyHTE/GI3wZEAAAAASUVORK5CYII%3D";this.Xg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqK99UF0IAAAGmSURBVDjLrZTNahRREIW/un3bnx4zCYwuBAk+hb2ZbV7BB3AhZlAQRN9EEBGXQQJBfArXvoCLWYnBgEbGIdNdx0WmTd/uGY0wtbunT9epOrfq2lMuFeFyNKJvOJ/+g/dterqWkBW7oyVv+nX79lpeNfv8cxei8+PkzuBa8s0uipEPt74Mh0RxfGuYdbu+O20Qu5LVx1sEiYF5J/b2WwcbIEUn72Ur759U7VZyJwrkaW3lI07bkNA5r+WhOeUEQiohovA6yTae4KGNgYsoquTf8QQFSLBKRE+x8jFClvJwIolu+QxhoFQXovA/lureCzz0853X12BZPX5OnS2vq99vvcSC3wCTNVIXUYtYMc8b3aPqSXAD8F9t3rzqzPOHl4Rlwr/Ms+B92LcVEy5C+9Iwjt5g9DJKqa6Md28x/+ceyXTAg7BCt4sYB687tqzcS5kOeVjQ97mnweFoL+1aRIjd9kyvPsX24EeI4nrXWZk+JudCBLjpfeksGZcRBMl3+sa2V4Edl6JYFMX3+fr3Jd/WDCIwy0dX1/J8MVs0/p2dbeyd3PR7+hsfn9edOMpPUgAAAABJRU5ErkJggg%3D%3D";this.gi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghLkeWfTsAAAGuSURBVDjLrZQ/axRRFMV/983b7BiMSgptFIxE8GOILkgaaz+Eha2FRfwL8Q9pg2ih6Mewt7FJkyYp7EQwpHCQnZl7LOIu897Okgj7qnl3zpxzz713rj3gVCecDkb0BfPpP3A/v1XzBZeur//Dfd+Pl+bi2vGe1iE6v/aHS4PknXWS8bI8uLBKkHYHZVRyXDfC5NliubwnBUlDU3buPetcbDiWolNY7nl0/0fTTaPwY7+e5jZ6zFFafhEFXbrgjJ5C0CxOnZi1bGziQQlOIgpPNDY28YCSmIvoqe7tJ7jJSHWdSPLtrS3cLLOGIArX1MPN13gQOZ8nfov2zhZNnGQ+36/OQZBNpFK/DXVxfKvtkx6FtgBQ3cXVTTbPn59TuJ00z4KP9jD0AEVaeePDm2mKSYKproy324S2Z/yzTgZ2tilO4gMP7LzM2tHDB268f8XZnG/2/xW8u3g3ZA2OPSvB9OJr4enSiOJMbk+mL0mgFAGu9UgnjrUGQSrXwkxh227tLy9LUdSrKwe/5++XeOV8BRGoBldXphpNLQhxADAwqP5YNZmDMYeL2pOL3qd/AZpy8NOvjvTnAAAAAElFTkSuQmCC";this.Wg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrBRqZK8wAAAE8SURBVDjLrZTNSsRAEIRrfuJPwmYXogdB9mmy7+P7iIgIIoKIL+RhT+Ki4A8hbJIuD+qaSWbWCKnTUPmopjM9rU4wSHoYBisj5/Ef3PPyPQiYeJ59c8un6VGQq4uHjzlgBW8vx8leCKOkk8c0hSVWh6kJd612TLOaQJNIlPzqVLpSCUgtEpm2i7MeaCIRTYIOh/MuR5AeDhd+Tpq2AOCycSWkJmvp5AFXbmBNahH0OVy7nogG+nUB3Dh1AU2KJw+4dTqhJuHlcNfySE02fg73G68hbY0y8t9svjmV9ZZ5zofNs4MxyLlpDNXNh72jLhbIy4e9yz7m7cOTRljAKsdbqH5RwBL7bH9ZeNJiQgMHf60iyb7maga1hVKYCWmJKo5fy/B+iaYsAAugiLLdcNGqqH7+33o92p4ce59+Av+enpsD10kAAAAAAElFTkSuQmCC";this.fi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiBLcA5y4AAAE5SURBVDjLrZS7TsNAEEWPN+vERIpAaWhAIigU7vkwPhIQRDxFkyYpaJGgwkJxmEsRiPzaxEi5lTU6vuNZz97oglZy7TC87dhP/+DeHrJww+7Z+Jd7nfnDIPe9mGoM3nif9bpxkLMkmR8McdJLnHgFFfmkP5WcpF5UqF/Wyd5CcmadIiau6mDHzElgBcG1VQSSkyi9DNxUDVecqhy39XG8sPovnpyXz0Y4s1pf4K5cM3OgykcDcF+sCZxkDX7wWKhZ87wrPW2fd6Xn0rxL8k7zBqTrp3y5YZ/TdvtcwhTkym4K9U3b3aMqFvBL293LOtY4R4ObcLVISBtDw0l72zASycHptujQCJyUjFy0gYo46kte5MPB/DOcL/54PwMPZPHJYN1jmQucjwHiCLKvKPs7vwUfu8rJXefpD93iniqiS4VUAAAAAElFTkSuQmCC";this.Ug="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrJ8/5aigAAAJ5SURBVDjLrZTfSxRRFMe/d+aOq2v7I9fV/JEEYWVaGZrgQ2DYQ0HQW73ZSw+BPgRBUA9FPvUiRC+Bf0AQRBGR1ENEoWgERmhgij/a1owkdXSb3WZnzulhZnZHc8vA83bnfO73fO+dc4+4jC2FsjUMkrZZj/+D+5FYKwiowbqYyyW+R6oKcpYxk6oDJGF1qba0uBDGFA59C4chGYvxsFr41KJItRdDkAyUCgcTjHjTgZpUYvzTLz9ZajAkQcupBc6eBi9V13d+fjjuP4pGkAwwOWqip0l/MqWrFR3tV+6/8HkEQz2KVDE70dM8evvr3ob65YHJ9iOJefYCmR2QDLKdbZ1tk30nLmhiNpr60He1a0LPCRJDMizHXuA47rZdxNSDjwBGn5459CZ/hwyFCERERPH64XQXZm6NkWCiYdFOuQCRhFe3TLyL76Q7GcAGkEg02/m6gGSQU7cCC5oYTLopw2Da4A/OhxVEl3nMS6pSIf/NKMy2Y2Kem5LC8ixV1c7m/dnM0kJGAwDMfTnV/2hX2lVoKX6ezsllLF8/rw2o3ffeB5xF9XkeXd+GjVhxc3Otx4qeOYeM91aKfa+zwoXMqI8T2bGO1sbln4pWefJ6FYvylsFMnhPnMBfyxHd3t4iFJWW/wmABTF1zf93aHqgHoQc8bvXltFldFpp+/KpNQlC8wW0aMwK5vsuHhkoETAt6r2JJPux7v7zhYaYNwwJGbtiqLfL7+Q/OjZGbpsL9eU4CUmwGvr1Uo0+4GQlIRglvCiaTObUgQwHK/zWKKAYozBSF+AslECVmycgGg3qm8HzRImwAEoChxQKFi2aNrDevTHPb5uR2z9PfLQs68f4FXIYAAAAASUVORK5CYII%3D";this.di="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiGzoI6tsAAALsSURBVEjHzdZNaBxlGAfw3+xOspvFYK2WSlvTpih40IJgP9RDIQcFEQLB6kFykUIvUj9zCR4KiiCItCB6UqEXDyqePAgpRhCtaSmYYonFJsGepHXrRzfE7mZeDztJZzezoV0r5HlPM++8//n/n6/3iV4KbqEV3FKLE+uZXfh/4C45Y6Ereb3uc28r3K8uiG3uAm7JNTNCChgnqLqgpFdPF3CJsrJZG2xEIQjO6lEWC12sSKysYkYQmmKDkkg2KM2nLfZ5yE5/Oe8HZyx2YBgp+VtYFltsAyPo87znEPzmTrs87bz3TXUELEqykU1amBW8Za/ffWRaVWyrYU846phPOnoxLPtOizcSwZv2+MazTtjhKSNKjjhsyYv2d/ChrO9apY4YMm3MsNf0iszY5KqTXnXUmB9Vc7mFZbGJbOX2eRLjhozjrA+cSne+ddyovb7MTZiAQhMqS3uLB01Y8ArOOWRKUEi/mRB5vIPYRCJuEs2y2ywyaZtNlryeJsfy/qxfPCLpEIgVsVnfbcVFJZGvzLUdqqmtHM0TmyZK9oMruMtlwelVB4tiBWHtRGld84Ld5kUaq/YGDPp5jZKLG6grZv4yb9YB7zpuQL2NwX4VX6x6C3WN/G78p88UjXvbSeWWnQEHBd+v1f1Cjic+dc6wl33XUvR3O+Y2kTf0I8pN5By4gpoxVQd96FEbVFRsN+pz9wvY5WN35JAIguiZwFSbKBg07jGRiy4reiCNZ0hZ/eRQW6kt2oPoQOBUDhwFQ4bsU8KcE/5wRK8g0hA7bbQNbjfNqujUtidMqIhEFjVwxXuKGmKJh288FFlbUHNVA0x6QUNRI/d67hCKtWzSYf8oCt7JhYtvdhT42ojtqqZzx4k4oM/STQDOrWoMUG7WLOz0X0eLYPB6KMoGFXLy/MYswjaV63dF3Ub9ZtW6mlFi97g9nW/i5XTosUN/joiGeuqKgjgzdvSkahYsilaGpZV79lraONfVuLi+p89/AdAUWQEn4HTQAAAAAElFTkSuQmCC";this.vn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNrsmT1Ow0AYRG1ER8glkCioyQk4ARIF9OEA3IeeBnEDJH4qkh4JRXAB6AgtZgxLg2SPKSx7d9+TRoqcr7BeNt7spKyqqoBmNlCAIAQhCEEIQhCCEAQIQlCagibKmXKvvCmvyl24tjX0zZUDH1Z3lAtl1vD+QjlRXnIUNFWulX0zt1QOlPfcvmLzDnKKsLrmOT6DjnqaTUbQbk+zyQiKosocUtDqH7NPOQq67Gk2mW1+O2zzMzO3CNv8OrcVVP+uOQ4CmngIM+scV9Av9XHiVDlU9sK1R+VKOVc+cj5q/F3Nk/C6XjGfY7ipkj8Ox3+aRxCCEmZzZB/W6B7SY2oUb4ufYuxZuSloFL+hUWyBRtFAo2igUTTQKBpoFA00igYaRQONooFGsSM0ijEfVmkUIzjNIwhBCUOjGMEKolFsgUaxBRpFA42igUbRQKNooFE00CgaaBQNNIoGGsWO0CjGDHUHghCEIAQhCEEIQhAgCEE98CXAAHw9kRr/el3HAAAAAElFTkSuQmCC";this.tn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbtJREFUeNrs20tKxEAQgOFEZyu6EA/gEbyYex+kwMfei3kEDyAudB+J3Rg3wmBM18vxLyiyGSbVH10d0k36aZo6YnvsQQAQQAABBBBAAP3T2Dje66jk43xtideSZ/N1p4D6ksclDxRq7ne1xcYk/8EaBBBAAAEEEEAEQAABBBBAAAHk/Rbu9kbfuh90Mhe75Hi2bpRp7ON87SttFv62/u559c0aj57PS96UfF+AVIs9VECq93lbeL/9ktclH6KAatyWvEy6hNyVvIpeg2oBkhBHWnE+52uZQUopU54QrXFpAmVBEs0xaQPVHAJxBu3xWABFzSSxGIsVkDeSWI3DEsir3QbLMVgDWc8ksa7fA8gKSTxq9wLSbrfBq25PIK2ZJJ41ewO1Iol3vRFAa9ttiKg1Cui3M0mi6owEWookkTVGA/3UbkN0fRmAts0kyVBbFqDvSJKlLo0tV824n68XWQrKBsTBIUAAAUQoHj1rHSdbRn0Krf6uo/Up9tS1f5xiHRXnNGoGaXyckrpLWtegscsfYyQQTzHjFk3fYq0DfPkDbdb0ZSLvYqxBAAEEEEAAAQQQARBAAPnHhwADADsGwOIWz5onAAAAAElFTkSuQmCC";this.qn="data:image/gif;base64,R0lGODlhAwAVAIABAJmZmf///yH5BAEKAAEALAAAAAADABUAAAINRBynaaje0pORrWnhKQA7";this.lm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gIDABU3A51oagAAAIpJREFUOMulk9ENgCAMRKkTOAqjMIKj6CSOghs4gm7gCM+fGgmCsXJJP0i4cj16zhkBjNwYreSeDJ1rhLVByM6TRf6gqgf3w7g6GTi0fGJUTHxaX19W8oVNK8f6RaYHZiqo8aTQqHhZROTrNy4VhcGybamJMRltBvpfGwcENXxryYJvzcLemp1HnE/SdAV9Q8z4YgAAAABJRU5ErkJggg%3D%3D";this.Up="data:image/png;base64,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%3D%3D";this.Yp="data:image/png;base64,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%3D%3D";this.Wp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIXjG+Am8oH4mvyxWtvZdrl/U2QJ5Li+RQAOw%3D%3D";this.Xp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIYjAOnC7ncnmpRIuoerpBabF2ZxH3hiSoFADs%3D";this.Zp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Vp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAKQ2lDQ1BJQ0MgcHJvZmlsZQAAeNqdU3dYk/cWPt/3ZQ9WQtjwsZdsgQAiI6wIyBBZohCSAGGEEBJAxYWIClYUFRGcSFXEgtUKSJ2I4qAouGdBiohai1VcOO4f3Ke1fXrv7e371/u855zn/M55zw+AERImkeaiagA5UoU8Otgfj09IxMm9gAIVSOAEIBDmy8JnBcUAAPADeXh+dLA//AGvbwACAHDVLiQSx+H/g7pQJlcAIJEA4CIS5wsBkFIAyC5UyBQAyBgAsFOzZAoAlAAAbHl8QiIAqg0A7PRJPgUA2KmT3BcA2KIcqQgAjQEAmShHJAJAuwBgVYFSLALAwgCgrEAiLgTArgGAWbYyRwKAvQUAdo5YkA9AYACAmUIszAAgOAIAQx4TzQMgTAOgMNK/4KlfcIW4SAEAwMuVzZdL0jMUuJXQGnfy8ODiIeLCbLFCYRcpEGYJ5CKcl5sjE0jnA0zODAAAGvnRwf44P5Dn5uTh5mbnbO/0xaL+a/BvIj4h8d/+vIwCBAAQTs/v2l/l5dYDcMcBsHW/a6lbANpWAGjf+V0z2wmgWgrQevmLeTj8QB6eoVDIPB0cCgsL7SViob0w44s+/zPhb+CLfvb8QB7+23rwAHGaQJmtwKOD/XFhbnauUo7nywRCMW735yP+x4V//Y4p0eI0sVwsFYrxWIm4UCJNx3m5UpFEIcmV4hLpfzLxH5b9CZN3DQCshk/ATrYHtctswH7uAQKLDljSdgBAfvMtjBoLkQAQZzQyefcAAJO/+Y9AKwEAzZek4wAAvOgYXKiUF0zGCAAARKCBKrBBBwzBFKzADpzBHbzAFwJhBkRADCTAPBBCBuSAHAqhGJZBGVTAOtgEtbADGqARmuEQtMExOA3n4BJcgetwFwZgGJ7CGLyGCQRByAgTYSE6iBFijtgizggXmY4EImFINJKApCDpiBRRIsXIcqQCqUJqkV1II/ItchQ5jVxA+pDbyCAyivyKvEcxlIGyUQPUAnVAuagfGorGoHPRdDQPXYCWomvRGrQePYC2oqfRS+h1dAB9io5jgNExDmaM2WFcjIdFYIlYGibHFmPlWDVWjzVjHVg3dhUbwJ5h7wgkAouAE+wIXoQQwmyCkJBHWExYQ6gl7CO0EroIVwmDhDHCJyKTqE+0JXoS+cR4YjqxkFhGrCbuIR4hniVeJw4TX5NIJA7JkuROCiElkDJJC0lrSNtILaRTpD7SEGmcTCbrkG3J3uQIsoCsIJeRt5APkE+S+8nD5LcUOsWI4kwJoiRSpJQSSjVlP+UEpZ8yQpmgqlHNqZ7UCKqIOp9aSW2gdlAvU4epEzR1miXNmxZDy6Qto9XQmmlnafdoL+l0ugndgx5Fl9CX0mvoB+nn6YP0dwwNhg2Dx0hiKBlrGXsZpxi3GS+ZTKYF05eZyFQw1zIbmWeYD5hvVVgq9ip8FZHKEpU6lVaVfpXnqlRVc1U/1XmqC1SrVQ+rXlZ9pkZVs1DjqQnUFqvVqR1Vu6k2rs5Sd1KPUM9RX6O+X/2C+mMNsoaFRqCGSKNUY7fGGY0hFsYyZfFYQtZyVgPrLGuYTWJbsvnsTHYF+xt2L3tMU0NzqmasZpFmneZxzQEOxrHg8DnZnErOIc4NznstAy0/LbHWaq1mrX6tN9p62r7aYu1y7Rbt69rvdXCdQJ0snfU6bTr3dQm6NrpRuoW623XP6j7TY+t56Qn1yvUO6d3RR/Vt9KP1F+rv1u/RHzcwNAg2kBlsMThj8MyQY+hrmGm40fCE4agRy2i6kcRoo9FJoye4Ju6HZ+M1eBc+ZqxvHGKsNN5l3Gs8YWJpMtukxKTF5L4pzZRrmma60bTTdMzMyCzcrNisyeyOOdWca55hvtm82/yNhaVFnMVKizaLx5balnzLBZZNlvesmFY+VnlW9VbXrEnWXOss623WV2xQG1ebDJs6m8u2qK2brcR2m23fFOIUjynSKfVTbtox7PzsCuya7AbtOfZh9iX2bfbPHcwcEh3WO3Q7fHJ0dcx2bHC866ThNMOpxKnD6VdnG2ehc53zNRemS5DLEpd2lxdTbaeKp26fesuV5RruutK10/Wjm7ub3K3ZbdTdzD3Ffav7TS6bG8ldwz3vQfTw91jicczjnaebp8LzkOcvXnZeWV77vR5Ps5wmntYwbcjbxFvgvct7YDo+PWX6zukDPsY+Ap96n4e+pr4i3z2+I37Wfpl+B/ye+zv6y/2P+L/hefIW8U4FYAHBAeUBvYEagbMDawMfBJkEpQc1BY0FuwYvDD4VQgwJDVkfcpNvwBfyG/ljM9xnLJrRFcoInRVaG/owzCZMHtYRjobPCN8Qfm+m+UzpzLYIiOBHbIi4H2kZmRf5fRQpKjKqLupRtFN0cXT3LNas5Fn7Z72O8Y+pjLk722q2cnZnrGpsUmxj7Ju4gLiquIF4h/hF8ZcSdBMkCe2J5MTYxD2J43MC52yaM5zkmlSWdGOu5dyiuRfm6c7Lnnc8WTVZkHw4hZgSl7I/5YMgQlAvGE/lp25NHRPyhJuFT0W+oo2iUbG3uEo8kuadVpX2ON07fUP6aIZPRnXGMwlPUit5kRmSuSPzTVZE1t6sz9lx2S05lJyUnKNSDWmWtCvXMLcot09mKyuTDeR55m3KG5OHyvfkI/lz89sVbIVM0aO0Uq5QDhZML6greFsYW3i4SL1IWtQz32b+6vkjC4IWfL2QsFC4sLPYuHhZ8eAiv0W7FiOLUxd3LjFdUrpkeGnw0n3LaMuylv1Q4lhSVfJqedzyjlKD0qWlQyuCVzSVqZTJy26u9Fq5YxVhlWRV72qX1VtWfyoXlV+scKyorviwRrjm4ldOX9V89Xlt2treSrfK7etI66Trbqz3Wb+vSr1qQdXQhvANrRvxjeUbX21K3nShemr1js20zcrNAzVhNe1bzLas2/KhNqP2ep1/XctW/a2rt77ZJtrWv913e/MOgx0VO97vlOy8tSt4V2u9RX31btLugt2PGmIbur/mft24R3dPxZ6Pe6V7B/ZF7+tqdG9s3K+/v7IJbVI2jR5IOnDlm4Bv2pvtmne1cFoqDsJB5cEn36Z8e+NQ6KHOw9zDzd+Zf7f1COtIeSvSOr91rC2jbaA9ob3v6IyjnR1eHUe+t/9+7zHjY3XHNY9XnqCdKD3x+eSCk+OnZKeenU4/PdSZ3Hn3TPyZa11RXb1nQ8+ePxd07ky3X/fJ897nj13wvHD0Ivdi2yW3S609rj1HfnD94UivW2/rZffL7Vc8rnT0Tes70e/Tf/pqwNVz1/jXLl2feb3vxuwbt24m3Ry4Jbr1+Hb27Rd3Cu5M3F16j3iv/L7a/eoH+g/qf7T+sWXAbeD4YMBgz8NZD+8OCYee/pT/04fh0kfMR9UjRiONj50fHxsNGr3yZM6T4aeypxPPyn5W/3nrc6vn3/3i+0vPWPzY8Av5i8+/rnmp83Lvq6mvOscjxx+8znk98ab8rc7bfe+477rfx70fmSj8QP5Q89H6Y8en0E/3Pud8/vwv94Tz+4A5JREAAAAGYktHRABRAFEAUY0ieOEAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcAgoBAyHa0+xaAAAAc0lEQVQoz+WSMQ7CQAwEx5cUFDyA//8q74CCgsymAXE6RQhFdExjy2trJdulPqpqSkJPVTHWOm1F3Vc/kCStqjhC4yD/MDi/EnUa79it/+3U2gowJ0G9AKdvnNQ7QCW5Aue9z9lzfGo3foa6qEmSLi5j3wbOJEaRaDtVXQAAAABJRU5ErkJggg%3D%3D";this.km="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUEyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUIyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxODI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxOTI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrESQzQAAAF3SURBVHjaYvz//z8DPQATA53A8LOIkRLNNpaWAkCqHogVgBjEbjxy/PgBbGpZKLRkPxAbQIUuAPEHXOqZsRhwX05WVhCIHzx68gSnRqB8O5AKQBKSAGIPoPhFoL4HBIMOaNF5JFcuAOKF6MEBVOMA9Q0ukAjUs4BQYkhECoIEkIFAg/dDDYeBfAIh2w9Ur0BMqkMPMgeohfOhBgQQsAiWSPAGHcig+3gMeQBNZYTAA2jogCy1Z8SRokAung9VRCkAWRiIK+guQBVQCj5AzalnITKOyAWg1HoQlHoZCWRIUBD2kxmEG4BJPJBgWQdUBPM2ufG0EaVkALkcmJN/YFMJyuHAnM4IzcAcpAQZ0KGF6PkoAGhZAzSosAUfP4m+AoVEINYiCGQRNLeDIu8iVE6fiIyJzRJHoG8u4CzrgJYlUBDxsBQWCI1b/PURtFSoh5ZxxIIL0HpoA8kVH1J55g9NCAJowXMBmj82YAsmrBaNtoIGvUUAAQYApBd2hzrzVVQAAAAASUVORK5CYII%3D";this.hm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUUyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxQzI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxRDI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj8crNUAAAFxSURBVHjavFbNbYMwGDU0A7BA2oxAj5EqlU7QZgKSY4+ZgDJBmgmAY09JN8ihUo7NBqVVBmCD9H3qc4UsnCBi8qQnGwN+fL/GU8TdePyCIQZHyg1KsPjYbmVf5VEkwzBV/SCH2MyjJYnqF6lPd/WN2HcYk2O4hMYfJEaHSwj5l7JocOTeBgzAd84j8J6jM6E5U16EQq69go8uXZeDO4po6DpLXQoVYNWwHlrWOwuFaBk79qomMRseyNbpLQK34BOYca1i3BaGS/+Bj9N989A2GaSKv8AlNw8Ys1WvBStfimfEZZ82K2yo732yYPHwlDGbnZMMTRbJZmvOA+06iM1tlnWJUcXMyYwMi7BBxHt5l0PSdF1qdAMztSUTv120oNJSP6rmyvhU4NtYlNB9TYHfsKmOulpU1l7WwZYamtQ69Q3nXU/KcsDelhgFu3B8HBU6JVcMdB9YI/UnVzL72e/frodDj9YEDn8glxB5lotfAQYAtCJqk8z+2M8AAAAASUVORK5CYII%3D";this.im="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0FBOEM3Q0EyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0FBOEM3Q0IyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMENEMDM3NTI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMENEMDM3NjI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptz3FgYAAAErSURBVHjaYmQAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJLFjiBBS2E4GYn4pxJsCCRdAQGHkPoIlkIzT+KAZM6L6BWQICQPYBaoUdukUCQF/A4wzILqCWRaDk/R9HkmSgZpJnwiFuQKIlFwgpwEgMwHhhRObDfIxDvBAoPgFJDBTs/dhSKhMFoZGIbAnUMaAixxGaRahjEchQoA8MgNgBTfwCtIyjjkVAC0BBdB6Uz4Bs9Ly2kZpBh5z0HQglDiZaFGygaoEuFpGSj0YtGoEWgUrv91Rs+eBsETFhKy5oABaALGokppinsLnVyPzoyZMfwCbXSlCTCIg1oDS1GpAzoKX8B4AAAwAuBFgKFwVWUgAAAABJRU5ErkJggg%3D%3D";this.jm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gEfAAUcuIwRjAAAAVpJREFUSMftlrtKA0EUhr9ZFkEMCCpYCb6AIGJzdF7AUhRsREF9AQmCl1IhgpjGwkohb+Ab2Ew4ldZik8pOVOy8kNhMYAhBd5PZVB5Y2BnO8O3M/5+zYwCsyA6wD0wALeKEAZ6BY6daM1ZkA6hRbGwmQJniYy8FRnMsePVHOwSUcqwbSfJo4lTHnOo4sJx3S0mOXA3eh4sEHVmRnkVKM+adONXbDutGBT0CW0613mX+FGgGc4f9gK6AehdTPAAH7bEVMX+BkgxOy+LGVr9Ht2ZFZoDrUCMrMusLvRlLozn/OCA0wxSwXpS9+4p/UDu+iwJ12vetKFAp7HNOVYE7P/wC7oFqjF634FSrQR3hVOfDBCuyHWNHK1ZkMYCEgEy6GSvSAKYzAs+BS+AJ+PD/pUlgCbj45cMbac6WX+71jpEALwMoo/cEqAwAVDFe0FXgzN9uYsYnsOtUb34AitxcDYrQdlwAAAAASUVORK5CYII%3D";this.gm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMTYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMTcyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNTQyQTc3NTI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNTQyQTc3NjI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkQAqvIAAADoSURBVHjaYmEAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJTFSME3xAgIlCAw4AcSAoDoBYEBjpjCCMTSELJZYADXUkVjElPppIimIWCpMtHACzyXt88U22j4DB9gA9wmkVdCQBcixqxJaykFJcIb18JEAvi+SxCYIK1f9kJgZGtFT3f8gmhlGLRi2i3KIPdLDnAwu0SVRAqk4SM/oCkI8a0esWGjS3GpkfPXnyA9jkWglqEgGxBpSmVgNyBhAnghqQAAEGADc+O4K5UN0FAAAAAElFTkSuQmCC";this.O=f.O;this.F.ob=-1;this.rf=!0;this.kb=new za;this.Ic=new Aa;this.qo=new Ba;this.xn=new Ca;this.fq=new Da;this.yn=function(){};this.Dn=function(c){var d=this;d.Pa=c;d.O.bb="FlipView"==d.F.H;if(!d.O.document.DisableOverflow){d.La=d.F.ac?jQuery("#"+d.Pa).wrap("<div id='"+d.Pa+"_wrap' style='"+(d.O.bb?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Pa).wrap("<div id='"+d.Pa+"_wrap' style='"+(d.O.bb?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;'></div>").parent();jQuery("#"+d.Pa).css("visibility","hidden");c=d.O;var h;if(!(h=d.O.config.document.PreviewMode)){var f;try{f=window.self!==window.top;}catch(k){f=!0;}h=f&&d.O.Pc()&&600>d.O.Pc()&&!d.O.Rb&&!FLOWPAPER.getLocationHashParameter("DisablePreview");}c.PreviewMode=h;null!=d.O.config.document.UIConfig?d.ql(null!=d.O.config.document.UIConfig?d.O.config.document.UIConfig:"UI_Zine.xml",function(){d.Rg=!0;d.F.dh&&d.F.dh();}):d.fk();d.O.PreviewMode&&(d.dl(),d.sh());eb.platform.touchonlydevice&&d.La.append(String.format('<div class="flowpaper_toolbarios toolbarMore" style="visibility:hidden;z-index: 200;overflow: hidden;padding-top: 4px;padding-bottom: 3px;height: 38px;margin-right: 100px;display: block;margin-top: -6px;background-color: rgb(85, 85, 85);"></div>'));}};this.ql=function(c,d){var h=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){h.fk();},success:function(c){h.tc=c;c=eb.platform.touchonlydevice?"mobile":"desktop";!eb.platform.lb&&eb.platform.touchonlydevice&&0<jQuery(h.tc).find("tablet").length&&(c="tablet");toolbar_el=jQuery(h.tc).find(c).find("toolbar");var e=jQuery(h.tc).find(c).find("general");h.readOnly=!0;h.backgroundColor=jQuery(e).attr("backgroundColor");h.linkColor=null!=jQuery(e).attr("linkColor")?jQuery(e).attr("linkColor"):"#72e6ff";h.O.linkColor=h.linkColor;h.Tc=null!=jQuery(e).attr("linkAlpha")?jQuery(e).attr("linkAlpha"):0.4;h.O.Tc=h.Tc;h.Hf=null!=jQuery(e).attr("arrowSize")?parseFloat(jQuery(e).attr("arrowSize")):22;h.O.Hf=h.Hf;h.backgroundImage=jQuery(e).attr("backgroundImage");h.Ij=null==jQuery(e).attr("stretchBackgroundImage")||null!=jQuery(e).attr("stretchBackgroundImage")&&"true"==jQuery(e).attr("stretchBackgroundImage");h.F.Md=null==jQuery(e).attr("enablePageShadows")||null!=jQuery(e).attr("enablePageShadows")&&"true"==jQuery(e).attr("enablePageShadows");h.F.uf=null!=jQuery(e).attr("shadowAlpha")?parseFloat(jQuery(e).attr("shadowAlpha")):0.3;h.ka=("true"==jQuery(e).attr("forceSinglePage")||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.xh||h.F.ef||h.Eq)&&!(h.O.PreviewMode&&!eb.browser.xh);h.hb=jQuery(e).attr("panelColor");h.qb=null!=jQuery(e).attr("arrowColor")?jQuery(e).attr("arrowColor"):"#AAAAAA";h.Ue=jQuery(e).attr("backgroundAlpha");h.Fe=jQuery(e).attr("navPanelBackgroundAlpha");h.Vi=jQuery(e).attr("imageAssets");h.gb=!eb.platform.touchonlydevice&&(null==jQuery(e).attr("enableFisheyeThumbnails")||jQuery(e).attr("enableFisheyeThumbnails")&&"false"!=jQuery(e).attr("enableFisheyeThumbnails"))&&(!h.ka||h.F.ef)&&!h.F.config.document.RTLMode;h.rf="false"!=jQuery(e).attr("navPanelsVisible");h.wg="false"!=jQuery(e).attr("firstLastButtonsVisible");h.Tp=null!=jQuery(e).attr("startWithTOCOpen")&&"false"!=jQuery(e).attr("startWithTOCOpen");h.Ef=null!=jQuery(e).attr("zoomDragMode")&&"false"!=jQuery(e).attr("zoomDragMode");h.Sr=null!=jQuery(e).attr("hideNavPanels")&&"false"!=jQuery(e).attr("hideNavPanels");h.Gn=null!=jQuery(e).attr("disableMouseWheel")&&"false"!=jQuery(e).attr("disableMouseWheel");h.tg=null!=jQuery(e).attr("disableZoom")&&"false"!=jQuery(e).attr("disableZoom");h.Ek=null!=jQuery(e).attr("disableSharingURL")&&"false"!=jQuery(e).attr("disableSharingURL");h.Ne=null!=jQuery(e).attr("flipAnimation")?jQuery(e).attr("flipAnimation"):"3D, Soft";h.dd=null!=jQuery(e).attr("flipSpeed")?jQuery(e).attr("flipSpeed").toLowerCase():"medium";h.rb=h.rb&&!h.ka;h.sn=null!=jQuery(e).attr("bindBindNavigationKeys")&&"false"!=jQuery(e).attr("bindBindNavigationKeys");h.Hi=null!=jQuery(e).attr("flipSound")?jQuery(e).attr("flipSound"):null;h.rn=null!=jQuery(e).attr("bindBrowserNavKeys")&&"false"!=jQuery(e).attr("bindBrowserNavKeys");jQuery(h.toolbar.K).css("visibility","hidden");if(h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.Ij?(jQuery(h.O.L).css("background-color",""),jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.O.L).css("background-size","cover")):(jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.O.L).css("background-size",""),jQuery(h.O.L).css("background-position","center"),jQuery(h.O.N).css("background-position","center"),jQuery(h.O.L).css("background-repeat","no-repeat"),jQuery(h.O.N).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){var f=S(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Ue?parseFloat(h.Ue):1)+")";jQuery(h.O.L).css("background",f);jQuery(h.O.N).css("background",f);h.O.bb||jQuery(h.La).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var n=h.backgroundColor.split(",");n[0]=n[0].toString().replace("[","");n[0]=n[0].toString().replace("]","");n[0]=n[0].toString().replace(" ","");n[1]=n[1].toString().replace("[","");n[1]=n[1].toString().replace("]","");n[1]=n[1].toString().replace(" ","");f=n[0].toString().substring(0,n[0].toString().length);n=n[1].toString().substring(0,n[1].toString().length);jQuery(h.O.L).css("background","");jQuery(h.O.N).css({background:"linear-gradient("+f+", "+n+")"});jQuery(h.O.N).css({background:"-webkit-linear-gradient("+f+", "+n+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.O.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+n+"');"),jQuery(h.O.N).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+n+"');"));}else{jQuery(h.O.N).css("background-color","#222222");}}}h.ik();jQuery(h.toolbar.K).children().css("display","none");h.ii=h.ea;h.ji=h.ea;h.ci=h.ea;h.Tg=h.ea;h.Yg=h.ea;h.li=h.ea;h.Zg=h.ea;h.mi=h.ea;h.$g=h.ea;h.ni=h.ea;h.ah=h.ea;h.oi=h.ea;h.Vg=h.ea;h.ei=h.ea;h.Xg=h.ea;h.gi=h.ea;h.Wg=h.ea;h.fi=h.ea;h.Ug=h.ea;h.di=h.ea;var p="",r=null,f=0;jQuery(toolbar_el).attr("visible")&&"false"==jQuery(toolbar_el).attr("visible")?h.Af=!1:h.Af=!0;!jQuery(toolbar_el).attr("width")||null!=jQuery(toolbar_el).attr("width")&&0<=jQuery(toolbar_el).attr("width").indexOf("%")?jQuery(h.toolbar.K).css("width",null):jQuery(toolbar_el).attr("width")&&jQuery(h.toolbar.K).css("width",parseInt(jQuery(toolbar_el).attr("width"))+60+"px");jQuery(toolbar_el).attr("backgroundColor")&&(jQuery(h.toolbar.K).css("background-color",jQuery(toolbar_el).attr("backgroundColor")),jQuery(".toolbarMore").css("background-color",jQuery(toolbar_el).attr("backgroundColor")));jQuery(toolbar_el).attr("borderColor")&&jQuery(h.toolbar.K).css("border-color",h.hb);jQuery(toolbar_el).attr("borderStyle")&&jQuery(h.toolbar.K).css("border-style",jQuery(toolbar_el).attr("borderStyle"));jQuery(toolbar_el).attr("borderThickness")&&jQuery(h.toolbar.K).css("border-width",jQuery(toolbar_el).attr("borderThickness"));jQuery(toolbar_el).attr("paddingTop")&&(jQuery(h.toolbar.K).css("padding-top",jQuery(toolbar_el).attr("paddingTop")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("paddingLeft")&&jQuery(h.toolbar.K).css("padding-left",jQuery(toolbar_el).attr("paddingLeft")+"px");jQuery(toolbar_el).attr("paddingRight")&&jQuery(h.toolbar.K).css("padding-right",jQuery(toolbar_el).attr("paddingRight")+"px");jQuery(toolbar_el).attr("paddingBottom")&&(jQuery(h.toolbar.K).css("padding-bottom",jQuery(toolbar_el).attr("paddingBottom")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("cornerRadius")&&jQuery(h.toolbar.K).css({"border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px","-moz-border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px"});jQuery(toolbar_el).attr("height")&&jQuery(h.toolbar.K).css("height",parseFloat(jQuery(toolbar_el).attr("height"))-f+"px");jQuery(toolbar_el).attr("location")&&"float"==jQuery(toolbar_el).attr("location")?h.Kg=!0:h.Kg=!1;jQuery(toolbar_el).attr("location")&&"bottom"==jQuery(toolbar_el).attr("location")&&(h.Me=!0,jQuery(h.toolbar.K).parent().detach().insertAfter(h.L),jQuery(h.toolbar.K).css("margin-top","0px"),jQuery(h.toolbar.K).css("margin-bottom","-5px"),jQuery(h.toolbar.K+"_wrap").css("bottom","0px"),jQuery(h.toolbar.K+"_wrap").css("background-color",h.hb),jQuery(jQuery(h.F.L).css("height",jQuery(h.F.L).height()-40+"px")));var t=1<eb.platform.Xa&&!eb.platform.touchonlydevice?"@2x":"";jQuery(jQuery(h.tc).find(c)).find("toolbar").find("element").each(function(){"bttnPrint"!=jQuery(this).attr("id")&&"bttnDownload"!=jQuery(this).attr("id")&&"bttnTextSelect"!=jQuery(this).attr("id")&&"bttnHand"!=jQuery(this).attr("id")&&"barCursorTools"!=jQuery(this).attr("id")||!h.readOnly||jQuery(this).attr("visible",!1);"bttnDownload"!=jQuery(this).attr("id")||h.F.document.PDFFile||jQuery(this).attr("visible",!1);"bttnDownload"==jQuery(this).attr("id")&&h.O.renderer.config.signature&&0<h.O.renderer.config.signature.length&&jQuery(this).attr("visible",!1);switch(jQuery(this).attr("type")){case"button":p=".flowpaper_"+jQuery(this).attr("id");if(0==jQuery(p).length&&(jQuery(h.toolbar.K).append(String.format("<img id='{0}' class='{1} flowpaper_tbbutton'/>",jQuery(this).attr("id"),"flowpaper_"+jQuery(this).attr("id"))),jQuery(this).attr("onclick"))){var c=jQuery(this).attr("onclick");jQuery(p).bind("mousedown",function(){eval(c);});}jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",jQuery(this).attr("paddingLeft")-6+"px");if(jQuery(this).attr("fa-class")){jQuery(p).replaceWith(String.format('<span id="{0}" style="cursor:pointer;color:#ffffff" class="fa {1} {2}"></span>',jQuery(this).attr("id"),jQuery(this).attr("fa-class"),jQuery(p).get(0).className));}else{var d=jQuery(this).attr("id");jQuery(this).attr("src")&&(d=jQuery(this).attr("src"));}jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Vi+d+t+".png");jQuery(this).attr("icon_width")&&jQuery(p).css("width",jQuery(this).attr("icon_width")+"px");jQuery(this).attr("icon_height")&&jQuery(p).css("height",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("fa-class")&&jQuery(p).css("font-size",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",jQuery(this).attr("paddingRight")-6+"px");jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",jQuery(this).attr("paddingTop")+"px");h.Kg?jQuery(p).css("margin-top","0px"):jQuery(p).css("margin-top","2px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"separator":p="#"+h.toolbar.Pa+"_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Vi+"bar"+t+".png");jQuery(this).attr("width")&&jQuery(p).css("width",jQuery(this).attr("width")+"px");jQuery(this).attr("height")&&jQuery(p).css("height",jQuery(this).attr("height")+"px");jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",+jQuery(this).attr("paddingTop"));jQuery(p).css("margin-top","0px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"slider":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));h.Kg?jQuery(p).css("margin-top","-5px"):jQuery(p).css("margin-top","-3px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"textinput":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));jQuery(this).attr("readonly")&&"true"==jQuery(this).attr("readonly")&&jQuery(p).attr("disabled","disabled");null!=r&&jQuery(p).insertAfter(r);eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"7px"):h.Kg?jQuery(p).css("margin-top","-2px"):jQuery(p).css("margin-top","0px");r=jQuery(p);break;case"label":p=".flowpaper_"+jQuery(this).attr("id"),jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block"),jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width")),jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height")),jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft")),jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight")),jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop")),null!=r&&jQuery(p).insertAfter(r),eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"9px"):h.Kg?jQuery(p).css("margin-top","1px"):jQuery(p).css("margin-top","3px"),r=jQuery(p);}});h.O.outline=jQuery(jQuery(h.tc).find("outline"));h.O.labels=jQuery(jQuery(h.tc).find("labels"));jQuery(h.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});jQuery(toolbar_el).attr("location")&&jQuery(toolbar_el).attr("location");350>jQuery(h.toolbar.K).width()&&jQuery(".flowpaper_txtSearch").css("width","40px");jQuery(e).attr("glow")&&"true"==jQuery(e).attr("glow")&&(h.Mq=!0,jQuery(h.toolbar.K).css({"box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-webkit-box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-moz-box-shadow":"0 0 35px rgba(22, 22, 22, 1)"}));h.hb?jQuery(h.toolbar.K).css("background-color",h.hb):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555");h.Af?jQuery(h.toolbar.K).css("visibility","visible"):jQuery(h.toolbar.K).hide();h.sn&&jQuery(window).bind("keydown",function(c){!c||jQuery(c.target).hasClass("flowpaper_zoomSlider")||"INPUT"==jQuery(c.target).get(0).tagName||h.F.pages.animating||(h.O.pages.ne()||h.O.pages&&h.O.pages.animating)&&!h.ih||("37"==c.keyCode?h.O.previous():"39"==c.keyCode&&h.O.next());});d&&d();}});};this.sh=function(){this.F.N.find(".flowpaper_fisheye").hide();};this.Fj=function(){this.Ak();};this.dl=function(){this.F.PreviewMode||jQuery(this.O.L).css("padding-top","20px");jQuery("#"+this.Pa).hide();};this.Lp=function(){jQuery(this.O.L).css("padding-top","0px");jQuery("#"+this.Pa).show();};this.fk=function(){this.ka=eb.platform.lb&&!this.O.PreviewMode;this.Ef=!0;this.gb=!eb.platform.touchonlydevice;this.Fe=1;this.F.Md=!0;jQuery(this.toolbar.K).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(this.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});this.O.config.document.PanelColor&&(this.hb=this.O.config.document.PanelColor);this.O.config.document.BackgroundColor?this.backgroundColor=this.O.config.document.BackgroundColor:this.backgroundColor="#222222";this.backgroundImage||jQuery(this.O.N).css("background-color",this.backgroundColor);this.hb?jQuery(this.toolbar.K).css("background-color",this.hb):eb.platform.touchonlydevice?jQuery(this.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(this.toolbar.K).css("background-color","#555555");this.ik();this.Rg=!0;this.F.dh&&this.F.dh();};this.ik=function(){if(eb.platform.touchonlydevice){var c=eb.platform.lb?-5:-1,d=eb.platform.lb?7:15,h=eb.platform.lb?40:60;jQuery(this.toolbar.K).html(String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_bttnDownload' style='margin-left:{1}px;'/>",this.tn,d)+(this.toolbar.O.config.document.ViewModeToolsVisible?String.format("<img src='{0}' style='margin-left:{1}px' class='flowpaper_tbbutton_large flowpaper_twopage flowpaper_tbbutton_pressed flowpaper_bttnBookView flowpaper_viewmode'>",this.ci,d)+String.format("<img src='{0}' class='flowpaper_bttnSinglePage flowpaper_tbbutton_large flowpaper_singlepage flowpaper_viewmode' style='margin-left:{1}px;'>",this.Yg,c)+String.format("<img src='{0}' style='margin-left:{1}px;' class='flowpaper_tbbutton_large flowpaper_thumbview flowpaper_bttnThumbView flowpaper_viewmode' >",this.Zg,c)+"":"")+(this.toolbar.O.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:{1}px;' />",this.$g,d)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:{1}px;' />",this.ah,c)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullscreen' src='{0}' style='margin-left:{1}px;' />",this.Vg,c)+"":"")+(this.toolbar.O.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:{0}px;'/>",this.Xg,d)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:{0}px;' />",h)+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel_large flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton_large flowpaper_next'/>",this.Wg)+"":"")+(this.toolbar.O.config.document.SearchToolsVisible?String.format("<input type='txtSearch' class='flowpaper_txtSearch flowpaper_tbtextinput_large' style='margin-left:{0}px;width:{1}px;text-align:right' value='{2}' />",d,eb.platform.lb?70:130,eb.platform.lb?"&#x1F50D":"")+String.format("<img src='{0}' class='flowpaper_bttnFind flowpaper_find flowpaper_tbbutton_large'  style=''/>",this.Ug)+"":"")+String.format("<img src='{0}' id='{1}' class='flowpaper_bttnMore flowpaper_tbbutton_large' style='display:none' />",this.vn,this.un));jQuery(this.toolbar.K).removeClass("flowpaper_toolbarstd");jQuery(this.toolbar.K).addClass("flowpaper_toolbarios");jQuery(this.toolbar.K).parent().parent().css({"background-color":this.backgroundColor});}else{jQuery(this.toolbar.K).css("margin-top","15px"),jQuery(this.toolbar.K).html(""+(this.O.config.document.ViewModeToolsVisible?String.format("<img style='margin-left:10px;' src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnBookView flowpaper_twopage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","FlipView"==this.O.sb?"flowpaper_tbbutton_pressed":"",this.Yp)+String.format("<img src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnSinglePage flowpaper_singlepage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","Portrait"==this.O.sb?"flowpaper_tbbutton_pressed":"",this.Up)+"":"")+(this.O.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_zoomSlider flowpaper_slider' style='background-image:url({1})'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?this.F.toolbar.cm:"","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTIiPjxsaW5lIHgxPSIwIiB5MT0iNiIgeDI9Ijk1IiB5Mj0iNiIgc3R5bGU9InN0cm9rZTojQUFBQUFBO3N0cm9rZS13aWR0aDoxIiAvPjwvc3ZnPg==")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img style='margin-left:10px;' class='flowpaper_tbbutton flowpaper_bttnFullscreen' src='{0}' />",this.Vp):"")+(this.O.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",this.Wp)+String.format("<input type='text' class='flowpaper_txtPageNumber flowpaper_tbtextinput flowpaper_currPageNum' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton flowpaper_next'/>",this.Xp)+"":"")+""+(this.O.config.document.SearchToolsVisible?String.format("<input id='{0}' type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:40px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",this.Zp):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.qn,this.pn));}};this.zk=function(){var c=this;if(0<jQuery(c.La).find(".toolbarMore").length){var d=jQuery(c.La).find(".toolbarMore").children(),h=jQuery(c.toolbar.K),f=jQuery(c.La).find(".flowpaper_bttnMore"),k=jQuery(c.La).find(".toolbarMore"),l=(jQuery(c.La).width()-jQuery(c.toolbar.K).width())/2-5,n=jQuery(c.La).find(".flowpaper_bttnZoomIn").offset().top,p=!1,r=jQuery(c.toolbar.K).children();jQuery(c.toolbar.K).last();jQuery(c.La).find(".toolbarMore").css({"margin-right":l+"px","margin-left":l+"px"});r.each(function(){jQuery(this).is(":visible")&&(p=p||20<jQuery(this).offset().top-h.offset().top);});p=p||0<jQuery(c.La).find(".toolbarMore").children().length;d.each(function(){jQuery(this).insertBefore(f);});p&&(k.show(),k.css("background-color",jQuery(c.toolbar.K).css("background-color")));p?(f.show(),r.each(function(){!jQuery(this).hasClass("flowpaper_bttnMore")&&jQuery(this).is(":visible")&&35<jQuery(this).offset().top-n&&k.append(this);}),requestAnim(function(){20<f.offset().top-n&&k.prepend(jQuery(c.La).find(".flowpaper_bttnMore").prev());},50),k.prepend(jQuery(c.La).find(".flowpaper_bttnMore").prev())):(f.hide(),k.css("visibility","hidden"));}};this.bindEvents=function(){var c=this;eb.platform.touchonlydevice?(jQuery(c.La).find(".flowpaper_txtSearch").on("touchstart",function(){!jQuery(".flowpaper_bttnFind").is(":visible")&&0<jQuery(this).val().length&&55357==jQuery(this).val().charCodeAt(0)?(jQuery(this).css("text-align","left"),jQuery(this).val(""),jQuery(this).data("original-width",jQuery(this).css("width")),0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"})):jQuery(".flowpaper_bttnFind").is(":visible")||"100%"==jQuery(this).width||(0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"}));jQuery(this).focus();}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){jQuery(".flowpaper_bttnFind").is(":visible")||0!=jQuery(this).val().length||(jQuery(this).css("text-align","right"),jQuery(this).val(String.fromCharCode(55357)+String.fromCharCode(56589)));jQuery(this).data("original-width")&&jQuery(this).animate({width:jQuery(this).data("original-width")},{duration:300,always:function(){for(var d=jQuery(c.toolbar.K).children(),h=0;h<d.length;h++){jQuery(d[h]).data("search-hide")&&jQuery(d[h]).show();}}});}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mousedown touchstart",function(){c.ji!=c.ea&&jQuery(this).attr("src",c.ji);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mouseup touchend",function(){c.ii!=c.ea&&jQuery(this).attr("src",c.ii);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mousedown touchstart",function(){c.Tg!=c.ea&&jQuery(this).attr("src",c.Tg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mouseup touchend",function(){c.Tg!=c.ea&&jQuery(this).attr("src",c.ci);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mousedown touchstart",function(){c.li!=c.ea&&jQuery(this).attr("src",c.li);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mouseup touchend",function(){c.Yg!=c.ea&&jQuery(this).attr("src",c.Yg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mousedown touchstart",function(){c.mi!=c.ea&&jQuery(this).attr("src",c.mi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mouseup touchend",function(){c.Zg!=c.ea&&jQuery(this).attr("src",c.Zg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mousedown touchstart",function(){c.ni!=c.ea&&jQuery(this).attr("src",c.ni);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mouseup touchend",function(){c.$g!=c.ea&&jQuery(this).attr("src",c.$g);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mousedown touchstart",function(){c.oi!=c.ea&&jQuery(this).attr("src",c.oi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mouseup touchend",function(){c.ah!=c.ea&&jQuery(this).attr("src",c.ah);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mousedown touchstart",function(){c.ei!=c.ea&&jQuery(this).attr("src",c.ei);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mouseup touchend",function(){c.Vg!=c.ea&&jQuery(this).attr("src",c.Vg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mousedown touchstart",function(){c.gi!=c.ea&&jQuery(this).attr("src",c.gi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mouseup touchend",function(){c.Xg!=c.ea&&jQuery(this).attr("src",c.Xg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mousedown touchstart",function(){c.fi!=c.ea&&jQuery(this).attr("src",c.fi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mouseup touchend",function(){c.Wg!=c.ea&&jQuery(this).attr("src",c.Wg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mousedown touchstart",function(){c.di!=c.ea&&jQuery(this).attr("src",c.di);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mouseup touchend",function(){c.Ug!=c.ea&&jQuery(this).attr("src",c.Ug);})):(jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("focus",function(){40>=jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()+60},100),jQuery(this).animate({width:jQuery(this).width()+60},100));}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){40<jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()-60},100),jQuery(this).animate({width:40},100));}));jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").bind("click touchstart",function(){jQuery(".flowpaper_mark_video_"+(c.O.getCurrPage()-1)).find("audio").each(function(){jQuery(this)[0].paused?(jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src",jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src").replace("Play","Pause")),jQuery(this)[0].play()):(jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src",jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src").replace("Pause","Play")),jQuery(this)[0].pause());});});jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").bind("click touchstart",function(){c.O.pages.xe(!0);});jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").bind("click touchstart",function(){c.O.pages.sd();});0==c.F.N.find(".flowpaper_socialsharedialog").length&&(c.Ek?c.F.N.prepend(String.format("<div id='modal-socialshare' class='modal-content flowpaper_socialsharedialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><img src='{0}' align='absmiddle' />&nbsp;<b>{15}</b></font><div style='width:530px;height:180px;margin-top:5px;padding-top:5px;padding-left:5px;background-color:#ffffff;box-shadow: 0px 2px 10px #aaa'><div style='position:absolute;left:20px;top:42px;color:#000000;font-weight:bold;'>{8}</div><div style='position:absolute;left:177px;top:47px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:58px;color:#000000;font-size:10px;'>{9}</div><div style='position:absolute;left:20px;top:88px;color:#000000;font-weight:bold;'><input type='text' style='width:139px;' value='&lt;{10}&gt;' class='flowpaper_txtPublicationTitle' /></div><div style='position:absolute;left:165px;top:86px;color:#000000;'><img src='{1}' class='flowpaper_socialshare_twitter' style='cursor:pointer;' /></div><div style='position:absolute;left:200px;top:86px;color:#000000;'><img src='{2}' class='flowpaper_socialshare_facebook' style='cursor:pointer;' /></div><div style='position:absolute;left:235px;top:86px;color:#000000;'><img src='{3}' class='flowpaper_socialshare_googleplus' style='cursor:pointer;' /></div><div style='position:absolute;left:270px;top:86px;color:#000000;'><img src='{4}' class='flowpaper_socialshare_tumblr' style='cursor:pointer;' /></div><div style='position:absolute;left:305px;top:86px;color:#000000;'><img src='{5}' class='flowpaper_socialshare_linkedin' style='cursor:pointer;' /></div></div></div>",c.lm,c.km,c.gm,c.hm,c.jm,c.im,c.F.toolbar.la(c.F.toolbar.Ka,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.la(c.F.toolbar.Ka,"DefaultStartPage","Default start page"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.la(c.F.toolbar.Ka,"SharingTitle","Sharing Title"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSite","Embed on Site"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.la(c.F.toolbar.Ka,"Share","Share"),c.F.toolbar.la(c.F.toolbar.Ka,"StartOnCurrentPage","Start on current page"))):c.F.N.prepend(String.format("<div id='modal-socialshare' class='modal-content flowpaper_socialsharedialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><img src='{0}' align='absmiddle' />&nbsp;<b>{15}</b></font><div style='width:530px;height:307px;margin-top:5px;padding-top:5px;padding-left:5px;background-color:#ffffff;box-shadow: 0px 2px 10px #aaa'><div style='position:absolute;left:20px;top:42px;color:#000000;font-weight:bold;'>{6}</div><div style='position:absolute;left:177px;top:42px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:62px;color:#000000;font-weight:bold;'><select class='flowpaper_ddlSharingOptions'><option>{7}</option><option>{16}</option></select></div><div style='position:absolute;left:175px;top:62px;color:#000000;font-weight:bold;'><input type='text' readonly style='width:355px;' class='flowpaper_socialsharing_txtUrl' /></div><div style='position:absolute;left:20px;top:102px;color:#000000;font-weight:bold;'>{8}</div><div style='position:absolute;left:177px;top:107px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:118px;color:#000000;font-size:10px;'>{9}</div><div style='position:absolute;left:20px;top:148px;color:#000000;font-weight:bold;'><input type='text' style='width:139px;' value='&lt;{10}&gt;' class='flowpaper_txtPublicationTitle' /></div><div style='position:absolute;left:165px;top:146px;color:#000000;'><img src='{1}' class='flowpaper_socialshare_twitter' style='cursor:pointer;' /></div><div style='position:absolute;left:200px;top:146px;color:#000000;'><img src='{2}' class='flowpaper_socialshare_facebook' style='cursor:pointer;' /></div><div style='position:absolute;left:235px;top:146px;color:#000000;'><img src='{3}' class='flowpaper_socialshare_googleplus' style='cursor:pointer;' /></div><div style='position:absolute;left:270px;top:146px;color:#000000;'><img src='{4}' class='flowpaper_socialshare_tumblr' style='cursor:pointer;' /></div><div style='position:absolute;left:305px;top:146px;color:#000000;'><img src='{5}' class='flowpaper_socialshare_linkedin' style='cursor:pointer;' /></div><div style='position:absolute;left:20px;top:192px;color:#000000;font-weight:bold;'>{11}</div><div style='position:absolute;left:20px;top:208px;color:#000000;font-size:10px;'>{12}</div><div style='position:absolute;left:20px;top:228px;color:#000000;font-size:10px;'><input type='radio' name='InsertCode' class='flowpaper_radio_miniature' checked />&nbsp;{13}&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='InsertCode' class='flowpaper_radio_fullembed' />&nbsp;{14}</div><div style='position:absolute;left:20px;top:251px;color:#000000;font-size:10px;'><textarea class='flowpaper_txtEmbedCode' readonly style='width:507px;height:52px'></textarea></div></div></div>",c.lm,c.km,c.gm,c.hm,c.jm,c.im,c.F.toolbar.la(c.F.toolbar.Ka,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.la(c.F.toolbar.Ka,"DefaultStartPage","Default start page"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.la(c.F.toolbar.Ka,"SharingTitle","Sharing Title"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSite","Embed on Site"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.la(c.F.toolbar.Ka,"Share","Share"),c.F.toolbar.la(c.F.toolbar.Ka,"StartOnCurrentPage","Start on current page"))));c.F.N.find(".flowpaper_radio_miniature, .flowpaper_radio_fullembed, .flowpaper_ddlSharingOptions").on("change",function(){c.Ph();});c.F.N.find(".flowpaper_txtPublicationTitle").on("focus",function(c){-1!=jQuery(c.target).val().indexOf("Sharing Title")&&jQuery(c.target).val("");});c.F.N.find(".flowpaper_txtPublicationTitle").on("blur",function(c){0==jQuery(c.target).val().length&&jQuery(c.target).val("<Sharing Title>");});c.F.N.find(".flowpaper_txtPublicationTitle").on("keydown",function(){c.Ph();});c.Ph();jQuery(c.toolbar.K).find(".flowpaper_bttnSocialShare").bind("click touchstart",function(){c.Ph();jQuery("#modal-socialshare").css("background-color","#dedede");jQuery("#modal-socialshare").smodal({minHeight:c.Ek?90:350,minWidth:550,appendTo:c.F.N});jQuery("#modal-socialshare").parent().css("background-color","#dedede");});jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").bind("click touchstart",function(){eb.browser.msie&&8>=eb.browser.version?c.O.switchMode("BookView",c.O.getCurrPage()):c.O.switchMode("FlipView",c.O.getCurrPage()+1);jQuery(this).addClass("flowpaper_tbbutton_pressed");});jQuery(c.toolbar.K).find(".flowpaper_bttnMore").bind("click touchstart",function(){var d=(jQuery(c.La).width()-jQuery(c.toolbar.K).width())/2-5;"hidden"==jQuery(c.La).find(".toolbarMore").css("visibility")?jQuery(c.La).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"visible"}):jQuery(c.La).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"hidden"});});c.F.N.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("focus",function(){jQuery(this).select();});c.F.N.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("mouseup",function(){return !1;});c.F.N.find(".flowpaper_socialshare_twitter").bind("mousedown",function(){window.open("https://twitter.com/intent/tweet?url="+escape(c.ue(!1))+"&text="+escape(c.qh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Twitter");});c.F.N.find(".flowpaper_socialshare_facebook").bind("mousedown",function(){window.open("http://www.facebook.com/sharer.php?u="+escape(c.ue(!1),"_flowpaper_exturl"));c.F.L.trigger("onSocialMediaShareClicked","Facebook");});c.F.N.find(".flowpaper_socialshare_googleplus").bind("mousedown",function(){window.open("https://plus.google.com/share?url="+escape(c.ue(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","GooglePlus");});c.F.N.find(".flowpaper_socialshare_tumblr").bind("mousedown",function(){window.open("http://www.tumblr.com/share/link?name="+escape(c.qh())+"&url="+escape(c.ue(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Tumblr");});c.F.N.find(".flowpaper_socialshare_linkedin").bind("mousedown",function(){window.open("http://www.linkedin.com/shareArticle?mini=true&url="+escape(c.ue(!1))+"&title="+escape(c.qh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","LinkedIn");});};this.Ph=function(){this.F.N.find(".flowpaper_txtEmbedCode").val('<iframe frameborder="0"  width="400" height="300"  title="'+this.qh()+'" src="'+this.ue()+'" type="text/html" scrolling="no" marginwidth="0" marginheight="0" allowFullScreen></iframe>');this.F.N.find(".flowpaper_socialsharing_txtUrl").val(this.ue(!1));};this.qh=function(){return this.F.N.find(".flowpaper_txtPublicationTitle").length&&-1==this.F.N.find(".flowpaper_txtPublicationTitle").val().indexOf("Sharing Title")?this.F.N.find(".flowpaper_txtPublicationTitle").val():"";};this.ue=function(c){0==arguments.length&&(c=!0);var d=this.F.N.find(".flowpaper_ddlSharingOptions").prop("selectedIndex"),h=this.F.N.find(".flowpaper_radio_miniature").is(":checked"),f=location.protocol+"//"+location.host+location.pathname+(location.search?location.search:"");this.F.document.SharingUrl&&(f=this.F.document.SharingUrl);return f.substring(0)+(0<d?"#page="+this.F.getCurrPage():"")+(0<d&&h&&c?"&":h&&c?"#":"")+(h&&c?"PreviewMode=Miniature":"");};this.initialize=function(){var c=this.F;c.I.rb=c.I.ti();c.I.ih=!1;c.I.rb||(c.renderer.eh=!0);eb.platform.ios&&8>eb.platform.iosversion&&(c.I.rb=!1);if(!c.config.document.InitViewMode||c.config.document.InitViewMode&&"Zine"==c.config.document.InitViewMode||"TwoPage"==c.config.document.InitViewMode||"Flip-SinglePage"==c.config.document.InitViewMode){c.L&&0.7>c.L.width()/c.L.height()&&(c.ef=!0),"Flip-SinglePage"!=c.config.document.InitViewMode||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.xh||(c.ef=!0),c.sb="FlipView",c.config.document.MinZoomSize=1,c.H=c.sb,"TwoPage"==c.H&&(c.H="FlipView"),c.scale=1;}c.config.document.wl=c.config.document.MinZoomSize;null===c.N&&(c.N=jQuery("<div style='"+c.L.attr("style")+";overflow-x: hidden;overflow-y: hidden;' class='flowpaper_viewer_container'/>"),c.N=c.L.wrap(c.N).parent(),c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer"),eb.browser.safari&&c.L.css("-webkit-transform","translateZ(0)"));jQuery(c.L).bind("onCurrentPageChanged",function(d,h){c.Rb&&(jQuery(".activeElement-label").remove(),jQuery(".activeElement").removeClass("activeElement"));var f=location.protocol+"//"+location.host+location.pathname;if(!c.Rb&&c.Cb&&h>=c.Cb.Kp&&0==c.L.find(".flowpaper-leadform").length){if(jQuery.cookie("LEADFORM-"+Q(f))){f=JSON.parse(jQuery.cookie("LEADFORM-"+Q(f))),jQuery.post("https://online.flowpaper.com/api/forms/lead",{visitorName:f.visitorName,visitorEmail:f.visitorEmail,visitorLocation:location.protocol+"//"+location.host+location.pathname},function(){});}else{c.L.append('<div class="flowpaper-leadform">\n\t<div class="flowpaper-leadform-structor">\n\t\t<div class="signup">\n\t\t\t<h2 class="flowpaper-leadform-title" id="signup">'+c.Cb.title+'</h2>\n\t\t\t<div class="flowpaper-leadform-holder">\n'+(c.Cb.Np?'\t\t\t\t<input type="text" class="input" id="txtLeadCaptureName" placeholder="Name" />\n':"")+(c.Cb.Mp?'\t\t\t\t<input type="email" class="input" id="txtLeadCaptureEmail" placeholder="Email" />\n':"")+'\t\t\t</div>\n\t\t\t<button id="bttnLeadFormView" class="submit-btn">View</button>\n\t\t\t<div class="flowpaper-skip-privacy">By clicking View, you confirm that you agree to our <a href="https://flowpaper.com/privacy-policy/" target="_new" style="color:#ffffff;">Privacy Policy</a>.</div>\n\t\t</div>\n'+(c.Cb.mk?'\t\t<div class="flowpaper-skip slide-up">\n\t\t\t<div class="center">\n\t\t\t\t<h2 class="flowpaper-leadform-title" id="skip"><span>or</span>Skip ></h2>\n\t\t\t</div>\n\t\t</div>\n':"")+"\t</div>\n</div>");if(c.Cb.mk){c.L.find(".flowpaper-leadform").find("#skip").on("mouseup touchend",function(d){c.Cb=null;c.L.find(".flowpaper-leadform").remove();d.preventDefault&&d.preventDefault();d.stopImmediatePropagation();d.returnValue=!1;d=c.I.ue();jQuery.cookie("LEADFORM-"+Q(d),JSON.stringify({Tq:(new Date).toDateString()}));});}c.L.find("#bttnLeadFormView").on("mouseup touchend",function(){var h=location.protocol+"//"+location.host+location.pathname;jQuery.post("https://online.flowpaper.com/api/forms/lead",{visitorName:c.L.find("#txtLeadCaptureName").val(),visitorEmail:c.L.find("#txtLeadCaptureEmail").val(),visitorLocation:h},function(d){d&&"ACCEPT"==d.result?(c.Cb=null,jQuery.cookie("LEADFORM-"+Q(h),JSON.stringify({visitorName:c.L.find("#txtLeadCaptureName").val(),visitorEmail:c.L.find("#txtLeadCaptureEmail").val(),visitorLocation:h})),c.L.find(".flowpaper-leadform").remove()):d&&"DENY"==d.result&&(FLOWPAPER.animateDenyEffect(".flowpaper-leadform",25,500,7,"hor"),c.L.find("#txtLeadCaptureEmail").css("color","#ff0000"));});d.preventDefault&&d.preventDefault();d.stopImmediatePropagation();d.returnValue=!1;});c.Cb.active=!0;}}c.V&&c.zn();var f=window.location.search?window.location.search:"",k=eb.platform.mobilepreview?",mobilepreview="+FLOWPAPER.getLocationHashParameter("mobilepreview"):"";c.config.document.RTLMode&&(h=c.getTotalPages()-h+(0==c.getTotalPages()%2?1:0));!window.history.replaceState||c.Rb||!c.renderer.ra&&c.renderer.Ta||(c.I.rn?window.history.pushState(null,null,f+"#page="+h+k):window.history.replaceState(null,null,f+"#page="+h+k));if(jQuery(this).data("TrackingNumber")&&window.createTimeSpent&&!c.Rb&&!Ea()){f=(-1<document.location.pathname.indexOf(".html")?document.location.pathname.substr(0,document.location.pathname.lastIndexOf(".html"))+"/":document.location.pathname)+"#page="+h;FLOWPAPER.nc||(FLOWPAPER.nc=[]);for(var l in FLOWPAPER.nc){FLOWPAPER.nc[l]&&(FLOWPAPER.nc[l].end(),FLOWPAPER.nc[l]=null);}FLOWPAPER.nc[f]||(FLOWPAPER.nc[f]=createTimeSpent(),FLOWPAPER.nc[f].init({location:f,gaTracker:"FlowPaperEventTracker"}));}});jQuery(c.L).bind("onAudioStarted",function(){jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src",jQuery(c.toolbar.K).find(".flowpaper_bttnPlay").attr("src").replace("Play","Pause"));});window.addEventListener("beforeunload",function(){FLOWPAPER.nc||(FLOWPAPER.nc=[]);for(var c in FLOWPAPER.nc){FLOWPAPER.nc[c]&&(FLOWPAPER.nc[c].end(),FLOWPAPER.nc[c]=null);}});};this.cq=function(d){eb.platform.touchonlydevice?c.switchMode("SinglePage",d):c.switchMode("Portrait",d);};FlowPaperViewer_HTML.prototype.tj=function(c){var d=this;if(d.ob!=c){var h=(c-20+1)/2,f=h+9+1,k=1,l=null!=d.I.hb?d.I.hb:"#555555";d.V.find(".flowpaper_fisheye_item").parent().parent().remove();0>d.getTotalPages()-c&&(f=f+(d.getTotalPages()-c)/2+(c-d.getTotalPages())%2);19>d.getTotalPages()&&(f=d.getTotalPages()/2+1);19<c?d.V.find(".flowpaper_fisheye_panelLeft").animate({opacity:1},150):d.V.find(".flowpaper_fisheye_panelLeft").animate({opacity:0},150);c<d.getTotalPages()?d.V.find(".flowpaper_fisheye_panelRight").animate({opacity:1},150):d.V.find(".flowpaper_fisheye_panelRight").animate({opacity:0},150);for(i=h;i<f;i++){d.en(k),k++;}d.V.find(".flowpaper_fisheye_item, .flowpaper_fisheye_panelLeft, .flowpaper_fisheye_panelRight").bind("mouseover",function(){if(!d.pages.animating&&0!=d.V.css("opacity")){var c=(1-Math.min(1,Math.max(0,1/d.Nk)))*d.Lk+d.Ob;d.V.css({"z-index":12,"pointer-events":"auto"});jQuery(this).parent().parent().parent().find("span").css({display:"none"});jQuery(this).parent().find("span").css({display:"inline-block"});jQuery(this).parent().parent().parent().find("p").remove();var e=1==jQuery(this).data("pageindex")?d.lh/2:0;jQuery(this).parent().find("span").after(String.format("<p style='width: 0;height: 0;border-left: 7px solid transparent;border-right: 7px solid transparent;border-top: 7px solid {0};margin-top:-35px;margin-left:{1}px;'></p>",l,c/2-20+e));}});d.V.find(".flowpaper_fisheye_item").bind("mouseout",function(c){d.pages.animating||0==d.V.css("opacity")||(d.Ei=c.pageX,d.Fi=c.pageY,d.te=c.target,jQuery(d.te).get(0),d.bm(),d.V.css({"z-index":9,"pointer-events":"none"}),jQuery(this).parent().find("span").css({display:"none"}),jQuery(this).parent().find("p").remove());});d.V.find("li").each(function(){jQuery(this).bind("mousemove",function(c){d.pages.animating||0<c.buttons||!d.V.is(":visible")||(d.te=c.target,d.Ei=c.pageX,d.Fi=c.pageY,jQuery(d.te).get(0),d.Gi=!0,d.El());});});jQuery(d.V).bind("mouseleave",function(){d.V.find("li").each(function(){var c=this;requestAnim(function(){jQuery(c).find("a").css({width:d.Ob,top:d.Ob/3});},10);});});jQuery(d.pages.J+", "+d.pages.J+"_parent, #"+d.P).bind("mouseover",function(){if(d.V&&(d.V.css({"z-index":9,"pointer-events":"none"}),(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb)&&d.te)){d.te=null;var c=d.V.find("a").find("canvas").data("origwidth"),e=d.V.find("a").find("canvas").data("origheight");d.V.find("li").each(function(){jQuery(this).find("a").css({height:e,width:c,top:d.Ob/3});jQuery(this).find("a").find("canvas").css({height:e,width:c,top:d.Ob/3});});}});}d.ob=c;};FlowPaperViewer_HTML.prototype.zn=function(){var c=this;if((c.da>c.ob||c.da<=c.ob-20)&&-1!=c.ob){var d=c.da>c.ob?20:-20;ka(c.da,c.ob-20,c.ob+20)?c.yh(d):(c.tj(c.da-c.da%20-1+20),window.setTimeout(function(){c.Gc=(c.ob-20+1)/2+1;c.ig=c.Gc+9;0>c.getTotalPages()-c.ob&&(c.ig=c.ig+(c.getTotalPages()-c.ob)/2+(c.ob-c.getTotalPages())%2);c.Gc<=c.getTotalPages()&&c.renderer.re(c,c.Gc,2*c.Nd);},300));}};FlowPaperViewer_HTML.prototype.yh=function(c){var d=this;0!=c&&d.tj(d.ob+c);window.setTimeout(function(){d.Gc=(d.ob-20+1)/2+1;d.ig=d.Gc+9;0>d.getTotalPages()-d.ob&&(d.ig=d.ig+(d.getTotalPages()-d.ob)/2+(d.ob-d.getTotalPages())%2);d.Gc<=d.getTotalPages()&&d.renderer.re(d,d.Gc,2*d.Nd);},300);};FlowPaperViewer_HTML.prototype.en=function(c){var d=0==i?1:2*i+1,h=this;if(h.V){var f=null!=h.I.hb?h.I.hb:"#555555",k="";h.config.document.RTLMode&&(d=h.getTotalPages()-parseInt(d)+1);1!=d||h.config.document.RTLMode?1==d&&h.config.document.RTLMode?k="&nbsp;&nbsp;"+d+"&nbsp;&nbsp;":d==h.getTotalPages()&&0==h.getTotalPages()%2?k=(d-1).toString():d>h.getTotalPages()?k=(d-1).toString():k=d-1+"-"+d:k="&nbsp;&nbsp;"+c+"&nbsp;&nbsp;";k=h.toolbar.Cd(d,k);c=jQuery(String.format("<li><a style='height:{2}px;width:{7}px;top:{9}px;' class='flowpaper_thumbitem'><span style='margin-left:{8}px;background-color:{0}'>{4}</span><canvas data-pageIndex='{5}' data-ThumbIndex='{6}' class='flowpaper_fisheye_item' style='pointer-events: auto;' /></a></li>",f,h.Lf,0.8*h.Nd,h.lh,k,d,c,h.Ob,1==d?h.lh:0,h.Ob/3));c.insertBefore(h.V.find(".flowpaper_fisheye_panelRight").parent());c.find(".flowpaper_fisheye_item").css({opacity:0});jQuery(c).bind("mousedown",function(){1!=!h.scale&&(h.V&&h.V.css({"z-index":9,"pointer-events":"none"}),d>h.getTotalPages()&&(d=h.getTotalPages()),h.gotoPage(d));});}};this.Ak=function(){var c=this.F;if("FlipView"==c.H){0<c.N.find(".flowpaper_fisheye").length&&c.N.find(".flowpaper_fisheye").remove();c.ob=-1;var d=0;0<c.getDimensions(0).length&&(d=c.getDimensions(0)[0].ma/c.getDimensions(0)[0].ya-0.3);c.Fr=25;c.Nd=0.25*c.L.height();c.lh=0.41*c.Nd;c.Lf=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-c.N.offset().top+c.hc;c.Nk=1.25*c.Nd;c.Ob=c.Nd/(3.5-d);c.Tn=2.5*c.Ob;c.Un=-(c.Ob/3);d=null!=c.I.hb?c.I.hb:"#555555";c.I.Fe&&(d=S(d),d="rgba("+d.r+","+d.g+","+d.b+","+c.I.Fe+")");c.N.append(jQuery(String.format("<div class='flowpaper_fisheye' style='position:absolute;pointer-events: none;top:{1}px;z-index:12;left:{4}px;"+(c.I.Me||!c.I.Af?"margin-top:2.5%;":"")+"'><ul><li><div class='flowpaper_fisheye_panelLeft' style='pointer-events: auto;position:relative;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;background-color:{0};left:0px;width:22px;'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_leftArrow' style='position:absolute;top:20%;left:3px'></div></div></li><li><div class='flowpaper_fisheye_panelRight' style='pointer-events: auto;position:relative;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;background-color:{0};left:0px;width:22px;"+(19>=c.getTotalPages()?"display:none":"")+"'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_rightArrow' style='position:absolute;top:20%;left:3px;'></div></div></li></ul></div>",d,c.Lf,0.8*c.Nd,c.lh,c.Un)));c.V=c.N.find(".flowpaper_fisheye");c.V.css({top:c.Lf-(c.V.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.V).offset().top)+c.V.find(".flowpaper_fisheye_panelLeft").height()/2});c.Lk=c.Tn-c.Ob;c.Ei=-1;c.Fi=-1;c.Di=!1;c.Gi=!1;c.xg=c.Ob-0.4*c.Ob;c.Er=c.xg/c.Ob;c.V.find(".flowpaper_fisheye_panelLeft").bind("mousedown",function(){c.yh(-20);});c.V.find(".flowpaper_fisheye_panelRight").bind("mousedown",function(){c.yh(20);});36<c.xg&&(c.xg=36);c.V.find(".flowpaper_fisheye_panelLeft").css({opacity:0,height:c.xg+"px",top:"-10px"});c.V.find(".flowpaper_fisheye_panelRight").css({height:c.xg+"px",top:"-10px"});c.V.css({top:c.Lf-(c.V.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.V).offset().top)+c.V.find(".flowpaper_fisheye_panelLeft").height()/3});c.kh=30<c.V.find(".flowpaper_fisheye_panelLeft").height()?11:0.35*c.V.find(".flowpaper_fisheye_panelLeft").height();c.V.find(".flowpaper_fisheye_leftArrow").Ie(c.kh,c.I.qb?c.I.qb:"#AAAAAA");c.V.find(".flowpaper_fisheye_rightArrow").Ad(c.kh,c.I.qb?c.I.qb:"#AAAAAA");jQuery(c).unbind("onThumbPanelThumbAdded");jQuery(c).bind("onThumbPanelThumbAdded",function(d,g){var f=c.V.find(String.format('*[data-thumbIndex="{0}"]',g.yf));f.data("pageIndex");var l=(g.yf-1)%10;f&&f.animate({opacity:1},300);c.Gc<c.ig&&(c.ob-20+1)/2+l+2>c.Gc&&(c.hq?(c.Gc++,c.hq=!1):c.Gc=(c.ob-20+1)/2+l+2,c.Gc<=c.getTotalPages()&&c.renderer.re(c,c.Gc,2*c.Nd));0==l&&f.height()-10<c.V.find(".flowpaper_fisheye_panelRight").height()&&(c.V.find(".flowpaper_fisheye_panelLeft").css("top",c.V.find(".flowpaper_fisheye_panelLeft").height()-f.height()+5+"px"),c.V.find(".flowpaper_fisheye_panelLeft").height(c.V.find(".flowpaper_fisheye_panelLeft").height()-3),c.V.find(".flowpaper_fisheye_panelRight").css("top",c.V.find(".flowpaper_fisheye_panelRight").height()-f.height()+5+"px"),c.V.find(".flowpaper_fisheye_panelRight").height(c.V.find(".flowpaper_fisheye_panelRight").height()-3));});c.tj(19);c.PreviewMode||c.yh(0);1!=c.scale&&c.V.animate({opacity:0},0);c.Oa&&c.I.Lh();c.ab&&c.I.am();}};this.Fh=function(){if(jQuery(jQuery(c.I.tc).find("leadform")).length){var d=jQuery(jQuery(c.I.tc).find("leadform"));c.Cb={mk:"true"==d.attr("allowToSkip"),Kp:parseInt(d.attr("showOnPage")),title:d.attr("title")&&d.attr("title").length?d.attr("title"):"Enter your details to read this ebook"};d.find("element").each(function(){var d=jQuery(this);"visitorName"==d.attr("id")&&(c.Cb.Np="true"==d.attr("visible"));"visitorEmail"==d.attr("id")&&(c.Cb.Mp="true"==d.attr("visible"));});}jQuery(jQuery(c.I.tc).find("content")).find("page").each(function(){var d=jQuery(this);jQuery(this).find("link").each(function(){c.addLink(jQuery(d).attr("number"),jQuery(this).attr("href"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("showLinkIcon")?"true"==jQuery(this).attr("showLinkIcon"):!1,jQuery(this).attr("showMouseOverText")?"true"==jQuery(this).attr("showMouseOverText"):!1,jQuery(this).attr("mouseOverText"));});jQuery(this).find("video").each(function(){c.addVideo(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizevideo"),jQuery(this).attr("autoplay"));});jQuery(this).find("audio").each(function(){c.bn(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("autoPlayOnPageVisit"),jQuery(this).attr("playViaToolbar"),jQuery(this).attr("hidePlayer"));"true"==jQuery(this).attr("playViaToolbar")&&jQuery(".flowpaper_bttnPlay").show();});jQuery(this).find("iframe").each(function(){c.hk(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizeframe"));});jQuery(this).find("image").each(function(){c.addImage(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("href"),jQuery(this).attr("hoversrc"),jQuery(this).attr("popoversrc"));});});c.I.zk();"FlipView"==c.H&&window.zine&&(c.hc=c.bb&&!c.I.Me?c.I.La.height():0,c.ac&&c.bb&&(c.hc=5),c.document.StartAtPage&&!c.Qg&&(c.Qg=0==c.document.StartAtPage%2||c.I.ka?c.document.StartAtPage:c.document.StartAtPage-1),c.Bf=!1,d=1400,"very fast"==c.I.dd&&(d=300),"fast"==c.I.dd&&(d=700),"slow"==c.I.dd&&(d=2300),"very slow"==c.I.dd&&(d=6300),c.Pj=600,c.va=jQuery(c.pages.J).turn({gradients:!eb.platform.android,acceleration:!0,shadows:c.Md,elevation:50,duration:d,page:c.Qg?c.Qg:1,display:c.I.ka?"single":"double",pages:c.getTotalPages(),cornerDragging:c.document.EnableCornerDragging,disableCornerNavigation:c.I.rb,when:{turning:function(d,e){c.pages.animating=!0;c.pages.dg=null;c.pages.R=0!=e%2||c.I.ka?e:e+1;c.pages.R>c.getTotalPages()&&(c.pages.R=c.pages.R-1);if(1!=e||c.I.ka){c.I.ka||e!=c.getTotalPages()||0!=c.getTotalPages()%2?c.I.ka?c.I.ka&&c.hc&&jQuery(c.pages.J+"_parent").transition({x:0,y:c.hc},0):jQuery(c.pages.J+"_parent").transition({x:0,y:c.hc},c.Pj,"ease",function(){}):(g=c.Bf?c.Pj:0,jQuery(c.pages.J+"_parent").transition({x:+(c.pages.Oc()/4),y:c.hc},g,"ease",function(){}));}else{var g=c.Bf?c.Pj:0;jQuery(c.pages.J+"_parent").transition({x:-(c.pages.Oc()/4),y:c.hc},g,"ease",function(){});}c.da=1<e?c.pages.R:e;c.renderer.pe&&c.Bf&&c.pages.lf(e-1);c.renderer.pe&&c.Bf&&c.pages.lf(e);"FlipView"==c.H&&(!c.pages.pages[e-1]||c.pages.pages[e-1].zc||c.pages.pages[e-1].oa||(c.pages.pages[e-1].zc=!0,c.pages.pages[e-1].ad()),e<c.getTotalPages()&&c.pages.pages[e]&&!c.pages.pages[e].zc&&!c.pages.pages[e].oa&&(c.pages.pages[e].zc=!0,c.pages.pages[e].ad()));},turned:function(d,e){c.I.rb&&c.va?c.pages.ne()||(c.va.css({opacity:1}),c.ag?(c.Bf=!0,c.pages.animating=!1,c.Nc(e),c.pages.oc(),c.L.trigger("onCurrentPageChanged",c.config&&c.config.document&&c.config.document.RTLMode?c.getTotalPages()-e+1:e),null!=c.ee&&(c.ee(),c.ee=null)):jQuery("#"+c.pages.Lb).animate({opacity:0.5},{duration:50,always:function(){jQuery("#"+c.pages.Lb).animate({opacity:0},{duration:50,always:function(){jQuery("#"+c.pages.Lb).css("z-index",-1);c.Bf=!0;c.pages.animating=!1;c.Nc(e);c.pages.oc();c.L.trigger("onCurrentPageChanged",c.config&&c.config.document&&c.config.document.RTLMode?c.getTotalPages()-e+1:e);null!=c.ee&&(c.ee(),c.ee=null);}});}})):(c.Bf=!0,c.pages.animating=!1,c.Nc(e),c.pages.oc(),c.L.trigger("onCurrentPageChanged",c.config&&c.config.document&&c.config.document.RTLMode?c.getTotalPages()-e+1:e),null!=c.ee&&(c.ee(),c.ee=null));},pageAdded:function(d,e){var g=c.pages.getPage(e-1);g.hl();c.I.Ic.uo(g);},foldedPageClicked:function(d,e){0<c.N.find(".simplemodal-container").length||c.oj||(c.pages.ne()||c.pages.animating)&&!c.I.ih||c.Oa||c.ab||requestAnim(function(){window.clearTimeout(c.ag);c.ag=null;e>=c.pages.R&&e<c.getTotalPages()?c.pages.Qj("next"):c.pages.Qj("previous");});},destroyed:function(){c.In&&c.L.parent().remove();}}}),jQuery(c.va).bind("cornerActivated",function(){c.V&&c.V.css({"z-index":9,"pointer-events":"none"});}),jQuery(c.K).trigger("onScaleChanged",1/c.document.MaxZoomSize));if(c.backgroundColor&&-1==c.backgroundColor.indexOf("[")&&!this.backgroundImage){d=S(this.backgroundColor),d="rgba("+d.r+","+d.g+","+d.b+","+(null!=this.Ue?parseFloat(this.Ue):1)+")",jQuery(this.O.L).css("background",d),this.O.bb||jQuery(this.La).css("background",d);}else{if(c.backgroundColor&&0<=c.backgroundColor.indexOf("[")&&!this.backgroundImage){var g=c.backgroundColor.split(",");g[0]=g[0].toString().replace("[","");g[0]=g[0].toString().replace("]","");g[0]=g[0].toString().replace(" ","");g[1]=g[1].toString().replace("[","");g[1]=g[1].toString().replace("]","");g[1]=g[1].toString().replace(" ","");d=g[0].toString().substring(0,g[0].toString().length);g=g[1].toString().substring(0,g[1].toString().length);jQuery(c.O.L).css("backgroundImage","linear-gradient(top, "+d+", "+g+")");}}"FlipView"==c.H&&!eb.platform.touchonlydevice&&c.I.Fj&&c.I.gb?(c.I.Ak(),c.PreviewMode&&c.I.sh()):(c.V&&(c.V.remove(),c.V=null),c.ob=-1);FlowPaperViewer_HTML.prototype.distance=function(c,d,e,g){c=e-c;d=g-d;return Math.sqrt(c*c+d*d);};FlowPaperViewer_HTML.prototype.turn=function(c){var d=this;d.I.Hi&&"None"!=d.I.Hi&&(d.kj&&d.kj.remove(),window.setTimeout(function(){d.kj=new pa(d.I.Vi+"../sounds/"+d.I.Hi+".mp3");d.kj.start();},200));var e=arguments[0],g=2==arguments.length?arguments[1]:null;!d.I.rb||"next"!=e&&"previous"!=e||d.Oa||d.ab?(jQuery("#"+d.pages.Lb).css("z-index",-1),d.va&&(1==arguments.length&&d.va.turn(arguments[0]),2==arguments.length&&d.va.turn(arguments[0],arguments[1]))):!d.pages.ne()&&!d.pages.animating||d.I.ih?requestAnim(function(){window.clearTimeout(d.ag);d.ag=null;d.pages.Qj(e,g);}):(window.clearTimeout(d.ag),d.ag=window.setTimeout(function(){d.turn(e,g);},500));};FlowPaperViewer_HTML.prototype.El=function(){var c=this;c.Di||(c.Di=!0,c.Kk&&window.clearTimeout(c.Kk),c.Kk=requestAnim(function(){c.Sn(c);},40));};FlowPaperViewer_HTML.prototype.Sn=function(c){c.bm();c.Di=!1;c.Gi&&(c.Gi=!1,c.El());};FlowPaperViewer_HTML.prototype.bm=function(){var c=this;c.V.find("li").each(function(){var d=c.te;if(!(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb)||c.te){if(d&&jQuery(d).get(0).tagName&&"IMG"!=jQuery(d).get(0).tagName&&"LI"!=jQuery(d).get(0).tagName&&"DIV"!=jQuery(d).get(0).tagName&&"CANVAS"!=jQuery(d).get(0).tagName){c.V.find("li").each(function(){jQuery(this).find("a").css({width:c.Ob,top:c.Ob/3});});}else{var d=jQuery(this).offset().left+jQuery(this).outerWidth()/2,e=jQuery(this).offset().top+jQuery(this).outerHeight()/2,d=c.distance(d,e,c.Ei,c.Fi),d=(1-Math.min(1,Math.max(0,d/c.Nk)))*c.Lk+c.Ob,e=jQuery(this).find("a").find("canvas").data("origwidth"),g=jQuery(this).find("a").find("canvas").data("origheight"),f=d/e;e&&g&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb?(jQuery(this).find("a").animate({height:g*f,width:d,top:d/3},0),jQuery(this).find("a").find("canvas").css({height:g*f,width:d,top:d/3}),c.$r=c.te):jQuery(this).find("a").css({width:d,top:d/3}));}}});};jQuery(c.toolbar.K).css("visibility","visible");c.V&&c.V.css({"z-index":9,"pointer-events":"none"});c.I.La.animate({opacity:1},300);c.I.Tp&&c.expandOutline();};this.dispose=function(){c.va.turn("destroy");delete c.va;};this.Hg=function(){c.va=null;};this.switchMode=function(d,g){c.va&&c.va.turn("destroy");c.va=null;"Portrait"==d||"SinglePage"==d?(c.Zd=c.L.height(),c.Zd=c.Zd-jQuery(c.K).outerHeight()+20,c.L.height(c.Zd)):(c.Qg=0!=g%2?g-1:g,c.Zd=null,c.L.css({left:"0px",top:"0px",position:"relative",width:c.L.parent().width()+"px",height:c.L.parent().height()+"px"}),c.lk());"FlipView"==c.H&&"FlipView"!=d&&(c.config.document.MinZoomSize=1,jQuery(c.pages.J).turn("destroy"),c.V&&c.V.remove());c.pages.ge&&c.pages.rd&&c.pages.rd();"FlipView"!=d&&c.config.document.wl&&(c.config.document.MinZoomSize=c.config.document.wl);"FlipView"==d&&(c.scale=1,c.H="FlipView",c.I.rb=c.I.ti());};this.ti=function(){return c.config.document.EnableWebGL&&!eb.platform.lb&&!eb.platform.android&&!eb.browser.xh&&!c.I.ka&&eb.browser.capabilities.sq&&"Flip-SinglePage"!=c.config.document.InitViewMode&&window.THREE;};this.gotoPage=function(d,g){"FlipView"==c.H&&c.pages.jo(d,g);};this.Nc=function(d){if("FlipView"==c.H){1<c.pages.R&&1==c.scale?jQuery(c.pages.J+"_panelLeft").animate({opacity:1},100):1==c.pages.R&&jQuery(c.pages.J+"_panelLeft").animate({opacity:0},100);if(c.pages.R<c.getTotalPages()&&1.1>=c.scale){1<c.getTotalPages()&&jQuery(c.pages.J+"_panelRight").animate({opacity:1},100),c.V&&"1"!=c.V.css("opacity")&&window.setTimeout(function(){1.1>=c.scale&&(c.V.show(),c.V.animate({opacity:1},100));},700);}else{if(1.1<c.scale||c.pages.R+2>=c.getTotalPages()||0!=c.getTotalPages()%2&&c.pages.R+1>=c.getTotalPages()){jQuery(c.pages.J+"_panelRight").animate({opacity:0},100),1==c.scale&&0==c.getTotalPages()%2&&c.pages.R-1<=c.getTotalPages()?c.V&&(c.V.show(),c.V.animate({opacity:1},100)):c.V&&c.V.animate({opacity:0},0,function(){c.V.hide();});}}eb.platform.touchonlydevice||(window.clearTimeout(c.Ao),c.Ao=setTimeout(function(){0!=parseInt(d)%2&&(d=d-1);var g=[d-1];1<d&&parseInt(d)+1<=c.document.numPages&&!c.ka&&g.push(d);for(var h=0;h<g.length;h++){jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).stop(),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).css({background:c.linkColor,opacity:c.Tc}),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).animate({opacity:0},{duration:1700,complete:function(){}});}},100));}};this.Lh=function(){this.F.V&&(this.Mk=this.F.V.css("margin-left"),this.F.V.animate({"margin-left":parseFloat(this.F.V.css("margin-left"))+0.5*this.F.Oa.width()+"px"},200));};this.am=function(){this.F.V&&(this.Mk=this.F.V.css("margin-left"),this.F.V.animate({"margin-left":parseFloat(this.F.V.css("margin-left"))+0.5*this.F.ab.width()+"px"},200));};this.Sf=function(){this.F.V&&this.F.V.animate({"margin-left":parseFloat(this.Mk)+"px"},200);};this.resize=function(d,g,h,f){if(!$(".flowpaper_videoframe").length||!eb.platform.ios){if(c.hc=c.bb&&!c.I.Me?c.I.La.height():0,c.I.zk(),"FlipView"==c.H&&c.pages){var k=-1<c.L.get(0).style.width.indexOf("%"),l=-1<c.L.get(0).style.height.indexOf("%");k&&(c.Oa||c.ab)&&(c.L.data("pct-width",c.L.get(0).style.width),k=!1);l&&(c.Oa||c.ab)&&(c.L.data("pct-height",c.L.get(0).style.height),l=!1);k||!c.L.data("pct-width")||c.Oa||c.ab||(c.L.css("width",c.L.data("pct-width")),k=!0);l||!c.L.data("pct-height")||c.Oa||c.ab||(c.L.css("height",c.L.data("pct-height")),l=!0);c.L.css({width:k?c.L.get(0).style.width:d-(c.Oa?c.Oa.width():0)-(c.ab?c.ab.width():0),height:l?c.L.get(0).style.height:g-35});d=c.L.width();g=c.L.height();k&&l||(d-5<jQuery(document.body).width()&&d+5>jQuery(document.body).width()&&g+37-5<jQuery(document.body).height()&&g+37+5>jQuery(document.body).height()?(c.N.css({width:"100%",height:"100%"}),c.I.Me&&jQuery(jQuery(c.L).css("height",jQuery(c.L).height()+"px"))):null!=h&&1!=h||c.N.css({width:d+(c.Oa?c.Oa.width():0)+(c.ab?c.ab.width():0),height:g+37}));c.pages.resize(d,g,f);c.V&&c.L&&(c.Lf=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-jQuery(c.N).offset().top+c.hc,c.V.css({top:c.Lf-(c.V.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.V).offset().top)+c.V.find(".flowpaper_fisheye_panelLeft").height()/2}),c.Nd=0.25*c.L.height());for(d=0;d<c.document.numPages;d++){c.pages.Ra(d)&&(c.pages.pages[d].Ml=!0,c.pages.pages[d].oa=!1);}window.clearTimeout(c.tq);c.tq=setTimeout(function(){c.oc();c.pages.Fa();},350);}}};this.setCurrentCursor=function(){};this.Dp=function(c,d){var h=this.I;"brandingUrl"==c&&(h.O.config.document.BrandingUrl=d);if("brandingLogo"==c){if((h.O.config.document.BrandingLogo=d)&&0<d.length){var f=new Image;jQuery(f).bind("load",function(){h.O.N.append(String.format("<div class='flowpaper_custom_logo'><a href='#' data-brandingUrl='{1}'><img src='{0}' border='0' width='{2}'></a></div>",h.O.config.document.BrandingLogo,h.O.config.document.BrandingUrl?h.O.config.document.BrandingUrl:"#",150<this.width?150:this.width));h.O.N.find(".flowpaper_custom_logo").bind("click touchstart",function(c){jQuery(h.O.L).trigger("onExternalLinkClicked",$(this).find("a").attr("data-brandingUrl"));c.preventDefault&&c.preventDefault();c.stopImmediatePropagation();c.returnValue=!1;});});jQuery(f).attr("src",h.O.config.document.BrandingLogo);}else{h.O.N.find(".flowpaper_custom_logo").remove();}}if("backgroundColor"==c||"backgroundAlpha"==c||"stretchBackground"==c||"backgroundImage"==c){if("backgroundColor"==c&&(h.backgroundColor=d),"backgroundAlpha"==c&&(h.Ue=d),"stretchBackground"==c&&(h.Ij=d),"backgroundImage"==c&&(h.backgroundImage=d),h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.Ij?(jQuery(h.O.L).css("background-color",""),jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.O.L).css("background-size","cover")):(jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.O.L).css("background-size",""),jQuery(h.O.L).css("background-position","center"),jQuery(h.O.N).css("background-position","center"),jQuery(h.O.L).css("background-repeat","no-repeat"),jQuery(h.O.N).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){f=S(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Ue?parseFloat(h.Ue):1)+")",jQuery(h.O.L).css("background",f),jQuery(h.O.N).css("background",f),h.O.bb||jQuery(h.La).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var k=h.backgroundColor.split(",");k[0]=k[0].toString().replace("[","");k[0]=k[0].toString().replace("]","");k[0]=k[0].toString().replace(" ","");k[1]=k[1].toString().replace("[","");k[1]=k[1].toString().replace("]","");k[1]=k[1].toString().replace(" ","");f=k[0].toString().substring(0,k[0].toString().length);k=k[1].toString().substring(0,k[1].toString().length);jQuery(h.O.L).css("background","");jQuery(h.O.N).css({background:"linear-gradient("+f+", "+k+")"});jQuery(h.O.N).css({background:"-webkit-linear-gradient("+f+", "+k+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.O.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+k+"');"),jQuery(h.O.N).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+k+"');"));}else{jQuery(h.O.N).css("background-color","#222222");}}}}"shadowAlpha"==c&&(h.uf=h.F.uf=d,jQuery(".flowpaper_zine_page_left").css("background-image","-webkit-gradient(linear,left bottom,right bottom,color-stop(0.93, rgba(255,255,255,0)),color-stop(1, rgba(125,124,125,"+h.uf+")))"),jQuery(".flowpaper_zine_page_right").css("background-image","-webkit-gradient(linear,right bottom,left bottom,color-stop(0.93, rgba(255,255,255,0)),color-stop(1, rgba(125,124,125,"+h.uf+")))"),h.I.rb&&h.F.pages.rd());if("panelColor"==c||"navPanelBackgroundAlpha"==c){"panelColor"==c&&(h.hb=d),"navPanelBackgroundAlpha"==c&&(h.Fe=d),h.hb?(jQuery(h.toolbar.K).css("background-color",h.hb),jQuery(h.toolbar.K).css("border-color",h.hb),h.Me&&jQuery(h.toolbar.K+"_wrap").css("background-color",h.hb)):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555"),f=S(h.hb),jQuery(h.F.pages.J+"_panelLeft").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.Fe+")"),jQuery(h.F.pages.J+"_panelRight").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.Fe+")");}"linkColor"==c&&(h.linkColor=d,h.O.linkColor=h.linkColor,jQuery("a.flowpaper_interactiveobject_documentViewer").css("background-color",h.linkColor),h.Nc(h.O.getCurrPage()));"linkAlpha"==c&&(h.Tc=d,h.O.Tc=h.Tc,jQuery("a.flowpaper_interactiveobject_documentViewer").css("opacity",h.Tc),h.Nc(h.O.getCurrPage()));"arrowColor"==c&&(h.O.qb=d,h.O.I.qb=d,h.O.V.find(".flowpaper_fisheye_leftArrow").Ie(h.O.kh,h.O.I.qb?h.O.I.qb:"#AAAAAA"),h.O.V.find(".flowpaper_fisheye_rightArrow").Ad(h.O.kh,h.O.I.qb?h.O.I.qb:"#AAAAAA"),f=jQuery(h.O.pages.J+"_arrowleft").css("border-bottom"),f=parseInt(f.substr(0,f.indexOf("px"))),jQuery(h.O.pages.J+"_arrowleft").Ie(f,h.O.qb),jQuery(h.O.pages.J+"_arrowright").Ad(f,h.O.qb),h.O.I.wg&&(f=jQuery(h.O.pages.J+"_arrowleftbottom").css("border-bottom"),f=f.substr(0,f.indexOf("px")),jQuery(h.O.pages.J+"_arrowleftbottom").Ie(f,h.O.qb),jQuery(h.O.pages.J+"_arrowleftbottommarker").rj(f,h.O.qb,jQuery(h.O.pages.J+"_arrowleftbottom")),jQuery(h.O.pages.J+"_arrowrightbottom").Ad(f,h.O.qb),jQuery(h.O.pages.J+"_arrowrightbottommarker").sj(f,h.O.qb,jQuery(h.O.pages.J+"_arrowrightbottom"))));"enablePageShadows"==c&&(h.O.Md=d,h.O.Md?(jQuery(".flowpaper_zine_page_left_noshadow").addClass("flowpaper_zine_page_left").removeClass("flowpaper_zine_page_left_noshadow"),jQuery(".flowpaper_zine_page_right_noshadow").addClass("flowpaper_zine_page_right").removeClass("flowpaper_zine_page_right_noshadow")):(jQuery(".flowpaper_zine_page_left").addClass("flowpaper_zine_page_left_noshadow").removeClass("flowpaper_zine_page_left"),jQuery(".flowpaper_zine_page_right").addClass("flowpaper_zine_page_right_noshadow").removeClass("flowpaper_zine_page_right")),h.O.Md?jQuery(".flowpaper_shadow_disabled").removeClass("flowpaper_shadow_disabled").addClass("flowpaper_shadow"):jQuery(".flowpaper_shadow").removeClass("flowpaper_shadow").addClass("flowpaper_shadow_disabled"),jQuery(window).trigger("resize"));if("arrowSize"==c){h.O.I.Hf=h.O.pages.ia=h.O.Hf=d;jQuery(window).trigger("resize");var f=h.O.pages,k=h.O.I.qb?h.O.I.qb:"#AAAAAA",l=f.gf();jQuery(f.J+"_arrowleft").Ie(f.ia-0.4*f.ia,k);jQuery(f.J+"_arrowright").Ad(f.ia-0.4*f.ia,k);jQuery(f.J+"_arrowleft").css({left:(f.ia-(f.ia-0.4*f.ia))/2+"px",top:l/2-f.ia+"px"});jQuery(f.J+"_arrowright").css({left:(f.ia-(f.ia-0.4*f.ia))/2+"px",top:l/2-f.ia+"px"});}};this.On=function(c,d){var f=this.I;d?jQuery(".flowpaper_"+c).show():jQuery(".flowpaper_"+c).hide();"txtPageNumber"==c&&(d?jQuery(".flowpaper_lblTotalPages").show():jQuery(".flowpaper_lblTotalPages").hide());"txtSearch"==c&&(d?jQuery(".flowpaper_bttnFind").show():jQuery(".flowpaper_bttnFind").hide());"firstLastButton"==c&&(f.O.I.wg=d,f.O.I.wg?(jQuery(f.O.pages.J+"_arrowleftbottom").css("opacity",1),jQuery(f.O.pages.J+"_arrowleftbottommarker").css("opacity",1),jQuery(f.O.pages.J+"_arrowrightbottom").css("opacity",1),jQuery(f.O.pages.J+"_arrowrightbottommarker").css("opacity",1)):(jQuery(f.O.pages.J+"_arrowleftbottom").css("opacity",0),jQuery(f.O.pages.J+"_arrowleftbottommarker").css("opacity",0),jQuery(f.O.pages.J+"_arrowrightbottom").css("opacity",0),jQuery(f.O.pages.J+"_arrowrightbottommarker").css("opacity",0)));if("toolbarstd"==c){var m=f.O.pages.gf(),k=f.O.I.La.height();jQuery(f.O.pages.J+"_parent").css("padding-top","");jQuery(f.O.pages.J+"_parent").css("margin-top","");f.Af=d;f.O.pages.Ib=f.O.ac&&!f.O.I.gb||0==k?(f.L.height()-m)/2:0;f.O.pages.Ib=0==f.O.pages.Ib&&f.O.bb&&!f.O.ac&&0<k&&!f.O.I.gb?(f.L.height()-m)/2-k:f.O.pages.Ib;f.O.bb||f.O.I.gb?0<f.O.pages.Ib&&!f.O.I.gb&&jQuery(f.O.pages.J+"_parent").css("padding-top",f.O.pages.Ib+"px"):jQuery(f.O.pages.J+"_parent").css("margin-top","2.5%");jQuery(window).trigger("resize");}"navPanelsVisible"==c&&(f.rf=d,f.rf?(jQuery(f.O.pages.J+"_panelLeft").css("opacity",1),jQuery(f.O.pages.J+"_panelRight").css("opacity",1)):(jQuery(f.O.pages.J+"_panelLeft").css("opacity",0),jQuery(f.O.pages.J+"_panelRight").css("opacity",0)));"fisheye"==c&&(f.gb=d,m=f.O.pages.gf(),k=f.O.I.La.height(),jQuery(f.O.pages.J+"_parent").css("padding-top",""),jQuery(f.O.pages.J+"_parent").css("margin-top",""),f.O.pages.Ib=f.O.ac&&!f.O.I.gb||0==k?(f.L.height()-m)/2:0,f.O.pages.Ib=0==f.O.pages.Ib&&f.O.bb&&!f.O.ac&&0<k&&!f.O.I.gb?(f.L.height()-m)/2-k:f.O.pages.Ib,f.O.bb||f.O.I.gb?0<f.O.pages.Ib&&!f.O.I.gb?(jQuery(f.O.pages.J+"_parent").css("margin-top",""),jQuery(f.O.pages.J+"_parent").css("padding-top",f.O.pages.Ib+"px")):jQuery(f.O.pages.J+"_parent").css("padding-top",""):(jQuery(f.O.pages.J+"_parent").css("padding-top",""),jQuery(f.O.pages.J+"_parent").css("margin-top","2.5%")),f.gb?jQuery(".flowpaper_fisheye").css("visibility",""):jQuery(".flowpaper_fisheye").css("visibility","hidden"),jQuery(window).trigger("resize"));};window[this.O.ze].setStyleSetting=this.Dp;FLOWPAPER.setStyleSetting=function(c,d){$FlowPaper("documentViewer").setStyleSetting(c,d);};window[this.O.ze].enableDisableUIControl=this.On;FLOWPAPER.enableDisableUIControl=function(c,d){$FlowPaper("documentViewer").enableDisableUIControl(c,d);};window[this.O.ze].changeConfigSetting=this.yn;window[this.O.ze].loadUIConfig=function(c){var d=this;jQuery("#"+d.Pa+"_wrap").remove();d.Toolbar=d.N.prepend("<div id='"+d.Pa+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent();d.I.La=d.ac?jQuery("#"+d.Pa).wrap("<div id='"+d.Pa+"_wrap' style='"+(d.bb?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Pa).wrap("<div id='"+d.Pa+"_wrap' style='"+(d.bb?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;'></div>").parent();d.I.ql(c,function(){d.toolbar.bindEvents(d.L);d.toolbar.Fc=null;d.toolbar.kk(d.config.document.MinZoomSize,d.config.document.MaxZoomSize);});};};window.FlowPaper_Resources=function(f){this.F=f;this.sa={};this.sa.uq="";this.sa.Vm="";this.sa.Sq="";this.sa.Gm="";this.sa.Um="";this.sa.Xm="";this.sa.Wm="";this.sa.Rm="";this.sa.Qm="";this.sa.Jm="";this.sa.Dm="";this.sa.Em="";this.sa.Zq="";this.sa.Nq="";this.sa.Im="";this.sa.Tm="";this.sa.Iq="";this.sa.Kq="";this.sa.Lq="";this.sa.Rq="";this.sa.Pq="";this.sa.Wq="";this.sa.Xq="";this.sa.Yq="";this.sa.Vq="";this.sa.$q="";this.fp=function(){var c=this.F,d=this,e=-1===document.URL.indexOf("http://")&&-1===document.URL.indexOf("https://");Ea();var g=window.navigator.kg||window.matchMedia&&window.matchMedia("(display-mode: standalone)").matches,f=!0,f=f="",f=["Z1n3d0ma1n"],f=f[0],f=c.resources.vm(f,g&&e);f||(f=["d0ma1n"],f=f[0]+"#FlexPaper-1-4-5-Annotations-1.0.10",f=c.resources.vm(f,g&&e));f||alert("License key not accepted. Please check your configuration settings.");jQuery(".flowpaper_tbloader").hide();f&&(c.cj=new Image,jQuery(c.cj).bind("load",function(){jQuery(d).trigger("onPostinitialized");}),c.cj.src=c.ke);};this.vm=function(c,d){var e=this.F,g=Math.pow(9,3),f=Math.pow(6,2),m=null!=e.config.key&&0<e.config.key.length&&0<=e.config.key.indexOf("@"),k=function(){var c=Array.prototype.slice.call(arguments),d=c.shift();return c.reverse().map(function(c,e){return String.fromCharCode(c-d-28-e);}).join("");}(14,144,124)+(20196).toString(36).toLowerCase()+function(){var c=Array.prototype.slice.call(arguments),d=c.shift();return c.reverse().map(function(c,e){return String.fromCharCode(c-d-9-e);}).join("");}(27,150,102,155)+(928).toString(36).toLowerCase(),k=parseInt(g)+Fa(!0)+k,f=parseInt(f)+Fa(!0)+"AdaptiveUId0ma1n",g=Q(parseInt(g)+(m?e.config.key.split("$")[0]:Fa(!0))+c),f=Q(f),k=Q(k),g="$"+g.substring(11,30).toLowerCase(),f="$"+f.substring(11,30).toLowerCase(),k="~"+k.substring(11,30).toLowerCase();return validated=d?Ea()||e.config.key==k:Ea()||e.config.key==g||e.config.key==f||m&&g=="$"+e.config.key.split("$")[1];};this.initialize=function(){var c=this.F;c.N.prepend(String.format("<div id='modal-I' class='modal-content'><p><a href='https://flowpaper.com/?ref=FlowPaper' target='_new'><img src='{0}' style='display:block;width:100px;heigh:auto;padding-bottom:10px;' border='0' /></a></p>FlowPaper  web PDF viewer 3.4.0. Developed by Devaldi Ltd.<br/><a href='https://flowpaper.com/' target='_new'>Click here for more information about this online PDF viewer</a></div>","data:image/png;base64,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"));c.about=FLOWPAPER.about=function(){jQuery("#modal-I").smodal();};c.config.document.BrandingLogo&&3<c.config.document.BrandingLogo.length&&jQuery(c.L).bind("onPagesContainerCreated",function(){var d=new Image;jQuery(d).bind("load",function(){c.N.append(String.format("<div class='flowpaper_custom_logo'><a href='#' data-brandingUrl='{1}'><img src='{0}' border='0' width='{2}'></a></div>",c.config.document.BrandingLogo,c.config.document.BrandingUrl?c.config.document.BrandingUrl:"#",150<this.width?150:this.width));c.N.find(".flowpaper_custom_logo").bind("click",function(){jQuery(c.L).trigger("onExternalLinkClicked",$(this).find("a").attr("data-brandingUrl"));});});jQuery(d).attr("src",c.config.document.BrandingLogo);});};};function Fa(f){var c=window.location.href.toString();0==c.length&&(c=document.URL.toString());if(f){var d;d=c.indexOf("///");0<=d?d=d+3:(d=c.indexOf("//"),d=0<=d?d+2:0);c=c.substr(d);d=c.indexOf(":");var e=c.indexOf("/");0<d&&0<e&&d<e||(0<e?d=e:(e=c.indexOf("?"),d=0<e?e:c.length));c=c.substr(0,d);}if(f&&(f=c.split("."))&&(d=f.length,!(2>=d))){if(!(e=-1!="co,com,net,org,web,gov,edu,".indexOf(f[d-2]+","))){b:{for(var e=".ac.uk .ab.ca .bc.ca .mb.ca .nb.ca .nf.ca .nl.ca .ns.ca .nt.ca .nu.ca .on.ca .pe.ca .qc.ca .sk.ca .yk.ca".split(" "),g=0;g<e.length;){var h=e[g];if(-1!==c.indexOf(h,c.length-h.length)){e=!0;break b;}g++;}e=!1;}}c=e?f[d-3]+"."+f[d-2]+"."+f[d-1]:f[d-2]+"."+f[d-1];}return c;}function Ea(){var f=Fa(!1),c=window.navigator.kg||window.matchMedia&&window.matchMedia("(display-mode: standalone)").matches,d=-1===document.URL.indexOf("http://")&&-1===document.URL.indexOf("https://");return c||d?!1:0==f.indexOf("http://localhost/")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://192.168.")||0==f.indexOf("http://127.0.0.1")||0==f.indexOf("https://localhost/")||0==f.indexOf("https://localhost:")||0==f.indexOf("https://localhost:")||0==f.indexOf("https://192.168.")||0==f.indexOf("https://127.0.0.1")||0==f.indexOf("http://10.1.1.")||0==f.indexOf("http://git.devaldi.com")||0==f.indexOf("https://online.flowpaper.com")||0==f.indexOf("http://online.flowpaper.com")||0==f.indexOf("file://")?!0:0==f.indexOf("http://")?!1:0==f.indexOf("/")?!0:!1;}var Ca=function(){function f(){}f.prototype={Qd:function(c,d){if(d.Wa&&(d.Zi||d.create(d.pages.J),!d.initialized)){c.wb=d.wb=c.config.MixedMode;c.sm=!1;c.tm=!1;var e=d.T;0==jQuery(e).length&&(e=jQuery(d.Dc).find(d.T));if("FlipView"==d.H){var g=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(g="flowpaper_zine_page_left_noshadow");d.F.Md||(g=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");jQuery(e).append("<div id='"+d.aa+"_canvascontainer' style='height:100%;width:100%;position:relative;'><canvas id='"+c.Da(1,d)+"' style='position:relative;left:0px;top:0px;height:100%;width:100%;"+(c.sm?"":"background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;")+"display:none;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_flipview_canvas flowpaper_flipview_page' width='100%' height='100%' ></canvas><canvas id='"+c.Da(2,d)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;display:none;' class='flowpaper_border flowpaper_interactivearea flowpaper_grab flowpaper_rescale flowpaper_flipview_canvas_highres flowpaper_flipview_page' width='100%' height='100%'></canvas><div id='"+d.aa+"_textoverlay' style='position:absolute;z-index:11;left:0px;top:0px;width:100%;height:100%;' class='"+g+"'></div></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+c.Da(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Da(2,d)).css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}eb.browser.mozilla&&(jQuery("#"+c.Da(1,d)).css("backface-visibility","hidden"),jQuery("#"+c.Da(2,d)).css("backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","hidden"));}d.initialized=!0;}},Hp:function(c,d){if("FlipView"==d.H&&0==jQuery("#"+c.Da(1,d)).length||"FlipView"==d.H&&d.oa){return !1;}"FlipView"!=d.H||null!=d.context||d.zc||d.oa||(d.ad(),d.zc=!0);return !0;},Gp:function(c,d){return 1==d.scale||1<d.scale&&d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2;},Vb:function(c,d,e,g){1==d.scale&&eb.browser.safari?(jQuery("#"+c.Da(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Da(2,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+c.Da(1,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.Da(2,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if("FlipView"!=d.H||0!=jQuery("#"+c.Da(1,d)).length){if("FlipView"!=d.H||!d.oa){if("FlipView"==d.H&&1<d.scale){if(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2){jQuery(c).trigger("UIBlockingRenderingOperation",{P:c.P,ap:!0});var f=3>d.scale?2236:3236;magnifier=f*Math.sqrt(1/(d.za()*d.Ha()));d.fa.width=d.za()*magnifier;d.fa.height=d.Ha()*magnifier;}else{c.Ci=!1,d.fa.width=2*d.za(),d.fa.height=2*d.Ha(),d.oa=!0,jQuery("#"+d.Jb).Ec(),c.cl(d),eb.platform.touchdevice&&(null!=c.Ui&&window.clearTimeout(c.Ui),c.Ui=setTimeout(function(){},1500)),null!=g&&g();}}else{d.wb&&c.pageImagePattern&&!d.xi?(d.Uc&&d.Uc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2)),d.dimensions.loaded||c.yc(d.pageNumber+1,!0,function(){c.Kc(d);},!0,d),d.$m=!0,c.sm?(d.W=new Image,jQuery(d.W).bind("load",function(){d.Vr=!0;d.hf=!0;d.jf=this.height;d.kf=this.width;c.Fp(d);d.dimensions.ma>d.dimensions.width&&(d.dimensions.width=d.dimensions.ma,d.dimensions.height=d.dimensions.ya);d.zb=!1;c.Kd();}),jQuery(d.W).attr("src",c.ga(d.pageNumber+1))):null==d.W?(d.zb=!0,d.W=new Image,jQuery(d.W).bind("load",function(){window.clearTimeout(d.ye);jQuery(d.Ub).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.zb=!1;c.Kd();}),jQuery(d.W).bind("error",function(){jQuery.ajax({url:this.src,type:"HEAD",error:function(f){if(404==f.status||500<=f.status){d.xi=!0,d.zb=!1,d.$m=!0,d.oa=!1,1==d.pageNumber&&d.F.pages.rd&&d.F.pages.rd(),c.Vb(d,e,g);}},success:function(){}});}),jQuery(d.W).bind("error",function(){window.clearTimeout(d.ye);jQuery(d.Ub).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.zb=!1;c.Kd();}),jQuery(d.W).attr("src",c.ga(d.pageNumber+1)),d.ye=setTimeout(function(){d.oa||(jQuery(d.Ub).remove(),jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.zb=!1,c.Kd());},3000),c.Ui=setTimeout(function(){d.zb&&("none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.zb=!1,c.Kd());},6000)):d.zb||"none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),c.df(d,g)):!c.ra&&c.Ta?(magnifier=1236*Math.sqrt(1/(d.za()*d.Ha())),d.fa.width=d.za()*magnifier,d.fa.height=d.Ha()*magnifier):(d.fa.width=1*d.za(),d.fa.height=1*d.Ha());}}}},oq:function(c,d){return"FlipView"==d.H;},Dj:function(c,d){"FlipView"==d.H&&(1<d.scale?(d.Jb=c.Da(2,d),d.Uf=c.Da(1,d)):(d.Jb=c.Da(1,d),d.Uf=c.Da(2,d)));},df:function(c,d){"FlipView"==d.H&&(1<d.scale?requestAnim(function(){var e=jQuery("#"+c.Da(2,d)).get(0);eb.browser.safari&&c.tm&&(jQuery(e).css("background-image","url('"+e.toDataURL()+"')"),e.width=100,e.height=100);jQuery("#"+c.Da(1,d)).Kb();}):(jQuery("#"+c.Da(1,d)).Ec(),jQuery("#"+c.Da(2,d)).Kb(),eb.browser.safari&&c.tm&&jQuery("#"+c.Da(2,d)).css("background-image","")),d.wb&&c.pageImagePattern&&1==d.scale||jQuery(d.Ub).remove());jQuery(c).trigger("UIBlockingRenderingOperationCompleted",{P:c.P});c.Kd();}};CanvasPageRenderer.prototype.Ch=function(c){return"FlipView"==c.H?1:1.4;};CanvasPageRenderer.prototype.Fp=function(c){var d=c.fa;if(1==c.scale&&d&&(100==d.width||jQuery(d).hasClass("flowpaper_redraw"))&&d){d.width=c.za();d.height=c.Ha();var e=d.getContext("2d"),g=document.createElement("canvas"),f=g.getContext("2d");g.width=c.W.width;g.height=c.W.height;f.drawImage(c.W,0,0,g.width,g.height);f.drawImage(g,0,0,0.5*g.width,0.5*g.height);e.drawImage(g,0,0,0.5*g.width,0.5*g.height,0,0,d.width,d.height);jQuery(d).removeClass("flowpaper_redraw");1==c.scale&&(jQuery(c.T+"_canvas").Ec(),jQuery(c.T+"_canvas_highres").Kb());1<c.pageNumber&&jQuery(c.T+"_pixel").css({width:2*c.za(),height:2*c.Ha()});}jQuery(c.Ub).remove();};CanvasPageRenderer.prototype.re=function(c,d,e){var g=this;if(null!=g.pageThumbImagePattern&&0<g.pageThumbImagePattern.length){for(var f=0,m=null,k=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height,l=1;l<d;l++){f+=2;}0.5>k&&g.config.JSONDataType&&c.getDimensions(0)[0].ma<c.getDimensions(0)[0].ya&&(k=0.7);var n=1==d?f+1:f,p=new Image;jQuery(p).bind("load",function(){var m=d%10;0==m&&(m=10);var l=c.N.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',m)).get(0);l.width=e*k-2;l.height=e/k/2-2;var r=jQuery(l).parent().width()/l.width;l.getContext("2d").fillStyle="#999999";var t=(l.height-l.height*k)/2,w=l.height*k;0>t&&(l.height+=l.width-w,t+=(l.width-w)/2);eb.browser.msie&&jQuery(l).css({width:l.width*r+"px",height:l.height*r+"px"});jQuery(l).data("origwidth",l.width*r);jQuery(l).data("origheight",l.height*r);l.getContext("2d").fillRect(1==d?l.width/2:0,t,n==c.getTotalPages()?l.width/2+2:l.width+2,w+2);l.getContext("2d").drawImage(p,1==d?l.width/2+1:1,t+1,l.width/2,w);if(1<d&&f+1<=c.getTotalPages()&&n+1<=c.getTotalPages()){var x=new Image;jQuery(x).bind("load",function(){l.getContext("2d").drawImage(x,l.width/2+1,t+1,l.width/2,w);l.getContext("2d").strokeStyle="#999999";l.getContext("2d").moveTo(l.width-1,t);l.getContext("2d").lineTo(l.width-1,w+1);l.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{yf:m,thumbData:l});});jQuery(x).attr("src",g.ga(n+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{yf:m,thumbData:l});}});n<=c.getTotalPages()&&jQuery(p).attr("src",g.ga(n,200));}else{if(-1<g.Ea(null)||1!=c.scale){window.clearTimeout(g.zf),g.zf=setTimeout(function(){g.re(c,d,e);},50);}else{f=0;m=null;k=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height;for(l=1;l<d;l++){f+=2;}n=1==d?f+1:f;if(!g.ra&&g.Ta&&(n=g.jh(n),n>g.Ia.numPages)){return;}var p=new Image,r=d%10;0==r&&(r=10);m=c.N.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',r)).get(0);m.width=e*k;m.height=e/k/2;l=jQuery(m).parent().width()/m.width;eb.browser.msie&&jQuery(m).css({width:m.width*l+"px",height:m.height*l+"px"});jQuery(m).data("origwidth",m.width*l);jQuery(m).data("origheight",m.height*l);var t=m.height/g.getDimensions()[n-1].height;g.Ga(null,"thumb_"+n);g.Ia.getPage(n).then(function(l){var p=l.getViewport(t),v=m.getContext("2d"),A=document.createElement("canvas");A.height=m.height;A.width=A.height*k;var w={canvasContext:A.getContext("2d"),viewport:p,Nh:null,pageNumber:n,continueCallback:function(f){1!=c.scale?(window.clearTimeout(g.zf),g.zf=setTimeout(function(){g.re(c,d,e);},50)):f();}};l.render(w).promise.then(function(){var l=(m.height-m.height*k)/2,q=m.height*k;0>l&&(m.height+=m.width-q,l+=(m.width-q)/2);g.Ga(null,-1,"thumb_"+n);1<d&&f+1<=c.getTotalPages()&&n+1<=c.getTotalPages()?-1<g.Ea(null)||1!=c.scale?(window.clearTimeout(g.zf),g.zf=setTimeout(function(){g.re(c,d,e);},50)):(!g.ra&&g.Ta&&(n=n-1),g.Ga(null,"thumb_"+(n+1)),g.Ia.getPage(n+1).then(function(f){p=f.getViewport(t);var h=document.createElement("canvas");h.width=A.width*(!g.ra&&g.Ta?2:1);h.height=A.height;w={canvasContext:h.getContext("2d"),viewport:p,Nh:null,pageNumber:n+1,continueCallback:function(f){1!=c.scale?(window.clearTimeout(g.zf),g.zf=setTimeout(function(){g.re(c,d,e);},50)):f();}};f.render(w).promise.then(function(){g.Ga(null,-1);v.fillStyle="#ffffff";v.fillRect(1==d?m.width/2:0,l,m.width/2,q);1!=d&&v.fillRect(m.width/2,l,m.width/2,q);v.drawImage(A,1==d?m.width/2:0,l,m.width/2,q);!g.ra&&g.Ta?1!=d&&v.drawImage(h,h.width/2,0,h.width,h.height,m.width/2,l,m.width,q):1!=d&&v.drawImage(h,m.width/2,l,m.width/2,q);jQuery(c).trigger("onThumbPanelThumbAdded",{yf:r,thumbData:m});},function(){g.Ga(null,-1,"thumb_"+(n+1));});})):(v.fillStyle="#ffffff",v.fillRect(1==d?m.width/2:0,l,m.width/2,q),1!=d&&v.fillRect(m.width/2,l,m.width/2,q),v.drawImage(A,1==d?m.width/2:0,l,m.width/2,q),jQuery(c).trigger("onThumbPanelThumbAdded",{yf:r,thumbData:m}));},function(){g.Ga(null,-1);});});}}};return f;}(),Ba=function(){function f(){}f.prototype={Qd:function(c,d){if(d.Wa&&(d.Zi||d.create(d.pages.J),!d.initialized)){c.mb=!c.qa&&null!=c.lj&&0<c.lj.length&&eb.platform.touchonlydevice&&!eb.platform.mobilepreview;if("FlipView"==d.H){var e=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(e="flowpaper_zine_page_left_noshadow");d.F.Md||(e=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");var g=d.T;0==jQuery(g).length&&(g=jQuery(d.Dc).find(d.T));c.wh(d,g);c.qa&&c.fe(c,d)?(jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"),c.cp=new Image,jQuery(c.cp).attr("src",c.ea)):c.Eb?jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;background-color:#ffffff;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"):jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='image-rendering:-webkit-optimize-contrast;display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}}d.initialized=!0;}},Vb:function(c,d,e,g){d.initialized||c.Qd(d);if(!d.oa&&"FlipView"==d.H){if(-1<c.Ea(d)&&c.Ea(d)!=d.pageNumber&&d.pageNumber!=d.pages.R&&d.pageNumber!=d.pages.R-2&&d.pageNumber!=d.pages.R-1){if(window.clearTimeout(d.pc),d.pageNumber==d.pages.R||d.pageNumber==d.pages.R-2||d.pageNumber==d.pages.R-1){d.pc=setTimeout(function(){c.Vb(d,e,g);},250);}}else{1==d.scale&&d.Uc&&!c.qa&&d.Uc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2));if(!d.oa){c.rr=d.scale;c.Ga(d,d.pageNumber);1==d.scale&&d.ad();d.zb=!0;if(!d.W||d.yo!=d.scale||c.fe(c,d)||!c.fe(c,d)&&c.qa){d.yo=d.scale,d.W=new Image,jQuery(d.W).data("pageNumber",d.pageNumber),jQuery(d.W).bind("load",function(){d.xo=!0;d.zb=!1;d.hf=!0;d.jf=this.height;d.kf=this.width;d.Qb();window.clearTimeout(d.ye);c.Zc(d);d.dimensions.ma>d.dimensions.width&&(d.dimensions.width=d.dimensions.ma,d.dimensions.height=d.dimensions.ya);}),jQuery(d.W).bind("abort",function(){window.clearTimeout(d.ye);jQuery(this).eg(function(){d.zb=!1;c.Ga(d,-1);});}),jQuery(d.W).bind("error",function(){window.clearTimeout(d.ye);jQuery(this).eg(function(){d.zb=!1;c.Ga(d,-1);});});}1>=d.scale?jQuery(d.W).attr("src",c.ga(d.pageNumber+1,null,c.Eb)):c.mb&&1<d.scale?d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.W).attr("src",c.ga(d.pageNumber+1,null,c.Eb)):c.qa||jQuery(d.W).attr("src",c.ea):d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?(!c.Eb||-1!=jQuery(d.W).attr("src").indexOf(".svg")&&d.Io==d.scale||c.Ea(d)!=d.pageNumber||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?d.Jj==d.scale&&(jQuery(d.T+"_canvas_highres").show(),jQuery(d.T+"_canvas").hide()):(jQuery(c).trigger("UIBlockingRenderingOperation",c.P),d.Io=d.scale,jQuery(d.W).attr("src",c.ga(d.pageNumber+1,null,c.Eb))),c.Eb||jQuery(d.W).attr("src",c.ga(d.pageNumber+1,null,c.Eb))):c.qa||jQuery(d.W).attr("src",c.ea);d.ye=setTimeout(function(){d.xo||jQuery(d.W).eg(function(){d.zb=!1;c.Ga(d,-1);});},3000);}jQuery(d.T).removeClass("flowpaper_load_on_demand");jQuery(d.pa).attr("src")==c.ea&&d.hf&&c.Zc(d);null!=g&&g();}}},Zc:function(c,d){if("FlipView"==d.H){jQuery(d.T).removeClass("flowpaper_hidden");1==d.scale&&eb.browser.safari?(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if(c.fe(c,d)){1==d.scale?(jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Eb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),c.Mc(d)):(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"):jQuery(d.xa).css("background-image","url("+c.ea+")"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),jQuery(d.T+"_canvas").hide(),c.mb&&d.scale>d.yg()&&(d.pc=setTimeout(function(){c.Xc(d);jQuery(".flowpaper_flipview_canvas_highres").show();jQuery(".flowpaper_flipview_canvas").hide();},500)));}else{var e=document.getElementById(d.aa+"_canvas");c.qa?(jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Eb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible")):jQuery(d.xa).css("background-image","url("+c.ea+")");if(1==d.scale&&e&&(100==e.width||jQuery(e).hasClass("flowpaper_redraw"))){var g=e;if(g){var f=d.za(),m=d.Ha();g.width=2*f;g.height=2*m;f=g.getContext("2d");f.jg=f.mozImageSmoothingEnabled=f.imageSmoothingEnabled=!0;f.drawImage(d.W,0,0,g.width,g.height);jQuery(g).data("needs-overlay",1);jQuery(e).removeClass("flowpaper_redraw");1==d.scale&&(jQuery(d.T+"_canvas").show(),jQuery(d.T+"_canvas_highres").hide());1<d.pageNumber&&jQuery(d.T+"_pixel").css({width:2*d.za(),height:2*d.Ha()});jQuery(g).data("needs-overlay",1);c.Mc(d);}}else{1==d.scale&&e&&100!=e.width&&(jQuery(d.T+"_canvas").show(),jQuery(d.T+"_canvas_highres").hide(),c.Mc(d));}if(1<d.scale&&!c.qa){if(g=document.getElementById(d.aa+"_canvas_highres")){!(c.Eb&&d.Jj!=d.scale||c.qa&&d.Jj!=d.scale||100==g.width||jQuery(g).hasClass("flowpaper_redraw"))||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?(jQuery(d.T+"_pixel").css({width:2*d.za(),height:2*d.Ha()}),jQuery(d.T+"_canvas_highres").show(),jQuery(d.T+"_canvas").hide(),c.mb&&jQuery(d.T+"_canvas_highres").css("z-index","-1")):(d.Jj=d.scale,e=1000<d.L.width()||1000<d.L.height()?1:2,f=(d.L.width()-30)*d.scale,c.qa&&1==e&&(e=c.Xa),eb.platform.ios&&(1500<f*d.ve()||535<d.Mf())&&(e=2236*Math.sqrt(1/(d.za()*d.Ha()))),eb.browser.safari&&!eb.platform.touchdevice&&3>e&&(e=3),f=g.getContext("2d"),f.jg||f.mozImageSmoothingEnabled||f.imageSmoothingEnabled?(f.jg=f.mozImageSmoothingEnabled=f.imageSmoothingEnabled=!1,c.Eb||c.qa?(g.width=d.za()*e,g.height=d.Ha()*e,f.drawImage(d.W,0,0,d.za()*e,d.Ha()*e)):(g.width=d.W.width,g.height=d.W.height,f.drawImage(d.W,0,0))):(g.width=d.za()*e,g.height=d.Ha()*e,f.drawImage(d.W,0,0,d.za()*e,d.Ha()*e)),c.Eb?c.Do(d,g.width/d.W.width,function(){jQuery(g).removeClass("flowpaper_redraw");jQuery(d.T+"_canvas_highres").show();jQuery(d.T+"_canvas").hide();jQuery(d.T+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres");jQuery(d.T+"_canvas").addClass("flowpaper_flipview_canvas");c.Ga(d,-1);}):(jQuery(g).removeClass("flowpaper_redraw"),c.qa||(jQuery(d.T+"_canvas_highres").show(),jQuery(d.T+"_canvas").hide(),jQuery(d.T+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres"),jQuery(d.T+"_canvas").addClass("flowpaper_flipview_canvas")),c.mb&&jQuery(d.T+"_canvas_highres").css("z-index","-1")));}d.pc=setTimeout(function(){c.Xc(d);},500);}}c.qa&&1==d.scale&&(jQuery(d.T+"_canvas").addClass("flowpaper_flipview_canvas"),jQuery(d.T+"_canvas").show(),g=document.getElementById(d.aa+"_canvas"),f=d.za(),m=d.Ha(),e=1.5<c.Xa?c.Xa:1,1300/f>e&&(e=1300/f),g.width!=f*e&&c.fe(c,d)?(d.oa||(g.width=100),g.width!=f*e&&c.fe(c,d)&&(g.width=f*e,g.height=m*e),jQuery(g).css({width:g.width/e+"px",height:g.height/e+"px"}),c.Pl=!0,jQuery(g).data("needs-overlay",1),d.ae(g).then(function(){d.Uc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);})):c.fe(c,d)||1!=jQuery(g).data("needs-overlay")?d.oa||d.Uc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0):d.ae(g).then(function(){d.Uc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);}));d.oa=0<jQuery(d.xa).length&&(c.fe(c,d)&&-1<jQuery(d.xa).css("background-image").indexOf("http")||!c.fe(c,d));}},vb:function(c,d){d.W=null;jQuery(d.xa).css("background-image","url("+c.ea+")");var e=document.getElementById(d.aa+"_canvas");e&&(e.width=100,e.height=100);if(e=document.getElementById(d.aa+"_canvas_highres")){e.width=100,e.height=100;}}};ImagePageRenderer.prototype.fe=function(c,d){return c.qa&&(eb.platform.ios||eb.browser.mozilla&&57>eb.browser.version)?!1:c.qa?!0:eb.platform.touchdevice&&(eb.platform.Rd||d&&d.kf&&d.jf&&5000000<d.kf*d.jf||eb.platform.android)&&(eb.platform.Rd||eb.platform.android)||eb.browser.chrome||eb.browser.mozilla||c.qa||eb.browser.safari&&!eb.platform.touchdevice;};ImagePageRenderer.prototype.resize=function(c,d){this.wh(d);};ImagePageRenderer.prototype.Do=function(c,d,e){var g=this;window.Vh=d;jQuery.ajax({type:"GET",url:g.ga(c.pageNumber+1,null,g.Eb),cache:!0,dataType:"xml",success:function(f){var m=new Image;jQuery(m).bind("load",function(){var g=document.getElementById(c.aa+"_canvas"),l=document.getElementById(c.aa+"_canvas_highres").getContext("2d");l.jg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!1;var n=g.getContext("2d");n.jg=n.mozImageSmoothingEnabled=n.imageSmoothingEnabled=!1;g.width=c.W.width*d;g.height=c.W.height*d;n.drawImage(m,0,0,c.W.width*d,c.W.height*d);if(c.nm){p=c.nm;}else{var p=[];jQuery(f).find("image").each(function(){var c={};c.id=jQuery(this).attr("id");c.width=T(jQuery(this).attr("width"));c.height=T(jQuery(this).attr("height"));c.data=jQuery(this).attr("xlink:href");c.dataType=0<c.data.length?c.data.substr(0,15):"";p[p.length]=c;jQuery(f).find("use[xlink\\:href='#"+c.id+"']").each(function(){if(jQuery(this).attr("transform")&&(c.transform=jQuery(this).attr("transform"),c.transform=c.transform.substr(7,c.transform.length-8),c.Oh=c.transform.split(" "),c.x=T(c.Oh[c.Oh.length-2]),c.y=T(c.Oh[c.Oh.length-1]),"g"==jQuery(this).parent()[0].nodeName&&null!=jQuery(this).parent().attr("clip-path"))){var d=jQuery(this).parent().attr("clip-path"),d=d.substr(5,d.length-6);jQuery(f).find("*[id='"+d+"']").each(function(){c.rg=[];jQuery(this).find("path").each(function(){var d={};d.d=jQuery(this).attr("d");c.rg[c.rg.length]=d;});});}});});c.nm=p;}for(n=0;n<p.length;n++){if(p[n].rg){for(var r=0;r<p[n].rg.length;r++){for(var t=p[n].rg[r].d.replace(/M/g,"M\x00").replace(/m/g,"m\x00").replace(/v/g,"v\x00").replace(/l/g,"l\x00").replace(/h/g,"h\x00").replace(/c/g,"c\x00").replace(/s/g,"s\x00").replace(/z/g,"z\x00").split(/(?=M|m|v|h|s|c|l|z)|\0/),q=0,u=0,v=0,A=0,w=!1,x,D=!0,B=0;B<t.length;B+=2){if("M"==t[B]&&t.length>B+1&&(x=U(t[B+1]),v=q=T(x[0]),A=u=T(x[1]),D&&(w=!0)),"m"==t[B]&&t.length>B+1&&(x=U(t[B+1]),v=q+=T(x[0]),A=u+=T(x[1]),D&&(w=!0)),"l"==t[B]&&t.length>B+1&&(x=U(t[B+1]),q+=T(x[0]),u+=T(x[1])),"h"==t[B]&&t.length>B+1&&(x=U(t[B+1]),q+=T(x[0])),"v"==t[B]&&t.length>B+1&&(x=U(t[B+1]),u+=T(x[0])),"s"==t[B]&&t.length>B+1&&(x=U(t[B+1])),"c"==t[B]&&t.length>B+1&&(x=U(t[B+1])),"z"==t[B]&&t.length>B+1&&(q=v,u=A,x=null),w&&(l.save(),l.beginPath(),D=w=!1),"M"==t[B]||"m"==t[B]){l.moveTo(q,u);}else{if("c"==t[B]&&null!=x){for(var K=0;K<x.length;K+=6){var C=q+T(x[K+0]),E=u+T(x[K+1]),F=q+T(x[K+2]),z=u+T(x[K+3]),y=q+T(x[K+4]),G=u+T(x[K+5]);l.bezierCurveTo(C,E,F,z,y,G);q=y;u=G;}}else{"s"==t[B]&&null!=x?(F=q+T(x[0]),z=u+T(x[1]),y=q+T(x[2]),G=u+T(x[3]),l.bezierCurveTo(q,u,F,z,y,G),q=y,u=G):"z"==t[B]?(l.lineTo(q,u),l.closePath(),l.clip(),l.drawImage(g,0,0),l.restore(),D=!0,B--):l.lineTo(q,u);}}}}}else{N("no clip path for image!");}}e&&e();});m.src=g.ga(c.pageNumber+1);}});};ImagePageRenderer.prototype.re=function(c,d,e){var g=this,f=0,m=c.getDimensions(d)[d-1].ma/c.getDimensions(d)[d-1].ya;g.Ta&&1<d&&(m=c.getDimensions(1)[0].ma/c.getDimensions(1)[0].ya);0.5>m&&g.config.JSONDataType&&c.getDimensions(0)[0].ma<c.getDimensions(0)[0].ya&&(m=0.7);for(var k=1;k<d;k++){f+=2;}var l=1==d?f+1:f,n=new Image;jQuery(n).bind("load",function(){var k=d%10;0==k&&(k=10);var r=jQuery(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',k)).get(0);r.width=e*m-2;r.height=e/m/2-2;var t=jQuery(r).parent().width()/r.width;r.getContext("2d").fillStyle="#999999";var q=(r.height-r.height*m)/2,u=r.height*m;0>q&&(r.height+=r.width-u,q+=(r.width-u)/2);jQuery(r).data("origwidth",r.width*t);jQuery(r).data("origheight",r.height*t);(eb.browser.msie||eb.browser.safari&&5>eb.browser.Sb)&&jQuery(r).css({width:r.width*t+"px",height:r.height*t+"px"});r.getContext("2d").fillRect(1==d?r.width/2:0,q,l==c.getTotalPages()?r.width/2+2:r.width+2,u+2);r.getContext("2d").drawImage(n,1==d?r.width/2+1:1,q+1,r.width/2,u);if(1<d&&f+1<=c.getTotalPages()&&l+1<=c.getTotalPages()){var v=new Image;jQuery(v).bind("load",function(){r.getContext("2d").drawImage(v,r.width/2+1,q+1,r.width/2,u);r.getContext("2d").strokeStyle="#999999";r.getContext("2d").moveTo(r.width-1,q);r.getContext("2d").lineTo(r.width-1,u+1);r.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{yf:k,thumbData:r});});jQuery(v).attr("src",g.ga(l+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{yf:k,thumbData:r});}});l<=c.getTotalPages()&&jQuery(n).attr("src",g.ga(l,200));};return f;}(),za=function(){function f(){}W.prototype.gf=function(){var c=this.F.I.rf,d=this.ph(0),d=d.ma/d.ya,e=Math.round(this.L.height()-10);this.F.N.find(".flowpaper_fisheye");var g=eb.platform.touchdevice?90==window.orientation||-90==window.orientation||jQuery(window).height()>jQuery(window).width():!1,f=this.F.I.Af?this.F.I.La.height():0;if(this.F.I.gb&&!this.F.PreviewMode){e-=eb.platform.touchonlydevice?this.F.bb?f:0:this.L.height()*(this.F.bb?0.2:0.15);}else{if(this.F.PreviewMode){this.F.PreviewMode&&(e=this.F.N.height()-15,e-=eb.platform.touchonlydevice?this.F.bb?f+30:0:this.L.height()*(g?0.5:0.09));}else{var m=0.07;this.F.I.gb||(m=0.07);eb.platform.touchonlydevice?e=this.F.ac?e-(this.F.bb?5:0):e-(this.F.bb?f:0):(f=this.F.I.Af?jQuery(this.F.K).parent().height()||0:0,0==f&&this.F.I.Af&&(f=this.L.height()*m),e-=this.F.bb&&!this.F.I.Me?f:this.L.height()*(g?0.5:m));}}g=this.L.width();2*e*d>g-(c?2.4*this.ia:0)&&!this.F.I.ka&&(e=g/2/d-+(c?1.5*this.ia:75));if(e*d>g-(c?2.4*this.ia:0)&&this.F.I.ka){for(m=10;e*d>g-(c?2.4*this.ia:0)&&1000>m;){e=g/d-m+(c?0:50),m+=10;}}if(!eb.browser.Dr){for(c=2.5*Math.floor(e*(this.F.I.ka?1:2)*d),g=0;0!=c%4&&20>g;){e+=0.5,c=2.5*Math.floor(e*(this.F.I.ka?1:2)*d),g++;}}return e;};W.prototype.Hd=function(c){var d=this,e=c?c:d.F.scale;if(1==e&&1==d.ba){jQuery(d.J+"_glyphcanvas").css("z-index",-1).Kb();jQuery(".flowpaper_flipview_canvas").Ec();if(d.F.I.ka&&d.F.renderer.qa){for(var g=0;g<d.document.numPages;g++){var f=jQuery(d.pages[g].T);f.Ec();}}d.kd();}else{if(d.F.renderer.qa&&d.F.I.Z==d.F.H){if(f=jQuery(d.J+"_glyphcanvas").get(0),void 0==d.wk&&(d.wk=jQuery(f).offset().left),void 0==d.xk&&(d.xk=jQuery(f).offset().top),void 0==d.xm&&(d.xm=jQuery(d.F.N).position().left),void 0==d.ym&&(d.ym=jQuery(d.F.N).position().top),1<e){if(d.vj){window.clearTimeout(d.qj),d.qj=setTimeout(function(){d.Hd(c);},100);}else{d.vj=!0;var m=f.getContext("2d"),k=1<d.R?d.R-(d.F.I.ka||0==d.R%2||d.R+(0==d.R%2?1:0)>d.F.getTotalPages()?1:2):0,l=d.F.I.ka||0==k||null==d.pages[k+1]?1:2,n=0,p=eb.platform.Xa,r=0,t=d.wk-d.xm,q=d.xk-d.ym;d.F.Oa&&(r=parseFloat(d.L.css("left")));d.F.ab&&(r=parseFloat(d.L.css("left")));if(!p||1>p){p=1;}for(g=0;g<l;g++){var u=jQuery(d.pages[k+g].T),u=u.get(0).getBoundingClientRect(),v=u.right<d.L.width()?u.right-(0<u.left?u.left:0):d.L.width()-(0<u.left?u.left:0),n=n+(0<v?v:0);}for(g=0;g<l;g++){var k=k+g,u=jQuery(d.pages[k].T),u=u.get(0).getBoundingClientRect(),A=0<u.left?u.left:0+t,w=0<u.top?u.top:0+q,v=n,x=u.bottom<d.L.height()?u.bottom-(0<u.top?u.top:0):d.L.height()-(0<u.top?u.top:0),D=d.getPage(k);jQuery(f).data("needs-overlay",l);0==g&&(jQuery(f).css({left:A+"px",top:w+"px","z-index":49,display:"block"}),m.clearRect(0,0,f.width,f.height),f.width=v+r,f.height=x,1<p&&(f.width=(v+r)*p,f.height=x*p,jQuery(f).css({width:f.width/p+"px",height:f.height/p+"px"})));v=0>u.left?u.left*p:0;A=0>u.top?u.top*p:0;1<l&&0<g&&0<u.left&&(v+=u.left*p,w=jQuery(d.pages[k-1].T),0<w.length&&(w=w.get(0).getBoundingClientRect(),0<w.left&&(v-=w.left*p)));var B=l;D.ae(f,0,u.width*p,v,A,!0,!0).then(function(){D.Zk=e;B=B-1;if(d.F.I.ka){for(var c=0;c<d.document.numPages;c++){d.Ra(c)&&d.pages[c]!=D&&jQuery(d.pages[c].T).Kb();}}1>B&&requestAnim(function(){1<d.F.scale&&(d.vj=!1,jQuery(".flowpaper_flipview_canvas").Kb());},50);});}}}else{if(d.vj=!1,d.F.I.ka){for(g=0;g<d.document.numPages;g++){f=jQuery(d.pages[g].T),f.Ec();}}}}}};W.prototype.ug=function(c,d,e){if(c=jQuery(c).closest(".flowpaper_page")){window.sessionId=window.sessionId?window.sessionId:Q(Date.now().toString());c=parseInt(c.attr("id").substr(14,c.attr("id").length-29));var f=jQuery(this.pages[c].T).get(0).getBoundingClientRect(),h=this.pages[c].Aa/f.height,m=this.pages[c].Aa*this.pages[c].se()/f.width,f=0==c?f.right-f.left:0!=c%2?0:f.width;this.F.I.ka&&(f=0);jQuery(this.L).trigger("onPageZoomed",{sessionId:window.sessionId,pageNumber:c+1,x:Math.round((d-f)*m),y:Math.round(e*h),value:200,radius:Math.round(50)});}};W.prototype.Qo=function(){for(var c=1<this.R?this.R-(this.F.I.ka||0==this.R%2||this.R+(0==this.R%2?1:0)>this.F.getTotalPages()?1:2):0,d=this.F.I.ka||0==c||null==this.pages[c+1]?1:2,e=0;e<d;e++){var c=c+e,f=jQuery(this.pages[c].T).get(0).getBoundingClientRect();this.Fk(f,c);}};W.prototype.Fk=function(c,d){var e=this;window.sessionId=window.sessionId?window.sessionId:Q(Date.now().toString());var f=e.pages[d].Aa/c.height,h=e.pages[d].Aa*e.pages[d].se()/c.width,m=c.height,k=c.width,l=-c.left*h,n=-c.top*f;0>l&&(l=0);0>n&&(n=0);0>window.innerWidth-c.right&&(k+=window.innerWidth-c.right);0>c.left&&(k+=c.left);0>window.innerHeight-c.bottom&&(m+=window.innerHeight-c.bottom);0>c.top&&(m+=c.top);k=k*h;m=m*f;0>k||0>m||(e.nf&&e.xl&&(e.nf.value=Math.round(10*Math.exp(((new Date).getTime()-e.Ro)/1000)),jQuery(e.L).trigger("onPagePanned",e.nf),e.nf=null,window.clearTimeout(e.xl)),e.nf={sessionId:window.sessionId,pageNumber:d+1,x:Math.round(l+k/2),y:Math.round(n+m/2),value:15,radius:Math.round(k/2)},e.Ro=(new Date).getTime(),e.xl=setTimeout(function(){e.nf.value=Math.exp(4);jQuery(e.L).trigger("onPagePanned",e.nf);e.nf=null;},4000));};W.prototype.jo=function(c,d){var e=this;c=parseInt(c);e.F.ee=d;e.F.renderer.pe&&e.lf(c);1!=this.F.scale?e.Qa(1,!0,function(){e.F.turn("page",c);}):e.F.turn("page",c);};W.prototype.Li=function(){return(this.L.width()-this.Oc())/2;};W.prototype.Oc=function(){var c=this.ph(0),c=c.ma/c.ya;return Math.floor(this.gf()*(this.F.I.ka?1:2)*c);};W.prototype.Pc=function(){if("FlipView"==this.F.H){return 0<this.width?this.width:this.width=this.M(this.J).width();}};W.prototype.Mf=function(){if("FlipView"==this.F.H){return 0<this.height?this.height:this.height=this.M(this.J).height();}};f.prototype={lf:function(c,d){for(var e=d-10;e<d+10;e++){0<e&&e+1<c.F.getTotalPages()+1&&!c.getPage(e).initialized&&(c.getPage(e).Wa=!0,c.F.renderer.Qd(c.getPage(e)),c.getPage(e).Wa=!1);}},oc:function(c){null!=c.be&&(window.clearTimeout(c.be),c.be=null);var d=1<c.R?c.R-1:c.R;if(!c.F.renderer.pb||c.F.renderer.wb&&1==c.F.scale){1<=c.R?(c.pages[d-1].load(function(){1<c.R&&c.pages[d]&&c.pages[d].load(function(){c.pages[d].Fa();for(var e=c.M(c.J).scrollTop(),f=c.M(c.J).height(),g=0;g<c.document.numPages;g++){c.Ra(g)&&(c.pages[g].Qc(e,f,!0)?(c.pages[g].Wa=!0,c.pages[g].load(function(){}),c.pages[g].Fa()):c.pages[g].vb());}});}),c.pages[d-1].Fa()):c.pages[d]&&c.pages[d].load(function(){c.pages[d].Fa();for(var e=c.M(c.J).scrollTop(),f=c.M(c.J).height(),g=0;g<c.document.numPages;g++){c.Ra(g)&&(c.pages[g].Qc(e,f,!0)?(c.pages[g].Wa=!0,c.pages[g].load(function(){}),c.pages[g].Fa()):c.pages[g].vb());}});}else{1<c.R?(c.pages[d-1]&&c.pages[d-1].load(function(){}),c.pages[d-0]&&c.pages[d-0].load(function(){})):c.pages[d]&&c.pages[d].load(function(){});for(var e=c.M(c.J).scrollTop(),f=c.M(c.J).height(),h=0;h<c.document.numPages;h++){c.Ra(h)&&(c.pages[h].Qc(e,f,!0)?(c.pages[h].Wa=!0,c.pages[h].load(function(){}),c.pages[h].Fa()):c.pages[h].vb());}}},ij:function(c){1.1<c.F.scale&&c.F.va&&(c.F.va.data().opts.cornerDragging=!1);c.Bi=setTimeout(function(){c.F.pages&&"FlipView"==c.F.H&&(1.1<c.F.scale||!c.F.va||!c.F.va.data().opts||(c.F.va.data().opts.cornerDragging=!0),c.Eh=!1);},1000);},Wb:function(c){return"FlipView"==c.F.H;},Qa:function(c,d,e,f,h){jQuery(c).trigger("onScaleChanged");1<e&&0<jQuery("#"+c.Lb).length&&jQuery("#"+c.Lb).css("z-index",-1);1<e&&(jQuery(".flowpaper_shadow").hide(),c.F.V&&c.F.V.hide());if("FlipView"==c.F.H&&(e>=1+c.F.document.ZoomInterval?jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomIn").addClass("flowpaper_page_zoomOut"):jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomOut").addClass("flowpaper_page_zoomIn"),jQuery(c.J).data().totalPages)){var m=c.ph(0),k=m.ma/m.ya,m=c.gf()*e,k=2*m*k;c.F.renderer.qa&&0==f.Pe&&setTimeout(function(){c.animating=!1;},50);if(!f||!c.Wb()||1<d&&!c.M(c.J+"_parent").Qf()){if(c.M(c.J+"_parent").Qf()&&e>=1+c.F.document.ZoomInterval&&((d=c.Oi())?(c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.M(c.J+"_parent").transition({x:0,y:0,scale:1},0),f.Xb=d.left,f.sc=d.top,f.fd=!0):(l=1!=c.F.da||c.F.I.ka?0:-(c.Oc()/4),c.M(c.J+"_parent").transition({x:l,y:c.F.hc,scale:1},0))),c.M(c.J).Qf()&&c.M(c.J).transition({x:0,y:0,scale:1},0),!c.animating){c.Gh||(c.Gh=c.F.va.width(),c.gp=c.F.va.height());1==e&&c.Gh?(turnwidth=c.Gh,turnheight=c.gp):(turnwidth=k-(c.M(c.J+"_panelLeft").width()+c.M(c.J+"_panelRight").width()+40),turnheight=m);c.M(c.J).css({width:k,height:m});c.F.va.turn("size",turnwidth,turnheight,!1);e>=1+c.F.document.ZoomInterval?(f.fd||eb.platform.touchonlydevice)&&requestAnim(function(){c.L.scrollTo({left:jQuery(c.L).scrollLeft()+f.Xb/e+"px",top:jQuery(c.L).scrollTop()+f.sc/e+"px"});},500):c.Ve();for(k=0;k<c.document.numPages;k++){c.Ra(k)&&(c.pages[k].oa=!1);}1<e?c.F.va.turn("setCornerDragging",!1):(c.M(c.J+"_panelLeft").show(),c.M(c.J+"_panelRight").show(),c.F.va.turn("setCornerDragging",!0),jQuery(".flowpaper_shadow").show());c.md();c.kd();setTimeout(function(){null!=h&&h();},200);}}else{if(!c.animating||!c.pk){c.animating=!0;c.pk=f.fd;c.F.renderer.qa&&0==f.Pe&&1!=e||(jQuery(".flowpaper_flipview_canvas").Ec(),jQuery(".flowpaper_flipview_canvas_highres").Kb(),c.F.renderer.qa&&jQuery(c.J+"_glyphcanvas").css("z-index",-1).Kb());jQuery("#"+c.Lb).css("z-index",-1);jQuery(c).trigger("onScaleChanged");m=400;d="snap";c.F.document.ZoomTime&&(m=1000*parseFloat(c.F.document.ZoomTime));c.F.document.ZoomTransition&&("easeOut"==c.F.document.ZoomTransition&&(d="snap"),"easeIn"==c.F.document.ZoomTransition&&(d="ease-in",m/=2));f&&f.Xb&&f.sc?(f.fd&&(f.Xb=f.Xb+c.Li()),f.fd||eb.platform.touchonlydevice?(c.Fd=f.Xb,c.Gd=f.sc):(k=c.M(c.J+"_parent").css("transformOrigin").split(" "),2==k.length?(k[0]=k[0].replace("px",""),k[1]=k[1].replace("px",""),c.Fd=parseFloat(k[0]),c.Gd=parseFloat(k[1])):(c.Fd=f.Xb,c.Gd=f.sc),c.Ol=!0),f.Pe&&(m=f.Pe)):(c.Fd=0,c.Gd=0);c.F.renderer.pb&&c.F.renderer.mb&&1==e&&(k=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Mc(c.pages[k-1]),c.F.renderer.Mc(c.pages[k]));if(c.F.I.ka&&c.F.renderer.qa&&1<e){for(k=0;k<c.document.numPages;k++){c.Ra(k)&&k!=c.R-1&&jQuery(c.pages[k].T).Kb();}}"undefined"!=f.Pe&&(m=f.Pe);e>=1+c.F.document.ZoomInterval?("preserve-3d"==c.M(c.J+"_parent").css("transform-style")&&(m=0),(f.fd||eb.platform.touchonlydevice)&&c.M(c.J+"_parent").css({transformOrigin:c.Fd+"px "+c.Gd+"px"}),c.F.va.turn("setCornerDragging",!1)):(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));var l=1!=c.F.da||c.F.I.ka?0:-(c.Oc()/4);c.F.da==c.F.getTotalPages()&&0==c.F.getTotalPages()%2&&(l=c.F.I.ka?0:+(c.Oc()/4));c.M(c.J+"_parent").transition({x:l,y:c.F.hc,scale:e},m,d,function(){c.M(c.J+"_parent").css("will-change","");c.Hd();c.kd();null!=c.He&&(window.clearTimeout(c.He),c.He=null);c.He=setTimeout(function(){if(!c.F.renderer.qa){for(var d=0;d<c.document.numPages;d++){c.pages[d].oa=!1;}}c.jd=0;c.Ee=0;c.md();c.animating=!1;c.pk=!1;},50);1==e&&c.M(c.J+"_parent").css("-webkit-transform-origin:","");1==e&&(jQuery(".flowpaper_shadow").show(),jQuery(".flowpaper_zine_page_left").fadeIn(),jQuery(".flowpaper_zine_page_right").fadeIn());null!=h&&h();});}}}},resize:function(c,d,e,f){c.width=-1;c.height=-1;jQuery(".flowpaper_pageword_"+c.P+", .flowpaper_interactiveobject_"+c.P).remove();if("FlipView"==c.F.H){c.F.renderer.qa&&c.F.renderer.Pl&&(jQuery(".flowpaper_flipview_page").css({height:"100%",width:"100%"}),c.F.renderer.Pl=!1);1!=c.F.da||c.F.I.ka?c.F.I.ka||jQuery(c.J+"_parent").transition({x:0,y:c.F.hc},0,"snap",function(){}):jQuery(c.J+"_parent").transition({x:-(c.Oc()/4),y:c.F.hc},0,"snap",function(){});var h=c.gf(),m=c.Oc();c.M(c.J+"_parent").css({width:d,height:h});c.qd=m;c.ng=h;d=c.Li();c.F.va&&c.F.va.turn("size",m,h,!1);c.M(c.J+"_panelLeft").css({"margin-left":d-c.ia,width:c.ia,height:h-30});c.M(c.J+"_arrowleft").css({top:(h-30)/2+"px"});c.M(c.J+"_arrowright").css({top:(h-30)/2+"px"});c.M(c.J+"_panelRight").css({width:c.ia,height:h-30});c.F.PreviewMode?(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide()):(jQuery(c.J+"_arrowleftbottom").show(),jQuery(c.J+"_arrowleftbottommarker").show(),jQuery(c.J+"_arrowrightbottom").show(),jQuery(c.J+"_arrowrightbottommarker").show());c.Gh=null;c.qs=null;c.Hd();}jQuery(".flowpaper_flipview_page").addClass("flowpaper_redraw");for(d=0;d<c.document.numPages;d++){c.Ra(d)&&c.pages[d].Qa();}"FlipView"==c.F.H?(window.clearTimeout(c.rp),c.rp=setTimeout(function(){c.Ll&&c.Ll();for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].oa=!1,null!=c.F.renderer.resize&&c.F.renderer.resize(c.F.renderer,c.pages[d]));}c.md();jQuery(c.F).trigger("onResizeCompleted");c.F.I.rb&&jQuery("#"+c.pages.container+"_webglcanvas").css({width:m,height:h});f&&f();},300)):f&&f();},xe:function(c,d,e){if(c.F.PreviewMode){c.F.openFullScreen();}else{if(!c.ne()){var f=c.document.TouchZoomInterval?c.F.scale+c.document.TouchZoomInterval:2.5;if("FlipView"==c.F.H){if(d){d=jQuery(c.J+"_parent").width()/2;var h=jQuery(c.J+"_parent").height()/2;c.Qa(f,{Xb:d,sc:h});c.ug(e,d,h);}else{c.Qa(f,{Xb:c.Rc,sc:c.Sc}),c.ug(e,c.Rc,c.Sc);}}else{c.Qa(1);}c.kd();}}},sd:function(c,d){"FlipView"==c.F.H?c.Qa(1,!0,d):c.Qa(window.FitHeightScale);c.kd();},hj:function(c){"FlipView"==c.F.H&&(this.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){c.Oe=!0;setTimeout(function(){c.Oe=!1;},3800);c.gg=null;null==c.ba&&(c.F.va.turn("cornerActivated")||c.animating||1==c.F.scale&&c.next());},wipeRight:function(){c.Oe=!0;setTimeout(function(){c.Oe=!1;},3800);c.gg=null;c.F.va.turn("cornerActivated")||c.animating||null==c.ba&&1==c.F.scale&&c.previous();},preventDefaultEvents:!0,min_move_x:100,min_move_y:100}));},rk:function(c){if(c.F.Rb||!eb.platform.touchdevice||c.F.I.tg){c.F.Rb?(d=c.M(c.J),d.doubletap(function(d){var f=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+f,"*");window.clearTimeout(c.Xi);d.preventDefault();d.stopImmediatePropagation();},null,300,!0)):(d=c.M(c.J),d.doubletap(function(c){c.preventDefault();},null,300));}else{var d=c.M(c.J);d.doubletap(function(d){c.gg=null;if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?1!=c.F.scale||"FlipView"!=c.F.H||c.Eh?"FlipView"==c.F.H&&1<=c.F.scale&&!c.mj?c.sd():"TwoPage"==c.F.H&&1==c.F.scale&&c.sd():c.xe(!1,d.target):c.xe(!1,d.target),d.preventDefault(),c.mj=!1,c.Eh=!1;}},null,300);}},ui:function(c,d){if("FlipView"==c.F.H){c.F.I.Hf&&(c.ia=c.F.I.Hf);var e=c.gf(),f=c.Oc(),h=c.Li(),m=c.F.I.rf&&(430<f||c.F.PreviewMode||c.F.I.ka),k=m?0:h,h=h-c.ia,l=c.F.I.hb?c.F.I.hb:"#555555",n=c.F.I.qb?c.F.I.qb:"#AAAAAA",p=c.F.I.La.height();c.Ib=c.F.ac&&!c.F.I.gb||0==p?(c.L.height()-e)/2:0;c.Ib=0==c.Ib&&c.F.bb&&!c.F.ac&&0<p&&!c.F.I.gb?(c.L.height()-e)/2-p:c.Ib;c.qd=f;c.ng=e;d.append("<div id='"+c.container+"_parent' style='white-space:nowrap;width:100%;height:"+e+"px;"+(!c.F.bb&&!c.F.I.gb||c.F.I.Me?"margin-top:2.5%;":0<c.Ib?"padding-top:"+c.Ib+"px;":"")+"z-index:10"+(!eb.browser.mozilla||!eb.platform.mac||eb.platform.mac&&(18>parseFloat(eb.browser.version)||33<parseFloat(eb.browser.version))?"":";transform-style:preserve-3d;")+"'>"+(m?"<div id='"+c.container+"_panelLeft' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;position:relative;float:left;background-color:"+l+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ia+"px;margin-left:"+h+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ia-(c.ia-0.4*c.ia))/2+"px;top:"+(e/2-c.ia)+"px' id='"+c.container+"_arrowleft' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ia-(c.ia-0.55*c.ia))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottom' class='flowpaper_arrow flowpaper_arrow_start'></div><div style='position:absolute;left:"+(c.ia-0.8*c.ia)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottommarker' class='flowpaper_arrow flowpaper_arrow_start'></div></div>":"")+"<div id='"+c.container+"' style='float:left;position:relative;height:"+e+"px;width:"+f+"px;margin-left:"+k+"px;z-index:10;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;' class='flowpaper_twopage_container flowpaper_hidden'></div>"+(m?"<div id='"+c.container+"_panelRight' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;position:relative;display:inline-block;background-color:"+l+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ia+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ia-(c.ia-0.4*c.ia))/2+"px;top:"+(e/2-c.ia)+"px' id='"+c.container+"_arrowright' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ia-(c.ia-0.55*c.ia))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottom' class='flowpaper_arrow flowpaper_arrow_end'></div><div style='position:absolute;left:"+((c.ia-(c.ia-0.55*c.ia))/2+c.ia-0.55*c.ia)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottommarker' class='flowpaper_arrow flowpaper_arrow_end'></div></div>":"")+"</div>");f=S(l);c.F.renderer.qa&&(c.F.N.append("<canvas id='"+c.container+"_glyphcanvas' style='pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;' class='flowpaper_glyphcanvas'></canvas>"),eb.browser.msie&&11>eb.browser.version&&PointerEventsPolyfill.initialize({selector:"#"+c.container+"_glyphcanvas",mouseEvents:["click","dblclick","mousedown","mouseup","mousemove"]}),jQuery(c.F.renderer).bind("onTextDataUpdated",function(d,e){for(var f=e+12,g=e-2;g<f;g++){var h=c.getPage(g);if(h){var k=h?document.getElementById(h.aa+"_canvas"):null;if(k){var l=h.za(),m=h.Ha(),p=1.5<c.F.renderer.Xa?c.F.renderer.Xa:1.5;k.width!=l*p&&(jQuery(k).data("needs-overlay",1),k.width=l*p,k.height=m*p,h.ae(k).then(function(){h.Wa&&c.F.renderer.Vb(h,!0);}));}}}}));jQuery(c.J+"_panelLeft").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+c.F.I.Fe+")");jQuery(c.J+"_panelRight").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+c.F.I.Fe+")");jQuery(c.J+"_arrowleft").Ie(c.ia-0.4*c.ia,n);jQuery(c.J+"_arrowright").Ad(c.ia-0.4*c.ia,n);c.F.I.wg&&!c.F.Rb&&(jQuery(c.J+"_arrowleftbottom").Ie(c.ia-0.55*c.ia,n),jQuery(c.J+"_arrowleftbottommarker").rj(c.ia-0.55*c.ia,n,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").Ad(c.ia-0.55*c.ia,n),jQuery(c.J+"_arrowrightbottommarker").sj(c.ia-0.55*c.ia,n,jQuery(c.J+"_arrowrightbottom")));c.F.Rb&&(jQuery(c.J+"_arrowleftbottom").Ie(c.ia-0.55*c.ia,n),jQuery(c.J+"_arrowleftbottommarker").rj(c.ia-0.55*c.ia,n,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").Ad(c.ia-0.55*c.ia,n),jQuery(c.J+"_arrowrightbottommarker").sj(c.ia-0.55*c.ia,n,jQuery(c.J+"_arrowrightbottom")),c.F.I.wg||(jQuery(c.J+"_arrowleftbottom").css("opacity",0),jQuery(c.J+"_arrowleftbottommarker").css("opacity",0),jQuery(c.J+"_arrowrightbottom").css("opacity",0),jQuery(c.J+"_arrowrightbottommarker").css("opacity",0)));!c.F.I.ka||c.F.ef||c.F.bb||d.css("top",(d.height()-e)/2.1+"px");c.F.I.rf||(jQuery(c.J+"_panelLeft").attr("id",c.J+"_panelLeft_disabled").css("visibility","none"),jQuery(c.J+"_panelRight").attr("id",c.J+"_panelRight_disabled").css("visibility","none"));c.F.PreviewMode&&(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide());document.addEventListener("touchstart",function(d){eb.platform.ios&&eb.browser.capabilities.iq&&(c.F.N.has(d.target).length||d.preventDefault());},{passive:!1});jQuery(c.J).on(c.F.I.Ef?"mouseup":"mousedown",function(d){if(jQuery(d.target).hasClass("flowpaper_mark")||jQuery(d.target).parents(".flowpaper_mark").length){return !1;}var e=!0;c.F.I.Ef&&(c.rm(),null==c.Ab||d.pageX&&d.pageY&&d.pageX<=c.Ab+2&&d.pageX>=c.Ab-2&&d.pageY<=c.xc+2&&d.pageY>=c.xc-2||(e=!1),c.Ab=null,c.xc=null,c.Tf&&(eb.browser.safari||c.F.renderer.qa)&&(c.Tf=!1),c.Hd());if(!e&&1<c.F.scale){for(var f=1<c.R?c.R-(c.F.I.ka||0==c.R%2||c.R+(0==c.R%2?1:0)>c.F.getTotalPages()?1:2):0,g=c.F.I.ka||0==f||null==c.pages[f+1]?1:2,h=0;h<g;h++){var f=f+h,k=jQuery(c.pages[f].T).get(0).getBoundingClientRect();c.Fk(k,f);}}if((!c.F.I.Ef||e)&&!c.F.I.tg){var l=!1,e=0<jQuery(d.target).parents(".flowpaper_page").children().find(".flowpaper_zine_page_left, .flowpaper_zine_page_left_noshadow").length;c.dg=e?c.F.da-2:c.F.da-1;jQuery(d.target).hasClass("flowpaper_interactiveobject_"+c.P)&&(l=!0);if(c.F.va.turn("cornerActivated")||c.animating||jQuery(d.target).hasClass("turn-page-wrapper")||jQuery(d.target).hasClass("flowpaper_shadow")&&jQuery(d.target).Qf()){return;}if(c.F.PreviewMode&&"A"!=d.target.tagName){c.F.openFullScreen();return;}eb.platform.mobilepreview||c.ne()||"transform"==c.M(c.J+"_parent").css("will-change")||(c.F.Rb?(clearTimeout(c.Xi),c.Xi=setTimeout(function(){c.Wb()&&c.M(c.J+"_parent").css("will-change","transform");var e=jQuery(c.J).Pf(d.pageX,d.pageY);l||c.F.rc||1!=c.F.scale?!l&&!c.F.rc&&1<c.F.scale?c.F.Zoom(1,{fd:!0,Xb:e.x,sc:e.y}):l&&c.M(c.J+"_parent").css("will-change",""):(c.F.Zoom(2.5,{fd:!0,Xb:e.x,sc:e.y}),c.ug(d.target,e.x,e.y));},350)):(c.Wb()&&c.M(c.J+"_parent").css("will-change","transform"),requestAnim(function(){var e=jQuery(c.J).Pf(d.pageX,d.pageY);l||c.F.rc||1!=c.F.scale?!l&&!c.F.rc&&1<c.F.scale?c.F.Zoom(1,{fd:!0,Xb:e.x,sc:e.y}):l&&c.M(c.J+"_parent").css("will-change",""):(c.F.Zoom(2.5,{fd:!0,Xb:e.x,sc:e.y}),c.ug(d.target,e.x,e.y));},50)));var m={};jQuery((jQuery(d.target).attr("class")+"").split(" ")).each(function(){""!==this&&(m[this]=this);});for(class_name in m){0==class_name.indexOf("gotoPage")&&c.gotoPage(parseInt(class_name.substr(class_name.indexOf("_")+1)));}}if(c.F.renderer.pb&&c.F.renderer.mb&&1<c.F.scale){var p=1<c.R?c.R-1:c.R;setTimeout(function(){1<c.F.scale?(1<c.R&&c.F.renderer.Xc(c.pages[p-1]),c.F.renderer.Xc(c.pages[p])):(1<c.R&&c.F.renderer.Mc(c.pages[p-1]),c.F.renderer.Mc(c.pages[p]));},500);}});jQuery(c.J+"_parent").on("mousemove",function(d){if(1<c.F.scale&&!c.F.rc){if(c.F.I.Ef&&"down"==c.F.Xd){c.Ab||(c.Ab=d.pageX,c.xc=d.pageY),c.Tf||!eb.browser.safari&&!c.F.renderer.qa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).Kb(),c.Tf=!0),eb.platform.touchdevice||c.M(c.J+"_parent").Qf()?(c.Ol&&(c.rm(),c.Ol=!1),c.yk(d.pageX,d.pageY)):(c.L.scrollTo({left:jQuery(c.L).scrollLeft()+(c.Ab-d.pageX)+"px",top:jQuery(c.L).scrollTop()+(c.xc-d.pageY)+"px"},0,{axis:"xy"}),c.Ab=d.pageX+3,c.xc=d.pageY+3);}else{if(!c.F.I.Ef){var e=c.L.Pf(d.pageX,d.pageY);eb.platform.touchdevice||c.M(c.J+"_parent").Qf()||c.L.scrollTo({left:d.pageX+"px",top:d.pageY+"px"},0,{axis:"xy"});d=e.x/jQuery(c.J+"_parent").width();e=e.y/jQuery(c.J+"_parent").height();requestAnim(function(){c.Hd();},10);c.bh((jQuery(c.L).width()+150)*d-20,(jQuery(c.L).height()+150)*e-250);}}c.F.renderer.pb&&c.F.renderer.mb&&!c.F.I.Ef&&(e=1<c.R?c.R-1:c.R,1<c.F.scale?(1<c.R&&c.F.renderer.Xc(c.pages[e-1]),c.F.renderer.Xc(c.pages[e])):(1<c.R&&c.F.renderer.Mc(c.pages[e-1]),c.F.renderer.Mc(c.pages[e])));}});jQuery(c.J+"_parent").on("touchmove",function(d){var e=!1;if(!eb.platform.ios&&2==d.originalEvent.touches.length){d.preventDefault&&d.preventDefault();d.returnValue=!1;if(c.jl){return !1;}var f=Math.sqrt((d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)*(d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)+(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)*(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)),f=2*f;if(null==c.ba){if(c.F.I.ka&&c.F.renderer.qa){for(var g=0;g<c.document.numPages;g++){c.Ra(g)&&g!=c.R-1&&jQuery(c.pages[g].T).Kb();}}c.M(c.J+"_parent").css("will-change","transform");c.cb=c.F.scale;c.wf=f;}else{c.ba==c.cb&&c.F.va.turn("setCornerDragging",!1);if(null==c.cb||null==c.wf){return;}1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Rd&&!c.F.renderer.qa&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=3);g=0;1!=c.F.da||c.F.I.ka||(g=-(c.Oc()/4));var h=c.cb+(f-c.wf)/jQuery(c.J+"_parent").width();0.01<Math.abs(c.ba-h)?(c.jl=!0,c.M(c.J+"_parent").transition({x:g,y:c.F.hc,scale:c.ba},0,"none",function(){c.jl=!1;})):e=!0;}e||(c.ba=c.cb+(f-c.wf)/jQuery(c.J+"_parent").width());}(1<c.F.scale||null!=c.ba&&1<c.ba)&&!e&&(e=d.originalEvent.touches[0]||d.originalEvent.changedTouches[0],eb.platform.ios||2!=d.originalEvent.touches.length?c.Ab||(c.Ab=e.pageX,c.xc=e.pageY):c.Ab||(f=d.originalEvent.touches[1]||d.originalEvent.changedTouches[1],f.pageX>e.pageX?(c.Ab=e.pageX+(f.pageX-e.pageX)/2,c.xc=e.pageY+(f.pageY-e.pageY)/2):(c.Ab=f.pageX+(e.pageX-f.pageX)/2,c.xc=f.pageY+(e.pageY-f.pageY)/2)),c.Tf||c.F.renderer.qa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),c.Tf=!0),(1==d.originalEvent.touches.length||eb.platform.ios)&&c.yk(e.pageX,e.pageY),jQuery(".flowpaper_flipview_canvas").Ec(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).Kb(),d.preventDefault());});jQuery(c.J+"_parent, "+c.J).on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(){c.gg=(new Date).getTime();});jQuery(c.J+"_parent").on("mouseup touchend",function(d){!c.F.ac||null!=c.ba||c.Oe||c.F.va.turn("cornerActivated")||c.animating?c.F.ac&&0==c.F.I.La.position().top&&c.F.I.La.animate({opacity:0,top:"-"+c.F.I.La.height()+"px"},300):setTimeout(function(){!jQuery(d.target).hasClass("flowpaper_arrow")&&1==c.F.scale&&c.gg&&c.gg>(new Date).getTime()-1000?(jQuery(c.F.I.La).find(".flowpaper_txtSearch").trigger("blur"),0==c.F.I.La.position().top?c.F.I.La.animate({opacity:0,top:"-"+c.F.I.La.height()+"px"},300):c.F.I.La.animate({opacity:1,top:"0px"},300)):c.gg=null;},600);if(null!=c.cb){c.mj=c.cb<c.ba;c.cb=null;c.wf=null;c.Ab=null;c.xc=null;1.1>c.ba&&(c.ba=1);c.F.scale=c.ba;for(var e=0;e<c.document.numPages;e++){c.Ra(e)&&(c.pages[e].scale=c.F.scale,c.pages[e].Qa());}c.Hd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0),c.F.I.gb&&(c.F.V.show(),c.F.V.animate({opacity:1},100)));1<c.F.scale&&c.F.I.gb&&c.F.V.animate({opacity:0},0,function(){c.F.V.hide();});for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].oa=!1);}c.M(c.J+"_parent").css("will-change","");c.md();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}1<c.F.scale?(e=c.M(c.J).css("transform")+"",null!=e&&(e=e.replace("translate",""),e=e.replace("(",""),e=e.replace(")",""),e=e.replace("px",""),e=e.split(","),c.jd=parseFloat(e[0]),c.Ee=parseFloat(e[1]),isNaN(c.jd)&&(c.jd=0,c.Ee=0)),c.Ab&&1.9<c.F.scale&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide()),c.F.renderer.pb&&c.F.renderer.mb&&1.9<c.F.scale&&(e=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Xc(c.pages[e-1]),c.F.renderer.Xc(c.pages[e])),null!=c.Ab&&c.Hd(null!=c.ba?c.ba:c.F.scale),0!=c.jd&&c.Qo()):(c.jd=0,c.Ee=0);c.Tf=!1;c.Ab=null;c.xc=null;});jQuery(c.J+"_parent").on("gesturechange",function(d){d.preventDefault();if(!c.F.I.tg){null==c.cb&&(c.cb=d.originalEvent.scale);c.F.va.turn("setCornerDragging",!1);c.ba=c.F.scale+(c.cb>c.F.scale?(d.originalEvent.scale-c.cb)/2:4*(d.originalEvent.scale-c.cb));1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Rd&&!c.F.renderer.qa&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.qa&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&(eb.platform.ipad||eb.platform.iphone)&&!c.F.renderer.qa&&(c.ba=3);d=1!=c.F.da||c.F.I.ka?0:-(c.Oc()/4);if(1==c.cb&&c.F.I.ka&&c.F.renderer.qa){for(var e=0;e<c.document.numPages;e++){c.Ra(e)&&e!=c.R-1&&jQuery(c.pages[e].T).Kb();}}c.M(c.J+"_parent").transition({x:d,y:c.F.hc,scale:c.ba},0,"ease",function(){});}});jQuery(c.J+"_parent").on("gestureend",function(d){d.preventDefault();if(!c.F.I.tg){c.Eh=c.ba<c.F.scale||c.Eh;c.F.scale=c.ba;for(d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Qa());}c.Hd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].oa=!1);}c.md();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}});jQuery(c.J+"_parent").on("mousewheel",function(d){if(!(c.ne()||c.F.PreviewMode||(c.F.va.turn("cornerActivated")&&c.F.va.turn("stop"),c.F.I.tg||c.F.I.Gn))){d.preventDefault&&d.preventDefault();d.returnValue=!1;c.Jd||(c.Jd=0);0<d.deltaY?c.F.scale+c.Jd+2*c.F.document.ZoomInterval<c.F.document.MaxZoomSize&&(c.Jd=c.Jd+2*c.F.document.ZoomInterval):c.Jd=1.2<c.F.scale+c.Jd-3*c.F.document.ZoomInterval?c.Jd-3*c.F.document.ZoomInterval:-(c.F.scale-1);null!=c.He&&(window.clearTimeout(c.He),c.He=null);1.1<=c.F.scale+c.Jd?(c.F.I.gb&&c.F.V.animate({opacity:0},0,function(){c.F.V.hide();}),c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),c.M(c.J+"_panelLeft").fadeTo("fast",0),c.M(c.J+"_panelRight").fadeTo("fast",0),c.F.va.turn("setCornerDragging",!1)):(c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),1<c.R?c.M(c.J+"_panelLeft").fadeTo("fast",1):c.M(c.J+"_panelLeft").fadeTo("fast",0),c.F.da<c.F.getTotalPages()&&c.M(c.J+"_panelRight").fadeTo("fast",1),c.M(c.J).transition({x:0,y:0},0),c.F.I.gb&&(c.F.V.show(),c.F.V.animate({opacity:1},100)),c.Ab=null,c.xc=null,c.jd=0,c.Ee=0);1!=c.F.scale||c.Wc||c.ug(d.target,d.pageX,d.pageY);c.Wc=c.F.scale+c.Jd;1>c.Wc&&(c.Wc=1);if(!(eb.browser.mozilla&&30>eb.browser.version)&&0<jQuery(c.J).find(d.target).length){if(1==c.Wc){if(c.F.I.ka&&c.F.renderer.qa){for(d=0;d<c.document.numPages;d++){jQuery(c.pages[d].T).Ec();}}c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0);}else{if(1==c.F.scale&&c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.F.va.turn("setCornerDragging",!1),0<jQuery(c.J).has(d.target).length){d=jQuery(c.J+"_parent").Pf(d.pageX,d.pageY);var e=c.M(c.J+"_parent").css("transformOrigin").split(" ");2<=e.length?(e[0]=e[0].replace("px",""),e[1]=e[1].replace("px",""),c.Fd=parseFloat(e[0]),c.Gd=parseFloat(e[1]),0==c.Fd&&(c.Fd=d.x),0==c.Gd&&(c.Gd=d.y)):(c.Fd=d.x,c.Gd=d.y);c.M(c.J+"_parent").transition({transformOrigin:c.Fd+"px "+c.Gd+"px"},0,null,function(){if(eb.platform.touchonlydevice){c.F.scale=c.Wc;for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.Wc,c.pages[d].Qa());}c.Hd();}});}}}jQuery(".flowpaper_flipview_canvas").Ec();jQuery(".flowpaper_flipview_canvas_highres").Kb();jQuery(c.J+"_glyphcanvas").css("z-index",-1).Kb();c.F.va.turn("setCornerDragging",!1);c.M(c.J+"_parent").transition({scale:c.Wc},0,"ease",function(){window.clearTimeout(c.He);c.He=setTimeout(function(){c.F.scale==c.Wc&&c.Hd();c.F.scale=c.Wc;for(var d=c.Jd=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Qa());}1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));for(d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].oa=!1);}c.md();c.Wc=null;jQuery(c).trigger("onScaleChanged");jQuery(c.F.K).trigger("onScaleChanged",c.F.scale/c.F.document.MaxZoomSize);},150);});}});jQuery(c.J+"_arrowleft, "+c.J+"_panelLeft").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mouseup":"touchend",function(c){c.preventDefault&&c.preventDefault();});jQuery(c.J+"_arrowright, "+c.J+"_panelRight").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mouseup":"touchend",function(c){c.preventDefault&&c.preventDefault();});jQuery(c.J+"_arrowleft, "+c.J+"_panelLeft").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){if(c.F.I.rf){return jQuery(d.target).hasClass("flowpaper_arrow_start")?c.F.document.RTLMode?c.gotoPage(c.F.getTotalPages()):c.gotoPage(1):c.previous(),!1;}});jQuery(c.J+"_arrowright, "+c.J+"_panelRight").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){jQuery(d.target).hasClass("flowpaper_arrow_end")?c.F.document.RTLMode?c.gotoPage(1):c.gotoPage(c.F.getTotalPages()):c.next();return !1;});jQuery(d).css("overflow-y","hidden");jQuery(d).css("overflow-x","hidden");jQuery(d).css("-webkit-overflow-scrolling","hidden");}},bi:function(c,d){c.Cl=d.append("<div id='"+c.container+"_play' onclick='$FlowPaper(\""+c.P+"\").openFullScreen()' class='abc' style='position:absolute;left:"+(d.width()/2-20)+"px;top:"+(c.ng/2-12)+"px;width:"+c.qd+"px;height:"+c.ng+"px;z-index:100;'></div>");jQuery("#"+c.container+"_play").Ad(50,"#AAAAAA",!0);},kp:function(c,d){d.find("#"+c.container+"_play").remove();c.Cl=null;},previous:function(c){if("FlipView"==c.F.H){var d=c.R-1;c.F.renderer.pe&&c.lf(d);1!=c.F.scale?c.Qa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("previous");}):c.F.turn("previous");}},next:function(c){if("FlipView"==c.F.H){var d=c.R;if(d<c.F.getTotalPages()||d==c.F.getTotalPages()&&c.F.I.ka){d++,c.F.renderer.pe&&c.lf(d),1!=c.F.scale?c.Qa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("next");}):c.F.turn("next");}}},bh:function(c,d,e){if(!c.animating){var f=c.L.width(),h=c.L.height(),m=null==c.Wc?c.F.scale:c.Wc;"FlipView"==c.F.H&&1<m&&!eb.browser.safari?c.M(c.J).transition({x:-c.ao(d,c.F.scale),y:-c.bo(e)},0):"FlipView"==c.F.H&&1<m&&eb.browser.safari&&jQuery(".flowpaper_viewer").scrollTo({top:0.9*e/h*100+"%",left:d/f*100+"%"},0,{axis:"xy"});}},Oi:function(c){c=c.M(c.J+"_parent").css("transformOrigin")+"";return null!=c?(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.split(" "),1<c.length?{left:parseFloat(c[0].replace("px","")),top:parseFloat(c[1].replace("px",""))}:null):null;},Ve:function(c){!eb.platform.touchdevice&&"FlipView"==c.F.H&&1<c.F.scale?jQuery(".flowpaper_viewer").scrollTo({left:"50%"},0,{axis:"x"}):eb.platform.touchdevice||"FlipView"!=c.F.H||1!=c.F.scale||c.Wb()||jQuery(".flowpaper_viewer").scrollTo({left:"0%",top:"0%"},0,{axis:"xy"});}};return f;}(),X=window.Oq=X||{},Y=X;Y.Th={PI:Math.PI,Wr:1/Math.PI,ko:0.5*Math.PI,Nn:2*Math.PI,Cs:Math.PI/180,Bs:180/Math.PI};Y.ie={NONE:0,LEFT:-1,RIGHT:1,X:1,Y:2,Zh:4,dr:0,er:1,hr:2};Y.Fm="undefined"!==typeof Float32Array?Float32Array:Array;Y.Bq="undefined"!==typeof Float64Array?Float64Array:Array;Y.Cq="undefined"!==typeof Int8Array?Int8Array:Array;Y.xq="undefined"!==typeof Int16Array?Int16Array:Array;Y.zq="undefined"!==typeof Int32Array?Int32Array:Array;Y.Dq="undefined"!==typeof Uint8Array?Uint8Array:Array;Y.yq="undefined"!==typeof Uint16Array?Uint16Array:Array;Y.Aq="undefined"!==typeof Uint32Array?Uint32Array:Array;Y.Yh=Y.Fm;!0;!function(f,c){var d=f.bk=ring.create({constructor:function(d,f){this.x=d===c?0:d;this.y=f===c?0:f;},x:0,y:0,dispose:function(){this.y=this.x=null;return this;},serialize:function(){return{name:this.name,x:this.x,y:this.y};},Gb:function(c){c&&this.name===c.name&&(this.x=c.x,this.y=c.y);return this;},clone:function(){return new d(this.x,this.y);}});}(X);!function(f,c){var d=Math.sin,e=Math.cos,g=f.bk,h=f.Nm=ring.create({constructor:function(d,e,f,g){this.m11=d===c?1:d;this.m12=e===c?0:e;this.m21=f===c?0:f;this.m22=g===c?1:g;},m11:1,m12:0,m21:0,m22:1,dispose:function(){this.m22=this.m21=this.m12=this.m11=null;return this;},serialize:function(){return{name:this.name,m11:this.m11,m12:this.m12,m21:this.m21,m22:this.m22};},Gb:function(c){c&&this.name===c.name&&(this.m11=c.m11,this.m12=c.m12,this.m21=c.m21,this.m22=c.m22);return this;},reset:function(){this.m11=1;this.m21=this.m12=0;this.m22=1;return this;},rotate:function(c){var f=e(c);c=d(c);this.m11=f;this.m12=-c;this.m21=c;this.m22=f;return this;},scale:function(d,e){this.m21=this.m12=0;this.m22=this.m11=1;d!==c&&(this.m22=this.m11=d);e!==c&&(this.m22=e);return this;},multiply:function(c){var d=this.m11,e=this.m12,f=this.m21,g=this.m22,h=c.m11,t=c.m12,q=c.m21;c=c.m22;this.m11=d*h+e*q;this.m12=d*t+e*c;this.m21=f*h+g*q;this.m22=f*t+g*c;return this;},Ds:function(c){var d=c.x;c=c.y;return new g(this.m11*d+this.m12*c,this.m21*d+this.m22*c);},om:function(c){var d=c.x,e=c.y;c.x=this.m11*d+this.m12*e;c.y=this.m21*d+this.m22*e;return c;},clone:function(){return new h(this.m11,this.m12,this.m21,this.m22);}});}(X);!function(f,c){var d=Math.sqrt,e=f.Yh,g=f.Vector3=ring.create({constructor:function(d,f,g){d&&d.length?this.ca=new e([d[0],d[1],d[2]]):(d=d===c?0:d,f=f===c?0:f,g=g===c?0:g,this.ca=new e([d,f,g]));},ca:null,dispose:function(){this.ca=null;return this;},serialize:function(){return{name:this.name,ca:this.ca};},Gb:function(c){c&&this.name===c.name&&(this.ca=c.ca);return this;},Pd:function(){return new e(this.ca);},Xk:function(){return this.ca;},setXYZ:function(c){this.ca=new e(c);return this;},Yl:function(c){this.ca=c;return this;},clone:function(){return new g(this.ca);},Br:function(c){var d=this.ca;c=c.ca;return d[0]==c[0]&&d[1]==c[1]&&d[2]==c[2];},Qs:function(){this.ca[0]=0;this.ca[1]=0;this.ca[2]=0;return this;},negate:function(){var c=this.ca;return new g([-c[0],-c[1],-c[2]]);},js:function(){var c=this.ca;c[0]=-c[0];c[1]=-c[1];c[2]=-c[2];return this;},add:function(c){var d=this.ca;c=c.ca;return new g([d[0]+c[0],d[1]+c[1],d[2]+c[2]]);},dn:function(c){var d=this.ca;c=c.ca;d[0]+=c[0];d[1]+=c[1];d[2]+=c[2];return this;},xs:function(c){var d=this.ca;c=c.ca;return new g([d[0]-c[0],d[1]-c[1],d[2]-c[2]]);},ys:function(c){var d=this.ca;c=c.ca;d[0]-=c[0];d[1]-=c[1];d[2]-=c[2];return this;},multiplyScalar:function(c){var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},es:function(c){var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},multiply:function(c){var d=this.ca;c=c.ca;return new g([d[0]*c[0],d[1]*c[1],d[2]*c[2]]);},gs:function(c){var d=this.ca;c=c.ca;d[0]*=c[0];d[1]*=c[1];d[2]*=c[2];return this;},divide:function(c){c=1/c;var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},yr:function(c){c=1/c;var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},normalize:function(){var c=this.ca,e=c[0],f=c[1],c=c[2],l=e*e+f*f+c*c;0<l&&(l=1/d(l),e*=l,f*=l,c*=l);return new g([e,f,c]);},Po:function(){var c=this.ca,e=c[0],f=c[1],g=c[2],n=e*e+f*f+g*g;0<n&&(n=1/d(n),e*=n,f*=n,g*=n);c[0]=e;c[1]=f;c[2]=g;return this;},Ir:function(){var c=this.ca,e=c[0],f=c[1],c=c[2];return d(e*e+f*f+c*c);},us:function(c){this.Po();var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},zr:function(c){var d=this.ca;c=c.ca;return d[0]*c[0]+d[1]*c[1]+d[2]*c[2];},qr:function(c){var d=this.ca,e=c.ca;c=d[0];var f=d[1],g=d[2],p=e[0],r=e[1],e=e[2];d[0]=f*e-g*r;d[1]=g*p-c*e;d[2]=c*r-f*p;return this;},xr:function(c){var e=this.ca,f=c.ca;c=e[0]-f[0];var g=e[1]-f[1],e=e[2]-f[2];return d(c*c+g*g+e*e);},toString:function(){return"["+this.ca[0]+" , "+this.ca[1]+" , "+this.ca[2]+"]";}});f.Vector3.ZERO=function(){return new g([0,0,0]);};f.Vector3.dot=function(c,d){var e=c.ca,f=d.ca;return e[0]*f[0]+e[1]*f[1]+e[2]*f[2];};f.Vector3.equals=function(c,d){var e=c.ca,f=d.ca;return e[0]==f[0]&&e[1]==f[1]&&e[2]==f[2];};f.Vector3.cross=function(c,d){var e=c.ca,f=d.ca,n=e[0],p=e[1],e=e[2],r=f[0],t=f[1],f=f[2];return new g([p*f-e*t,e*r-n*f,n*t-p*r]);};f.Vector3.distance=function(c,e){var f=c.ca,g=e.ca,n=f[0]-g[0],p=f[1]-g[1],f=f[2]-g[2];return d(n*n+p*p+f*f);};f.Vector3.zs=function(c,d){var e=c.ca,f=d.ca;return new g([e[0]+f[0],e[1]+f[1],e[2]+f[2]]);};}(X);!function(f,c){var d=f.ie,e=d.X,g=d.Y,h=d.Zh,m=f.Vector3,k=f.Yh;f.mg=ring.create({constructor:function(d){this.ca=new k([0,0,0]);this.Tb=new k([0,0,0]);this.ratio=new k([0,0,0]);c!==d&&null!==d&&!1!==d&&this.Xl(d);},jb:null,ca:null,Tb:null,ratio:null,dispose:function(){this.ratio=this.Tb=this.ca=this.jb=null;return this;},serialize:function(){return{jb:this.name,ca:this.Pd(),Tb:this.Tb,ratio:this.ratio};},Gb:function(c){c&&(this.setXYZ(c.ca),this.Tb=c.Tb,this.ratio=c.ratio);return this;},Xl:function(c){this.jb=c;return this;},Or:function(){return new m(this.ratio);},Nr:function(c){switch(c){case e:return this.ratio[0];case g:return this.ratio[1];case h:return this.ratio[2];}return -1;},Mr:function(c){switch(c){case e:return this.Tb[0];case g:return this.Tb[1];case h:return this.Tb[2];}return 0;},Cp:function(d,e,f){d=d===c?0:d;e=e===c?0:e;f=f===c?0:f;this.ratio=new k([d,e,f]);return this;},Ap:function(d,e,f){d=d===c?0:d;e=e===c?0:e;f=f===c?0:f;this.Tb=new k([d,e,f]);return this;},Pd:function(){return new k(this.ca);},Xk:function(){return this.ca;},getX:function(){return this.ca[0];},getY:function(){return this.ca[1];},getZ:function(){return this.ca[2];},setXYZ:function(c){this.ca=new k(c);return this;},Yl:function(c){this.ca=c;return this;},setX:function(c){this.ca[0]=c;return this;},setY:function(c){this.ca[1]=c;return this;},setZ:function(c){this.ca[2]=c;return this;},getValue:function(c){switch(c){case e:return this.getX();case g:return this.getY();case h:return this.getZ();}return 0;},setValue:function(c,d){switch(c){case e:this.setX(d);break;case g:this.setY(d);break;case h:this.setZ(d);}return this;},reset:function(){this.setXYZ(this.Tb);return this;},collapse:function(){this.Tb=this.Pd();return this;},Tk:function(){return new m(this.Pd());},Wl:function(c){this.setXYZ(c.ca);}});}(X);!function(f,c){var d=f.ie,e=d.X,g=d.Y,h=d.Zh,m=Math.min,k=Math.max,l,n;l=function(c){return c?c.serialize():c;};n=f.isWorker?function(c){return c&&c.jb?(new f.mg).Gb(c):c;}:function(c,d){return c&&c.jb?this.vertices[d].Gb(c):c;};f.Pg=ring.create({constructor:function(d){this.depth=this.height=this.width=this.Bc=this.mc=this.lc=this.Wd=this.Vd=this.Ud=this.De=this.Ce=this.Be=null;this.vertices=[];this.faces=[];this.ja=null;c!==d&&this.Ej(d);},Be:null,Ce:null,De:null,Ud:null,Vd:null,Wd:null,lc:null,mc:null,Bc:null,width:null,height:null,depth:null,vertices:null,faces:null,ja:null,dispose:function(){this.depth=this.height=this.width=this.Bc=this.mc=this.lc=this.Wd=this.Vd=this.Ud=this.De=this.Ce=this.Be=null;this.Gk();this.Hk();this.ja=null;return this;},Hk:function(){var c,d;if(this.vertices){for(d=this.vertices.length,c=0;c<d;c++){this.vertices[c].dispose();}}this.vertices=null;return this;},Gk:function(){var c,d;if(this.faces){for(d=this.faces.length,c=0;c<d;c++){this.faces[c].dispose();}}this.faces=null;return this;},serialize:function(){return{ja:this.name,Be:this.Be,Ce:this.Ce,De:this.De,Ud:this.Ud,Vd:this.Vd,Wd:this.Wd,lc:this.lc,mc:this.mc,Bc:this.Bc,width:this.width,height:this.height,depth:this.depth,vertices:this.vertices?this.vertices.map(l):null,faces:null};},Gb:function(c){c&&(f.isWorker&&(this.Gk(),this.Hk()),this.Be=c.Be,this.Ce=c.Ce,this.De=c.De,this.Ud=c.Ud,this.Vd=c.Vd,this.Wd=c.Wd,this.lc=c.lc,this.mc=c.mc,this.Bc=c.Bc,this.width=c.width,this.height=c.height,this.depth=c.depth,this.vertices=(c.vertices||[]).map(n,this),this.faces=null);return this;},Ej:function(c){this.ja=c;this.vertices=[];return this;},Uk:function(){return this.vertices;},Gr:function(){return this.faces;},nk:function(){var c=this.vertices,d=c.length,f=d,l,n,v,A,w,x,D,B,K,C,E;for(d&&(l=c[0],n=l.Pd(),v=n[0],A=n[1],n=n[2],w=x=v,D=B=A,K=C=n);0<=--f;){l=c[f],n=l.Pd(),v=n[0],A=n[1],n=n[2],l.Ap(v,A,n),w=m(w,v),D=m(D,A),K=m(K,n),x=k(x,v),B=k(B,A),C=k(C,n);}v=x-w;A=B-D;E=C-K;this.width=v;this.height=A;this.depth=E;this.Ud=w;this.Be=x;this.Vd=D;this.Ce=B;this.Wd=K;this.De=C;f=k(v,A,E);l=m(v,A,E);f==v&&l==A?(this.Bc=g,this.mc=h,this.lc=e):f==v&&l==E?(this.Bc=h,this.mc=g,this.lc=e):f==A&&l==v?(this.Bc=e,this.mc=h,this.lc=g):f==A&&l==E?(this.Bc=h,this.mc=e,this.lc=g):f==E&&l==v?(this.Bc=e,this.mc=g,this.lc=h):f==E&&l==A&&(this.Bc=g,this.mc=e,this.lc=h);for(f=d;0<=--f;){l=c[f],n=l.Pd(),l.Cp((n[0]-w)/v,(n[1]-D)/A,(n[2]-K)/E);}return this;},pp:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].reset();}this.update();return this;},An:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].collapse();}this.update();this.nk();return this;},ho:function(c){switch(c){case e:return this.Ud;case g:return this.Vd;case h:return this.Wd;}return -1;},Jr:function(c){switch(c){case e:return this.Be;case g:return this.Ce;case h:return this.De;}return -1;},getSize:function(c){switch(c){case e:return this.width;case g:return this.height;case h:return this.depth;}return -1;},update:function(){return this;},ps:function(){return this;},qm:function(){return this;}});}(X);!function(f){var c=0,d=f.ie.NONE;f.ak=ring.create({constructor:function(e){this.id=++c;this.na=e||null;this.ic=this.Te=d;this.enabled=!0;},id:null,na:null,Te:null,ic:null,enabled:!0,dispose:function(c){!0===c&&this.na&&this.na.dispose();this.ic=this.Te=this.name=this.na=null;return this;},serialize:function(){return{xd:this.name,params:{Te:this.Te,ic:this.ic,enabled:!!this.enabled}};},Gb:function(c){c&&this.name===c.xd&&(c=c.params,this.Te=c.Te,this.ic=c.ic,this.enabled=c.enabled);return this;},enable:function(c){return arguments.length?(this.enabled=!!c,this):this.enabled;},nr:function(c){this.Te=c||d;return this;},ts:function(c){this.ic=c||d;return this;},Jh:function(c){this.na=c;return this;},Uk:function(){return this.na?this.na.Uk():null;},Gf:function(){return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(f){d.unbind("apply");f&&f.Eg&&(d.na.Gb(f.Eg),d.na.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Eg:d.na.serialize()}):(d.Gf(),c&&c.call(d));return d;},toString:function(){return"[Modifier "+this.name+"]";}});}(X);!function(f){f.Wh=ring.create({constructor:function(){this.fj=f.Pg;this.wm=f.mg;},fj:null,wm:null});var c=ring.create({fo:function(c){if(arguments.length){var e=c.fj;return e?new e:null;}return null;},io:function(c){return c&&c.xd&&f[c.xd]?new f[c.xd]:null;},Hr:function(c){return c&&c.ol&&f[c.ol]?new f[c.ol]:new f.Wh;},Kr:function(c){return c&&c.ja&&f[c.ja]?(new f.Pg).Gb(c):new f.Pg;},Pr:function(c){return c&&c.jb&&f[c.jb]?(new f.mg).Gb(c):new f.mg;}});f.Zj=new c;}(X);!function(f){function c(c){return c?c.serialize():c;}var d=f.Zj.fo,e=f.Pm=ring.create({constructor:function(c,e){this.na=null;this.stack=[];this.aj=f.isWorker?new f.Wh:c;this.na=d(this.aj);e&&(this.na.Ej(e),this.na.nk());},aj:null,na:null,stack:null,dispose:function(c){this.aj=null;if(c&&this.stack){for(;this.stack.length;){this.stack.pop().dispose();}}this.stack=null;this.na&&this.na.dispose();this.na=null;return this;},serialize:function(){return{xd:this.name,params:{No:this.stack.map(c)}};},Gb:function(c){if(c&&this.name===c.xd){c=c.params.No;var d=this.stack,e;if(c.length!==d.length){for(e=d.length=0;e<c.length;e++){d.push(f.Zj.io(c[e]));}}for(e=0;e<d.length;e++){d[e]=d[e].Gb(c[e]).Jh(this.na);}this.stack=d;}return this;},Jh:function(c){this.na=c;return this;},add:function(c){c&&(c.Jh(this.na),this.stack.push(c));return this;},Gf:function(){if(this.na&&this.stack&&this.stack.length){var c=this.stack,d=c.length,e=this.na,f=0;for(e.pp();f<d;){c[f].enabled&&c[f].Gf(),f++;}e.update();}return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(e){d.unbind("apply");e&&e.Eg&&(d.na.Gb(e.Eg),d.na.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Eg:d.na.serialize()}):(d.Gf(),c&&c.call(d));return d;},collapse:function(){this.na&&this.stack&&this.stack.length&&(this.apply(),this.na.An(),this.stack.length=0);return this;},clear:function(){this.stack&&(this.stack.length=0);return this;},Lr:function(){return this.na;}});e.prototype.jk=e.prototype.add;}(X);!function(f){var c=f.Vector3;f.Sm=ring.create([f.ak],{constructor:function(d,e,f){this.$super();this.fc=new c([d||0,e||0,f||0]);},fc:null,dispose:function(){this.fc.dispose();this.fc=null;this.$super();return this;},serialize:function(){return{xd:this.name,params:{fc:this.fc.serialize(),enabled:!!this.enabled}};},Gb:function(c){c&&this.name===c.xd&&(c=c.params,this.fc.Gb(c.fc),this.enabled=!!c.enabled);return this;},vs:function(){var d=this.na;this.fc=new c(-(d.Ud+0.5*d.width),-(d.Vd+0.5*d.height),-(d.Wd+0.5*d.depth));return this;},Gf:function(){for(var c=this.na.vertices,e=c.length,f=this.fc,h;0<=--e;){h=c[e],h.Wl(h.Tk().dn(f));}this.na.qm(f.negate());return this;}});}(X);!function(f,c){var d=f.ie.NONE,e=f.ie.LEFT,g=f.ie.RIGHT,h=f.Nm,m=Math.atan,k=Math.sin,l=Math.cos,n=f.Th.PI,p=f.Th.ko,r=f.Th.Nn,t=f.bk;f.Hm=ring.create([f.ak],{constructor:function(e,f,g){this.$super();this.ic=d;this.origin=this.height=this.width=this.Td=this.min=this.max=0;this.wd=this.vd=null;this.$e=0;this.de=!1;this.force=e!==c?e:0;this.offset=f!==c?f:0;g!==c?this.Ig(g):this.Ig(0);},force:0,offset:0,angle:0,$e:0,max:0,min:0,Td:0,width:0,height:0,origin:0,vd:null,wd:null,de:!1,dispose:function(){this.origin=this.height=this.width=this.Td=this.min=this.max=this.$e=this.angle=this.offset=this.force=null;this.vd&&this.vd.dispose();this.wd&&this.wd.dispose();this.de=this.wd=this.vd=null;this.$super();return this;},serialize:function(){return{xd:this.name,params:{force:this.force,offset:this.offset,angle:this.angle,$e:this.$e,max:this.max,min:this.min,Td:this.Td,width:this.width,height:this.height,origin:this.origin,vd:this.vd.serialize(),wd:this.wd.serialize(),de:this.de,ic:this.ic,enabled:!!this.enabled}};},Gb:function(c){c&&this.name===c.xd&&(c=c.params,this.force=c.force,this.offset=c.offset,this.angle=c.angle,this.$e=c.$e,this.max=c.max,this.min=c.min,this.Td=c.Td,this.width=c.width,this.height=c.height,this.origin=c.origin,this.vd.Gb(c.vd),this.wd.Gb(c.wd),this.de=c.de,this.ic=c.ic,this.enabled=!!c.enabled);return this;},Ig:function(c){this.angle=c;this.vd=(new h).rotate(c);this.wd=(new h).rotate(-c);return this;},Jh:function(c){this.$super(c);this.max=this.de?this.na.mc:this.na.lc;this.min=this.na.Bc;this.Td=this.de?this.na.lc:this.na.mc;this.width=this.na.getSize(this.max);this.height=this.na.getSize(this.Td);this.origin=this.na.ho(this.max);this.$e=m(this.width/this.height);return this;},Gf:function(){if(!this.force){return this;}for(var c=this.na.vertices,d=c.length,f=this.ic,h=this.width,m=this.offset,x=this.origin,D=this.max,B=this.min,K=this.Td,C=this.vd,E=this.wd,F=x+h*m,z=h/n/this.force,y=h/(z*r)*r,G,H,J,M,L=1/h;0<=--d;){h=c[d],G=h.getValue(D),H=h.getValue(K),J=h.getValue(B),H=C.om(new t(G,H)),G=H.x,H=H.y,M=(G-x)*L,e===f&&M<=m||g===f&&M>=m||(M=p-y*m+y*M,G=k(M)*(z+J),M=l(M)*(z+J),J=G-z,G=F-M),H=E.om(new t(G,H)),G=H.x,H=H.y,h.setValue(D,G),h.setValue(K,H),h.setValue(B,J);}return this;}});}(X);!function(f){var c=f.ie,d=c.X,e=c.Y,g=c.Zh,h=f.Vector3,m=f.Yh,c=f.ck=ring.create([f.mg],{constructor:function(c,d){this.ja=c;this.$super(d);},ja:null,dispose:function(){this.ja=null;this.$super();return this;},Xl:function(c){this.jb=c;this.Tb=new m([c.x,c.y,c.z]);this.ca=new m(this.Tb);return this;},Pd:function(){var c=this.jb;return new m([c.x,c.y,c.z]);},getX:function(){return this.jb.x;},getY:function(){return this.jb.y;},getZ:function(){return this.jb.z;},setXYZ:function(c){var d=this.jb;d.x=c[0];d.y=c[1];d.z=c[2];return this;},setX:function(c){this.jb.x=c;return this;},setY:function(c){this.jb.y=c;return this;},setZ:function(c){this.jb.z=c;return this;},reset:function(){var c=this.jb,d=this.Tb;c.x=d[0];c.y=d[1];c.z=d[2];return this;},collapse:function(){var c=this.jb;this.Tb=new m([c.x,c.y,c.z]);return this;},getValue:function(c){var f=this.jb;switch(c){case d:return f.x;case e:return f.y;case g:return f.z;}return 0;},setValue:function(c,f){var h=this.jb;switch(c){case d:h.x=f;break;case e:h.y=f;break;case g:h.z=f;}return this;},Wl:function(c){var d=this.jb;c=c.ca;d.x=c[0];d.y=c[1];d.z=c[2];return this;},Tk:function(){var c=this.jb;return new h([c.x,c.y,c.z]);}});c.prototype.Xk=c.prototype.Pd;c.prototype.Yl=c.prototype.setXYZ;}(X);!function(f){var c=f.ck;f.Om=ring.create([f.Pg],{constructor:function(c){this.$super(c);},Ej:function(d){this.$super(d);var e=0;d=this.ja;for(var f=this.vertices,h=d.geometry.vertices,m=h.length,k,e=0;e<m;){k=new c(d,h[e]),f.push(k),e++;}this.faces=null;return this;},update:function(){var c=this.ja.geometry;c.verticesNeedUpdate=!0;c.normalsNeedUpdate=!0;c.kr=!0;c.dynamic=!0;return this;},qm:function(c){var e=this.ja.position;c=c.ca;e.x+=c[0];e.y+=c[1];e.z+=c[2];return this;}});}(X);!function(f){var c=ring.create([f.Wh],{constructor:function(){this.fj=f.Om;this.wm=f.ck;}});f.Mm=new c;}(X);I=W.prototype;I.il=function(){var f=this;if(f.F.H&&(!f.F.H||0!=f.F.H.length)&&f.F.I.rb&&!f.Yi){f.Yi=!0;f.Lb=f.container+"_webglcanvas";var c=jQuery(f.J).offset(),d=f.w=f.F.N.width(),e=f.h=f.F.N.height(),g=c.left,c=c.top;f.Zb=new THREE.Scene;f.ge=jQuery(String.format("<canvas id='{0}' style='opacity:0;pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;width:100%;height:100%;'></canvas>",f.Lb,g,c));f.ge.get(0).addEventListener("webglcontextlost",function(c){f.rd();c.preventDefault&&c.preventDefault();f.ge.remove();return !1;},!1);f.Id=new THREE.WebGLRenderer({alpha:!0,antialias:!0,canvas:f.ge.get(0)});f.Id.setPixelRatio(eb.platform.Xa);f.Id.shadowMap.type=THREE.PCFShadowMap;f.Id.shadowMap.enabled=!0;f.Mb=new THREE.PerspectiveCamera(180/Math.PI*Math.atan(e/1398)*2,d/e,1,1000);f.Mb.position.z=700;f.Zb.add(f.Mb);g=new THREE.PlaneGeometry(d,1.3*e);c=new THREE.MeshPhongMaterial({color:f.F.I.backgroundColor});g=new THREE.Mesh(g,c);g.receiveShadow=!0;g.position.x=0;g.position.y=0;g.position.z=-3;c=new THREE.ShadowMaterial;c.opacity=0.15;g.material=c;f.Zb.add(g);f.Id.setSize(d,e);0==f.Id.context.getError()?(jQuery(f.F.N).append(f.Id.domElement),f.WebGLObject=new THREE.Object3D,f.WebGLObject.scale.set(1,1,0.35),f.Yb=new THREE.Object3D,f.WebGLObject.add(f.Yb),f.Zb.add(f.WebGLObject),f.fb=new THREE.DirectionalLight(16777215,0.2),f.fb.position.set(500,0,800),f.fb.intensity=0.37,f.fb.shadow=new THREE.LightShadow(new THREE.PerspectiveCamera(70,1,5,2000)),f.fb.castShadow=!0,f.fb.shadow.bias=-0.000222,f.fb.shadow.mapSize.height=1024,f.fb.shadow.mapSize.width=1024,f.Zb.add(f.fb),d=f.ws=new THREE.CameraHelper(f.fb.shadow.camera),d.visible=!1,f.Zb.add(d),f.$b=new THREE.AmbientLight(16777215),f.$b.intensity=0.75,f.$b.visible=!0,f.Zb.add(f.$b),f.Mb.lookAt(f.Zb.position),f.ej(),f.F.renderer.qa&&jQuery(f.F.renderer).bind("onTextDataUpdated",function(c,d){for(var e=f.M(f.J).scrollTop(),g=d-2,n=d+12,p=f.M(f.J).height();g<n;g++){var r=f.getPage(g);if(r&&r.Qc(e,p)&&0==r.pageNumber%2){var t=f.pages.length>g+1?f.pages[g]:null;f.F.renderer.S[r.pageNumber].loaded?t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.yc(t.pageNumber+1,!0,function(){}):f.F.renderer.yc(r.pageNumber+1,!0,function(){t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.yc(t.pageNumber+1,!0,function(){});});r.Uc(f.F.renderer.ga(r.pageNumber+1),f.F.renderer.ga(r.pageNumber+2),!0);}}})):f.rd();f.Yi=!1;}};I.rd=function(){this.F.I.rb=!1;for(var f=0;f<this.document.numPages;f++){this.pages[f]&&this.pages[f].ja&&this.pages[f].Hn();}this.Zb&&(this.WebGLObject&&this.Zb.remove(this.WebGLObject),this.Mb&&this.Zb.remove(this.Mb),this.$b&&this.Zb.remove(this.$b),this.fb&&this.Zb.remove(this.fb),this.ge.remove());this.Lb=null;};I.Ll=function(){if(this.F.I.rb){if(this.we=[],this.ge){for(var f=0;f<this.document.numPages;f++){this.pages[f].ja&&this.pages[f].Ng(!0);}var f=this.F.N.width(),c=this.F.N.height(),d=180/Math.PI*Math.atan(c/1398)*2;this.Id.setSize(f,c);this.Mb.fov=d;this.Mb.aspect=f/c;this.Mb.position.z=700;this.Mb.position.x=0;this.Mb.position.y=0;this.Mb.updateProjectionMatrix();jQuery("#"+this.Lb).css("opacity","0");}else{this.il();}}};I.Op=function(){var f=jQuery(this.J).offset();jQuery(this.J).width();var c=jQuery(this.J).height();this.Mb.position.y=-1*((this.ge.height()-c)/2-f.top)-this.F.N.offset().top;this.Mb.position.x=0;this.mo=!0;};I.ne=function(){if(!this.F.I.rb){return !1;}for(var f=this.pg,c=0;c<this.document.numPages;c++){if(this.pages[c].cc||this.pages[c].Pb){f=!0;}}return f;};I.eo=function(f){return f==this.wa?2:f==this.wa-2?1:f==this.wa+2?1:0;};I.gn=function(){for(var f=jQuery(this.J).width(),c=0;c<this.document.numPages;c++){this.pages[c].ja&&(c+1<this.R?this.pages[c].cc||this.pages[c].Pb||this.pages[c].ja.rotation.y==-Math.PI||this.pages[c].vo():this.pages[c].cc||this.pages[c].Pb||0==this.pages[c].ja.rotation.y||this.pages[c].wo(),this.pages[c].ja.position.x=800<f?0.5:0,this.pages[c].ja.position.y=0,this.pages[c].cc||this.pages[c].Pb||(this.pages[c].ja.position.z=this.eo(c)),this.pages[c].ja.visible=0==this.pages[c].ja.position.z?!1:!0);}};I.Qj=function(f,c){var d=this;d.Si=!1;var e=d.F.getTotalPages();d.pg=!0;d.Vj=f;d.rq=c;if(1==d.F.scale){if("next"==f&&(d.wa?d.wa=d.wa+2:d.wa=d.R-1,0==e%2&&d.wa==e-2&&(d.Si=!0),0!=d.wa%2&&(d.wa=d.wa-1),d.wa>=e-1&&0!=e%2)){d.pg=!1;return;}"previous"==f&&(d.wa=d.wa?d.wa-2:d.R-3,0!=d.wa%2&&(d.wa+=1),d.wa>=e&&(d.wa=e-3));"page"==f&&(d.wa=c-3,f=d.wa>=d.R-1?"next":"previous");d.pages[d.wa]&&!d.pages[d.wa].ja&&d.pages[d.wa].Xe();d.pages[d.wa-2]&&!d.pages[d.wa-2].ja&&d.pages[d.wa-2].Xe();d.pages[d.wa+2]&&!d.pages[d.wa+2].ja&&d.pages[d.wa+2].Xe();d.Op();"0"==jQuery("#"+d.Lb).css("opacity")&&jQuery("#"+d.Lb).animate({opacity:1},50,function(){});var g=new jQuery.Deferred;g.then(function(){d.gn();jQuery("#"+d.Lb).css("z-index",99);d.pg=!1;if("next"==f&&!d.pages[d.wa].cc&&!d.pages[d.wa].Pb){if(0==d.wa||d.Si){d.F.va.css({opacity:0}),d.Yb.position.x=d.pages[d.wa].Cc/2*-1,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){});}0<d.wa&&(d.Yb.position.x=0);jQuery("#"+d.Lb).css("z-index",99);d.he||(d.he=!0,d.uj());d.fb.position.set(300,d.h/2,400);d.fb.intensity=0;d.$b.color.setRGB(1,1,1);var c=d.Wk();(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.$b.intensity=1-this.intensity;d.$b.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.$b.intensity=1-this.intensity;d.$b.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start();d.pages[d.wa].Vn(d.Vk());}"previous"==f&&(d.pg=!1,!d.pages[d.wa]||d.pages[d.wa].Pb||d.pages[d.wa].cc||(0==d.wa&&(d.F.va.css({opacity:0}),jQuery(d.J+"_parent").transition({x:-(d.Oc()/4)},0,"ease",function(){}),d.Yb.position.x=0),d.F.da==d.F.getTotalPages()&&0==d.F.getTotalPages()%2?(d.F.va.css({opacity:0}),d.Yb.position.x=d.pages[d.wa].Cc/2,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){})):0<d.wa&&(d.Yb.position.x=0),jQuery("#"+d.Lb).css("z-index",99),d.he||(d.he=!0,d.uj()),d.fb.position.set(-300,d.h/2,400),d.fb.intensity=0,d.$b.color.setRGB(1,1,1),c=d.Wk(),(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.$b.intensity=1-this.intensity;d.$b.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.$b.intensity=1-this.intensity;d.$b.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start(),d.pages[d.wa].Wn(d.Vk())));});0==d.wa||d.Si?jQuery("#"+d.Lb).animate({opacity:1},{duration:60,always:function(){g.resolve();}}):g.resolve();}};I.Wk=function(){var f=800;"very fast"==this.F.I.dd&&(f=200);"fast"==this.F.I.dd&&(f=300);"slow"==this.F.I.dd&&(f=1700);"very slow"==this.F.I.dd&&(f=2700);return f;};I.Vk=function(){var f=1.5;"very fast"==this.F.I.dd&&(f=0.4);"fast"==this.F.I.dd&&(f=0.7);"slow"==this.F.I.dd&&(f=2.3);"very slow"==this.F.I.dd&&(f=3.7);return f;};I.oo=function(){this.F.I.ih?("next"==this.Vj&&this.F.va.turn("page",this.wa+2,"instant"),"previous"==this.Vj&&this.F.va.turn("page",this.wa,"instant")):this.F.va.turn(this.Vj,this.rq,"instant");this.wa=null;};I.uj=function(){var f,c=this;c.jc||(c.jc=[]);3>c.jc.length&&(f=!0);if((c.F.I.rb||c.he)&&(c.he||f)&&(c.Od||(c.Od=0,c.Cg=(new Date).getTime(),c.elapsedTime=0),f=(new Date).getTime(),requestAnim(function(){c.uj();}),TWEEN.update(),c.Id.render(c.Zb,c.Mb),c.Od++,c.elapsedTime+=f-c.Cg,c.Cg=f,1000<=c.elapsedTime&&4>c.jc.length&&(f=c.Od,c.Od=0,c.elapsedTime-=1000,c.jc.push(f),3==c.jc.length&&!c.Ii))){c.Ii=!0;for(var d=f=0;3>d;d++){f+=c.jc[d];}25>f/3&&c.rd();}};I.bg=function(f){var c=this;if(f&&!c.ld){c.ld=f;}else{if(f&&c.ld&&10>c.ld+f){c.ld=c.ld+f;return;}}c.Id&&c.Zb&&c.Mb&&c.mo?c.animating?setTimeout(function(){c.bg();},500):(0<c.ld?(c.ld=c.ld-1,requestAnim(function(){c.bg();})):c.ld=null,!c.he&&0<c.ld&&c.Id.render(c.Zb,c.Mb)):c.ld=null;};I.ej=function(){var f=this;if(!f.F.initialized){setTimeout(function(){f.ej();},1000);}else{if(!eb.platform.ios&&(f.jc||(f.jc=[]),f.ge&&f.F.I.rb&&!f.he&&4>f.jc.length)){f.Od||(f.Od=0,f.Cg=(new Date).getTime(),f.elapsedTime=0);var c=(new Date).getTime();requestAnim(function(){f.ej();});f.Od++;f.elapsedTime+=c-f.Cg;f.Cg=c;c=f.ge.get(0);if(c=c.getContext("webgl")||c.getContext("experimental-webgl")){if(c.clearColor(0,0,0,0),c.enable(c.DEPTH_TEST),c.depthFunc(c.LEQUAL),c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT),1000<=f.elapsedTime&&4>f.jc.length&&(c=f.Od,f.Od=0,f.elapsedTime-=1000,f.jc.push(c),4==f.jc.length&&!f.Ii)){f.Ii=!0;for(var d=c=0;3>d;d++){c+=f.jc[d];}25>c/3&&f.rd();}}else{f.rd();}}}};I.Yo=function(){for(var f=this,c=!1,d=0;d<f.document.numPages;d++){if(f.pages[d].cc||f.pages[d].Pb){c=!0;}}c||(f.pg=!1,3>f.jc?setTimeout(function(){f.ne()||(f.he=!1);},3000):f.he=!1,f.oo());};var Da=function(){function f(){}f.prototype={Qc:function(c,d){return d.pages.R==d.pageNumber||d.R==d.pageNumber+1;},Zn:function(c,d,e){var f=null!=d.dimensions.nb?d.dimensions.nb:d.dimensions.ma;return !d.pages.Wb()&&c.pb&&(!eb.browser.safari||eb.platform.touchdevice||eb.browser.safari&&7.1>eb.browser.Sb)?e:null!=d.dimensions.nb&&c.pb&&d.F.renderer.ra?d.pages.qd/(d.F.ef?1:2)/f:d.wb&&!d.F.renderer.ra?d.pages.qd/2/d.F.renderer.Ca[d.pageNumber].nb:c.pb&&!d.wb&&!d.F.renderer.ra&&1<d.scale?d.Pi()/f:e;},kn:function(c,d,e){jQuery(d.T+"_textoverlay").append(e);},qk:function(c,d,e,f,h,m,k){var l=c.hp==f&&!d.F.renderer.pb;e&&(c.hp=f,c.rs=e.attr("id"),c.ip!=e.css("top")||h||c.jp!=d.pageNumber?(null==c.Bd||h||c.Bd.remove(),c.ip=e.css("top"),c.Bd=h?m?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-left-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():k?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: transparent;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent(),c.Bd.css({"margin-left":"-3px","margin-top":"-4px","z-index":"11"}),jQuery(d.xa).append(c.Bd)):l?(c.Bd.css("width",c.Bd.width()+e.width()),jQuery(c.Bd.children()[0]).width(c.Bd.width())):(c.Bd.css("left",e.css("left")),c.Bd.append(e)),e.css({left:"0px",top:"0px"}),e.addClass("flowpaper_selected"),e.addClass("flowpaper_selected_default"),e.addClass("flowpaper_selected_searchmatch"),c.jp=d.pageNumber);}};return f;}(),Aa=function(){function f(){}f.prototype={create:function(c,d){if("FlipView"==c.F.H&&(c.En=10<c.pages.Ke?c.pages.Ke:10,!(c.Zi||c.F.renderer.pe&&!c.Wa&&c.pageNumber>c.En+6))){c.Dc=jQuery("<div class='flowpaper_page flowpaper_page_zoomIn' id='"+c.yd+"' style='"+c.getDimensions()+";z-index:2;background-size:100% 100%;background-color:#ffffff;margin-bottom:0px;backface-visibility:hidden;'><div id='"+c.aa+"' style='height:100%;width:100%;'></div></div>");c.pages.F.va&&c.F.renderer.pe?c.pages.F.va.turn("addPage",c.Dc,c.pageNumber+1):jQuery(d).append(c.Dc);var e=c.se()*c.Aa,f=c.za()/e;null!=c.dimensions.nb&&c.pb&&c.F.renderer.ra&&(f=c.pages.qd/2/e);c.dj=f;c.Vf(f);c.Zi=!0;c.Wa=!0;c.F.renderer.Qd(c);c.$l();c.Xe&&c.Xe();}},uo:function(c){var d=c.se()*c.Aa,e=c.za()/d;null!=c.dimensions.nb&&c.pb&&c.F.renderer.ra&&(e=c.pages.qd/2/d);c.dj=e;c.Vf(e);},Pc:function(c){return c.pages.Pc()/(c.F.I.ka?1:2);},Mf:function(c){return c.pages.Mf();},getDimensions:function(c){if("FlipView"==c.F.H){return c.L.width(),"position:absolute;left:0px;top:0px;width:"+c.za(c)+";height:"+c.Ha(c);}},za:function(c){if("FlipView"==c.F.H){return c.pages.qd/(c.F.I.ka?1:2)*c.scale;}},Ni:function(c){if("FlipView"==c.F.H){return c.pages.qd/(c.F.I.ka?1:2)*1;}},Pi:function(c){if("FlipView"==c.F.H){return c.pages.qd/(c.F.I.ka?1:2);}},Ha:function(c){if("FlipView"==c.F.H){return c.pages.ng*c.scale;}},Mi:function(c){if("FlipView"==c.F.H){return 1*c.pages.ng;}},dc:function(){return 0;},Qc:function(c){var d=c.F.I.rb;if("FlipView"==c.F.H){return c.pages.R>=c.pageNumber-(d?3:2)&&c.pages.R<=c.pageNumber+(d?5:4);}},vb:function(c){var d=c.T;0==jQuery(d).length&&(d=jQuery(c.Dc).find(c.T));(c.pageNumber<c.pages.R-15||c.pageNumber>c.pages.R+15)&&c.Dc&&!c.Dc.parent().hasClass("turn-page-wrapper")&&!c.zb&&0!=c.pageNumber&&(jQuery(d).find("*").unbind(),jQuery(d).find("*").remove(),c.initialized=!1,c.zc=!1);}};xa.prototype.yg=function(){return eb.platform.touchdevice?"FlipView"==this.F.H?!this.F.I.ka&&window.devicePixelRatio&&1<window.devicePixelRatio?1.9:2.6:1:"FlipView"==this.F.H?2:1;};return f;}();I=xa.prototype;I.Xe=function(){var f=this;if(0==f.pageNumber%2&&1==f.scale&&f.F.I.rb){if(f.ja&&f.pages.Yb.remove(f.ja),f.pages.Lb||f.pages.il(),f.pages.Yi){setTimeout(function(){f.Xe();},200);}else{f.Cc=f.za(f);f.Yd=f.Ha(f);f.angle=0.25*Math.PI*this.Cc/this.Yd;f.Sj=!eb.platform.touchonlydevice;for(var c=0;6>c;c++){c!=f.ua.Za||f.Ua[f.ua.Za]?c!=f.ua.back||f.Ua[f.ua.back]?f.Ua[c]||c==f.ua.back||c==f.ua.Za||(f.Ua[c]=new THREE.MeshPhongMaterial({color:f.Xo}),f.Ua[c].name="edge"):(f.Ua[f.ua.back]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ua[f.ua.back].name="back",f.gk(f.pageNumber,f.Cc,f.Yd,f.ua.back,function(c){f.kc||(f.Nj=new THREE.TextureLoader,f.Nj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ua[f.ua.back].map=c;}));})):(f.Ua[f.ua.Za]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ua[f.ua.Za].name="front",f.gk(f.pageNumber,f.Cc,f.Yd,f.ua.Za,function(c){f.kc||(f.Mj=new THREE.TextureLoader,f.Mj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ua[f.ua.Za].map=c;}));}));}f.ja=new THREE.Mesh(new THREE.BoxGeometry(f.Cc,f.Yd,0.1,10,10,1),new THREE.MeshFaceMaterial(f.Ua));f.ja.receiveShadow=f.Sj;f.ja.overdraw=!0;f.na=new X.Pm(X.Mm,f.ja);f.fc=new X.Sm(f.Cc/2,0,0);f.na.jk(f.fc);f.na.collapse();f.bc=new X.Hm(0,0,0);f.bc.ic=X.ie.LEFT;f.Yd>f.Cc&&(f.bc.de=!0);f.na.jk(f.bc);f.pages.Yb.add(f.ja);f.ja.position.x=0;f.ja.position.z=-1;f.zh&&(f.ja.rotation.y=-Math.PI);f.Ah&&(f.ja.rotation.y=0);}}};I.gk=function(f,c,d,e,g){var h="image/jpeg",m,k,l;this.pages.we||(this.pages.we=[]);h="image/jpeg";m=0.95;if(e==this.ua.Za&&this.pages.we[this.ua.Za]){g(this.pages.we[this.ua.Za]);}else{if(e==this.ua.back&&this.pages.we[this.ua.back]){g(this.pages.we[this.ua.back]);}else{if(k=document.createElement("canvas"),k.width=c,k.height=d,l=k.getContext("2d"),l.jg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!0,l.fillStyle="white",l.fillRect(0,0,k.width,k.height),l.drawImage(this.F.cj,k.width/2+(this.dc()-10),k.height/2,24,8),this.F.Md){if(e==this.ua.back){l.beginPath();l.strokeStyle="transparent";l.rect(0.65*c,0,0.35*c,d);var n=l.createLinearGradient(0,0,c,0);n.addColorStop(0.93,"rgba(255, 255, 255, 0)");n.addColorStop(0.96,"rgba(170, 170, 170, 0.05)");n.addColorStop(1,"rgba(125, 124, 125, "+this.F.uf+")");l.fillStyle=n;l.fill();l.stroke();l.closePath();n=k.toDataURL(h,m);this.pages.we[this.ua.back]=n;g(n);}e==this.ua.Za&&0!=f&&(l.beginPath(),l.strokeStyle="transparent",l.rect(0,0,0.35*c,d),n=l.createLinearGradient(0,0,0.07*c,0),n.addColorStop(0.07,"rgba(125, 124, 125, "+this.F.uf+")"),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),l.fillStyle=n,l.fill(),l.stroke(),l.closePath(),n=k.toDataURL(h,m),this.pages.we[this.ua.Za]=n,g(n));}}}};I.Ng=function(f){if(this.ja&&this.kc||f){this.pm(),this.na.dispose(),this.fc.dispose(),this.na=this.ja=this.fc=null,this.Ua=[],this.od=this.resources=null,this.Xe(),this.kc=!1;}};I.Hn=function(){this.ja&&this.kc&&(this.pm(),this.na.dispose(),this.fc.dispose(),this.na=this.ja=this.fc=null,this.Ua=[],this.resources=null,this.kc=!1);};I.pm=function(){var f=this.ja;if(f){for(var c=0;c<f.material.materials.length;c++){f.material.materials[c].map&&f.material.materials[c].map.dispose(),f.material.materials[c].dispose();}f.geometry.dispose();this.pages.Yb.remove(f);}};I.Uc=function(f,c,d){var e=this;if(e.F.I.rb&&(!e.kc||d)&&0==e.pageNumber%2&&1==e.F.scale&&1==e.scale){for(e.kc=!0,e.Bh=!0,e.Cc=e.za(e),e.Yd=e.Ha(e),e.angle=0.25*Math.PI*this.Cc/this.Yd,d=0;6>d;d++){d==e.ua.Za?e.loadResources(e.pageNumber,function(){e.xj(e.pageNumber,e.ua.Za,f,"image/jpeg",0.95,e.Cc,e.Yd,function(c){e.Ua[e.ua.Za]&&(e.Ua[e.ua.Za].map=null);e.pages.bg(2);e.Mj=new THREE.TextureLoader;e.Mj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ua[e.ua.Za]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ua.Za]=e.Ua[e.ua.Za]);e.Bh&&e.Ua[e.ua.Za]&&e.Ua[e.ua.Za].map&&e.Ua[e.ua.back]&&e.Ua[e.ua.back].map&&(e.Bh=!1,e.pages.bg(2));});});}):d==e.ua.back&&e.loadResources(e.pageNumber+1,function(){e.xj(e.pageNumber+1,e.ua.back,c,"image/jpeg",0.95,e.Cc,e.Yd,function(c){e.Ua[e.ua.back]&&(e.Ua[e.ua.back].map=null);e.pages.bg(2);e.Nj=new THREE.TextureLoader;e.Nj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ua[e.ua.back]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ua.back]=e.Ua[e.ua.back]);e.Bh&&e.Ua[e.ua.Za]&&e.Ua[e.ua.Za].map&&e.Ua[e.ua.back]&&e.Ua[e.ua.back].map&&(e.Bh=!1,e.pages.bg(2));});});});}}};I.loadResources=function(f,c){var d=this,e=d.pages.getPage(f);if(e){if(null==e.resources&&(e.resources=[],d.F.U[f])){for(var g=0;g<d.F.U[f].length;g++){if("image"==d.F.U[f][g].type||"video"==d.F.U[f][g].type||"audio"==d.F.U[f][g].type||"iframe"==d.F.U[f][g].type){var h=d.F.U[f][g].src,m=new Image;m.loaded=!1;m.setAttribute("crossOrigin","anonymous");m.setAttribute("data-x",d.F.U[f][g].uh?d.F.U[f][g].uh:d.F.U[f][g].Qh);m.setAttribute("data-y",d.F.U[f][g].vh?d.F.U[f][g].vh:d.F.U[f][g].Rh);d.F.U[f][g].Ji&&m.setAttribute("data-x",d.F.U[f][g].Ji);d.F.U[f][g].Ki&&m.setAttribute("data-y",d.F.U[f][g].Ki);m.setAttribute("data-width",d.F.U[f][g].width);m.setAttribute("data-height",d.F.U[f][g].height);jQuery(m).bind("load",function(){this.loaded=!0;d.Nl(f)&&c();});m.src=h;e.resources.push(m);}}}d.Nl(f)&&c();}};I.Nl=function(f){var c=!0;f=this.pages.getPage(f);if(!f.resources){return !1;}for(var d=0;d>f.resources.length;d++){f.resources[d].loaded||(c=!1);}return c;};I.vo=function(){this.ja.rotation.y=-Math.PI;this.page.cc=!1;this.page.zh=!0;this.page.Pb=!1;this.page.Ah=!1;};I.wo=function(){this.ja.rotation.y=0;this.page.cc=!1;this.page.Ah=!0;this.page.Pb=!1;this.page.zh=!1;};I.xj=function(f,c,d,e,g,h,m,k){var l=this,n=new Image,p,r,t,q,u=new jQuery.Deferred;u.then(function(){t=l.renderer.qa&&l.renderer.S[0]?l.renderer.S[0].width:n.naturalWidth;q=l.renderer.qa&&l.renderer.S[0]?l.renderer.S[0].height:n.naturalHeight;if(l.renderer.qa){var u=1.5<l.renderer.Xa?l.renderer.Xa:1;t=l.za()*u;q=l.Ha()*u;}else{t/=2,q/=2;}p=document.createElement("canvas");r=p.getContext("2d");if(t<h||q<m){t=h,q=m;}t<d.width&&(t=d.width);q<d.height&&(q=d.height);p.width=t;p.height=q;r.clearRect(0,0,p.width,p.height);r.fillStyle="rgba(255, 255, 255, 1)";r.fillRect(0,0,t,q);r.drawImage(n,0,0,t,q);jQuery(p).data("needs-overlay",1);l.ae(p,c==l.ua.Za?0:1).then(function(){l.Gl?l.Gl++:l.Gl=1;var n=t/(l.se()*l.Aa),u=l.pages.getPage(f).resources;if(u){for(var v=0;v<u.length;v++){r.drawImage(u[v],parseFloat(u[v].getAttribute("data-x"))*n,parseFloat(u[v].getAttribute("data-y"))*n,parseFloat(u[v].getAttribute("data-width"))*n,parseFloat(u[v].getAttribute("data-height"))*n);}}l.F.Md&&(c==l.ua.back&&(r.beginPath(),r.strokeStyle="transparent",r.rect(0.65*t,0,0.35*t,q),n=r.createLinearGradient(0,0,t,0),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),n.addColorStop(0.96,"rgba(170, 170, 170, 0.05)"),n.addColorStop(1,"rgba(125, 124, 125, 0.3)"),r.fillStyle=n,r.fill(),r.stroke(),r.closePath()),c==l.ua.Za&&0!=f&&(r.beginPath(),r.strokeStyle="transparent",r.rect(0,0,0.35*t,q),n=r.createLinearGradient(0,0,0.07*t,0),n.addColorStop(0.07,"rgba(125, 124, 125, 0.3)"),n.addColorStop(0.93,"rgba(255, 255, 255, 0)"),r.fillStyle=n,r.fill(),r.stroke(),r.closePath()));try{var D=p.toDataURL(e,g);k(D);}catch(B){if(this.src&&this.src.indexOf("blob:")){throw B;}ja(d,function(d){l.xj(f,c,d,e,g,h,m,k);});}});});e=0==d.indexOf("data:image/png")?"image/png":"image/jpeg";g=g||0.92;l.W&&!l.zb&&0!=l.W.naturalWidth&&l.W.getAttribute("src")==d?(n=l.W,u.resolve()):l.pages.pages[f]&&!l.pages.pages[f].zb&&l.pages.pages[f].W&&0!=l.pages.pages[f].W.naturalWidth&&l.pages.pages[f].W.getAttribute("src")==d?(n=l.pages.pages[f].W,u.resolve()):l.pages.pages[f-1]&&!l.pages.pages[f-1].zb&&l.pages.pages[f-1].W&&0!=l.pages.pages[f-1].W.naturalWidth&&l.pages.pages[f-1].W.getAttribute("src")==d?(n=l.pages.pages[f-1].W,u.resolve()):l.pages.pages[f+1]&&!l.pages.pages[f+1].zb&&l.pages.pages[f+1].W&&0!=l.pages.pages[f+1].W.naturalWidth&&l.pages.pages[f+1].W.getAttribute("src")==d?(n=l.pages.pages[f+1].W,u.resolve()):(l.pages.pages[f]&&l.pages.pages[f].W&&(n=l.pages.pages[f].W),l.pages.pages[f-1]&&l.pages.pages[f-1].W&&l.pages.pages[f-1].W.getAttribute("src")==d&&(n=l.pages.pages[f-1].W),l.pages.pages[f+1]&&l.pages.pages[f+1].W&&l.pages.pages[f+1].W.getAttribute("src")==d&&(n=l.pages.pages[f+1].W),jQuery(n).bind("error",function(){jQuery(this).eg(function(){});}),jQuery(n).bind("abort",function(){jQuery(this).eg(function(){});}),n.setAttribute("crossOrigin","anonymous"),n.src=d,jQuery(n).one("load",function(){window.clearTimeout(l.ye);l.Am=!0;u.resolve();}).each(function(){jQuery(this).get(0).complete&&(l.Am=!0,u.resolve());}),l.ye=setTimeout(function(){l.Am||jQuery(n).eg(function(){});},3000));};I.nearestPowerOfTwo=function(f){return Math.pow(2,Math.round(Math.log(f)/Math.LN2));};I.Vn=function(f){var c=this;f&&(c.duration=f);f=0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,m=415*c.duration;"3D, Curled"==c.F.I.Ne&&(f=0.6,d=0.1,e=-0.15,m=210*c.duration);"3D, Soft"==c.F.I.Ne&&(f=0.8,d=0.1,e=0,m=415*c.duration);"3D, Hard"==c.F.I.Ne&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ne&&(f=-0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,m=372*c.duration);c.cc||c.Pb||(c.cc=!0,c.bc.Ig(e),c.ja.castShadow=c.Sj,c.bc.force=0,c.bc.offset=0,c.na.apply(),c.to={angle:c.ja.rotation.y,t:-1,Df:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:-Math.PI,Df:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.Fl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Yf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},m).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Yf).onComplete(c.Ok).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Yf).start(),c.ja.position.z=2);};I.Wn=function(f){var c=this;f&&(c.duration=f);f=-0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,m=415*c.duration;"3D, Curled"==c.F.I.Ne&&(f=-0.6,d=0.1,e=-0.15,m=210*c.duration);"3D, Soft"==c.F.I.Ne&&(f=-0.8,d=0.1,e=0,m=415*c.duration);"3D, Hard"==c.F.I.Ne&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ne&&(f=0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,m=372*c.duration);c.Pb||c.cc||(c.Pb=!0,c.ja.castShadow=c.Sj,c.bc.Ig(e),c.bc.force=0,c.bc.offset=0,c.na.apply(),c.to={angle:c.ja.rotation.y,t:-1,Df:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:0,Df:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.Fl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Yf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},m).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Yf).onComplete(c.Ok).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Yf).start(),c.ja.position.z=2);};I.Fl=function(){this.page.ja.rotation&&(this.page.ja.rotation.y=this.angle);!this.page.cc||0!=this.page.pageNumber&&this.page.pageNumber+1!=this.page.F.getTotalPages()||(this.page.pages.Yb.position.x=(1-this.Df)*this.page.pages.Yb.position.x);this.page.Pb&&0==this.page.pageNumber&&(this.page.pages.Yb.position.x=(1-this.Df)*this.page.pages.Yb.position.x-this.Df*this.page.Cc*0.5);this.page.Pb&&this.page.F.da==this.page.F.getTotalPages()&&0==this.page.F.getTotalPages()%2&&(this.page.pages.Yb.position.x=(1-this.Df)*this.page.pages.Yb.position.x);};I.Yf=function(){this.page.bc&&(this.page.bc.force=this.force,this.page.bc.offset=this.offset);this.page.na&&this.page.na.apply();};I.Ok=function(){this.page.cc?(this.page.cc=!1,this.page.zh=!0,this.page.Pb=!1,this.page.Ah=!1,this.page.kc&&(this.page.ja.position.z=2)):this.page.Pb&&(this.page.cc=!1,this.page.Ah=!0,this.page.Pb=!1,this.page.zh=!1,this.page.kc&&(this.page.ja.position.z=2));this.page.kc&&(this.page.bc.force=0,this.page.bc.Ig(0),this.page.bc.offset=0,this.page.na.apply(),this.page.ja.castShadow=!1);this.page.pages.Yo();};var Ga="undefined"==typeof window;Ga&&(window=[]);var FlowPaperViewer_HTML=window.FlowPaperViewer_HTML=function(){function f(c){window.zine=!0;this.config=c;this.ze=this.config.instanceid;this.document=this.config.document;this.P=this.config.rootid;this.L={};this.pd=this.N=null;this.selectors={};this.H="Portrait";this.sb=null!=c.document.InitViewMode&&"undefined"!=c.document.InitViewMode&&""!=c.document.InitViewMode?c.document.InitViewMode:window.zine?"FlipView":"Portrait";this.initialized=!1;this.Je="flowpaper_selected_default";this.Ya={};this.U=[];this.Ym="data:image/gif;base64,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%3D";this.dk="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.$h="data:image/png;base64,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%3D";this.Zm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAARVBMVEX///////////////////////////////////////////////////////////////////////////////////////////+QFj7cAAAAFnRSTlMAHDE8PkJmcXR4eY+Vs8fL09Xc5vT5J4/h6AAAAFtJREFUeNqt0kkOgDAMQ9EPZSgztMX3PyoHiMKi6ttHkZ1QI+UDpmwkXl0QZbwUnTDLKEg3LLIIQw/dYATa2vYI425sSA+ssvw8/szPnrb83vyu/Tz+Tf0/qPABFzEW/E1C02AAAAAASUVORK5CYII=";this.ke="data:image/gif;base64,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%3D";this.og="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAYAAABWk2cPAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAVVSURBVHjaxFdbSFxHGJ7djfdb1HgNpsV7iwQrYhWN5EmReHlqUEGqUcGHohBCMSqhqEgU8aWiqH0QBDGkAe2bF1ARMduKldqqsURFrVqtBo1uvOzu9P+n/znMWVfNWwc+zp455/zf/LdvZnXs8qGTrrbAwe2ASddrDdvOIfSEGwADQW9DagVYCGa6t9os4kpS5bdCgGSOCpqamj5PSUm5d+fOnS98fHyiHB0dg3U6HT8/P//r6Ojoj729PePy8vJIRkbGnLQQdh25johcADcBQYDQ4uLitNevX3eB4Q2r1coVbG1t8ZWVFS7PnZ6ewtTK856eniiypbskmuoDB4ArwBfwCSCmvr7+GzBiJIO8s7OTP3jwgLu6umqQnJzMW1pauMlkEuTg9eDo6Gg62bRLrHiIhLfQO0B8VVXVk83NzUU0Mjg4yKOioi6Q2eLu3bt8enpaEJ+cnBiHh4fTJY81QwmpLxEmpKWlPVpYWJjFj7u7u7mHh8e1hC4uLgLu7u68oaFBEIPng11dXdH2iJ0ohxjSeEDmy5cvf1I8vIpQIbKHtrY2Qfz27dvnxKGXSd2oaGIAaVB9Nbu7u3tQODw8PFxDkpiYyO/fv3+BICQkhJeWlnJfX191zsvLi6+vr4vigsKKt/XWm8KaDMiFghjAFba2tmoI4+Li1Cqtra1VjUdHR/ONjQ0x39HRoc47OzvzsrIyMT8zM1NJrSdI9XSDReSJC4iNjY3ABy9evNAk/vj4mEFxiN81NTXs6dOnLDQ0lI2MjLDg4GAx//79e8Y5F8AxMDDAgJRBxL609TQEiwfwFeBbWPXewcGB3fzl5OSobYHA95Tfr1694m5ubsJDGbOzs1jJS2Dbg0RHeOpAiUZvXSEvntvb2xovlZUPDQ2x3NxcdnZ2Ju6hyMS1v7+fFRUV/SdnBoMGkFfm4OBwmwjV8Cpy50RgIG0XCJUBYiHCKI/5+XlmsVjsSh3Ogw2drNt6W2Hf2dk5DgwMtGsAciO8hWiIe8wXDhASVllZafcbzDdEZlNWJr3tS4uLi+9A0MXLspcYSiQMCAhQQ/rw4UO1uKqrq1lJSYnGFoY3MjKSQfu9kef10naEW5NlfHx8Bx9kZWVpDODHMmFhYSED8WD5+fkqMWiw5pvU1FTm6enJlpaWfrXd7rBH7wG+BnwXExPzI1TwEe4icrMjsO8qKio4GBKVqgC2PF5XV8cjIiI08xMTExx3J2ivdFK9G3ZbBvB9Y2Pj79gGzc3NGlJsAdnoVYBQi1YyGo1dxKG2jIHE3pGu2DYukFcrSJ4P5Mx9dXWVzc3NqfnV6/XXnUZYQkIC6+vrY7BL/fzs2bNW2DywkE4ohdxAhPIpwenw8BALCj++CSt2MZvNbHJy8qNIsbh6e3vZ/v7+m/b29h9AGo0oaIBT6TShFXzAI1Q6DHNSUtIwkG1hmGC1PC8vj/v5+dkNZ2ZmJocThggpFM7s48ePn5DNIOJQZVBHgoCh9QL4AQLpRSzVW0FBQbfLy8s/Kygo+BTayA12DaxGBiIuVgyFx6CARJXCiWF/bGxsEmqhH3L5GzzeBRwAPqDmUJeopwblqOJFpwd/wi3ahdzh5BCUnZ0dAluff1hYmLe/vz+uHokO19bW/p6amvoTWukXqNhZmMa2+4cITURoUVpGUQmDzW7jI8GbKs+VomJQFI7yhEZRF98B9iUc0rMzmZBJfWOh1ZjooYWq7ZhW6y6RKt+YJdIjIjmgBRxJIbXYOx9x8tYsqYaFVmgiQwqhoySdVnpHITYR0QeaO7/s7PvRh23K+w0bUjMZP5Ngvu6w/b/8rfhXgAEAmJkyLSnsNQEAAAAASUVORK5CYII=";this.pq=this.P+"_textoverlay";this.Uj="#"+this.pq;this.da=1;this.renderer=this.config.renderer;this.Pa="toolbar_"+this.P;this.K="#"+this.Pa;this.rc=!1;this.scale=this.config.document.Scale;this.resources=new FlowPaper_Resources(this);this.ac=!1;this.qg=0;this.linkColor="#72e6ff";this.Tc=0.4;this.uf=0.3;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},Z:function(){return this.I?this.I.Z:"";},loadFromUrl:function(c){var d=this;d.Hg();var e;window.annotations&&d.plugin&&d.plugin.clearMarks();if(d.pages){for(var f=0;f<d.document.numPages;f++){d.pages.pages[f]&&delete d.pages.pages[f];}}var h=f=!1;c.RenderingOrder&&(h=c.RenderingOrder.split(","),f=0<h.length&&"html5"==h[0],h=0<h.length&&"html"==h[0]);c.DOC&&(c.PDFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"pdf"),c.SWFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"swf"),c.JSONFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jsonp"),c.IMGFiles=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jpg"));c.FitPageOnLoad&&(d.config.document.FitPageOnLoad=!0,d.config.document.FitWidthOnLoad=!1);c.FitWidthOnLoad&&(d.config.document.FitWidthOnLoad=!0,d.config.document.FitPageOnLoad=!1);(eb.browser.capabilities.$p&&c.PDFFile||f)&&!h?e=new CanvasPageRenderer(this.P,c.PDFFile,d.config.jsDirectory,{jsonfile:c.JSONFile,pageImagePattern:c.pageImagePattern,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature}):(c.JSONFile&&c.IMGFiles||h)&&!f&&(e=new ImagePageRenderer(this.P,{jsonfile:c.JSONFile,pageImagePattern:c.IMGFiles,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature},d.config.jsDirectory));d.renderer=e;jQuery(d.renderer).bind("loadingProgress",function(c,e){d.Ul(c,e);});jQuery(d.renderer).bind("labelsLoaded",function(c,e){d.Sl(c,e);});jQuery(d.renderer).bind("loadingProgressStatusChanged",function(c,e){d.Vl(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperation",function(c,e){d.ad(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperationCompleted",function(){d.Qb();});jQuery(d.renderer).bind("outlineAdded",function(c,e){d.Bl(c,e);});e&&(d.Ae="",d.Gj(),d.renderer=e,e.initialize(function(){d.document.numPages=e.getNumPages();d.document.dimensions=e.getDimensions();d.document.StartAtPage=c.StartAtPage;d.loadDoc(e,e.getNumPages());},{}));},loadDoc:function(c,d){this.initialized=!1;this.document.numPages=d;this.renderer=c;this.show();},getDimensions:function(c){return this.renderer.getDimensions(c);},Ln:function(c){if(jQuery(c.target).hasClass("flowpaper_note_container")&&eb.platform.touchdevice){return window.Hb=!1,!0;}var d=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;if(this.rc||eb.platform.touchdevice){c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=V(this.P));if(!hoverPageObject&&!window.Hb||!window.Hb){return !0;}eb.platform.touchdevice&&(c.preventDefault&&c.preventDefault(),c.stopPropagation&&c.stopPropagation(),this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").disable());this.H==this.Z()&&1<this.scale?window.b=hoverPageObject.ul(c.target.id):window.b=hoverPageObject.match({left:d,top:e},!1);null!=window.b&&null!=window.a&&window.a.pageNumber!=window.b.pageNumber&&(window.a=hoverPageObject.match({left:d-1,top:e-1},!1));this.We(!0);this.oe=hoverPageObject.Jf(!0,this.Je);}else{if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=V(this.P)),hoverPageObject&&hoverPageObject.match({left:d,top:e},!0),!hoverPageObject&&!window.Hb){return !0;}}},We:function(c){eb.platform.touchdevice||(this.oe=null);this.rc&&(jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected"),jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected_default"));c&&jQuery(".flowpaper_pageword_"+this.P).each(function(){jQuery(this).hasClass("flowpaper_selected_yellow")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_yellow");jQuery(this).hasClass("flowpaper_selected_orange")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_orange");jQuery(this).hasClass("flowpaper_selected_green")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_green");jQuery(this).hasClass("flowpaper_selected_blue")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_blue");jQuery(this).hasClass("flowpaper_selected_strikeout")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_strikeout");});},Mn:function(c){this.Xd="up";this.gd=this.$i=!1;this.sl=null;if(!this.pages||!this.pages.animating){if(jQuery(c.target).hasClass("flowpaper_searchabstract_result")||jQuery(c.target).parent().hasClass("flowpaper_searchabstract_result")||jQuery(c.target).hasClass("flowpaper_note_container")||"TEXTAREA"==c.target.tagName||jQuery(c.target).hasClass("flowpaper_textarea_contenteditable")||jQuery(c.target).parent().hasClass("flowpaper_textarea_contenteditable")){return !0;}if(this.rc||eb.platform.touchdevice){if(hoverPageObject){if(eb.platform.touchdevice){var d=null;"undefined"!=typeof c.originalEvent.touches&&(d=c.originalEvent.touches[0]||c.originalEvent.changedTouches[0]);null!=d&&this.Rc==d.pageX&&this.Sc==d.pageY&&(this.We(),this.oe=hoverPageObject.Jf(window.Hb,this.Je));null!=d&&(this.Rc=d.pageX,this.Sc=d.pageY);this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").enable();}else{window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1);}null!=this.oe&&this.L.trigger("onSelectionCreated",this.oe.text);window.Hb=!1;window.a=null;window.b=null;}}else{hoverPageObject&&(window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1),window.Hb=!1,this.We(),this.oe=hoverPageObject.Jf(!1,this.Je));}}},Kn:function(c){var d=this;d.Xd="down";if(jQuery(c.target).hasClass("flowpaper_note_textarea")||"INPUT"==jQuery(c.target).get(0).tagName){window.b=null,window.a=null;}else{if(!d.pages.animating){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,f=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.Rc=e;d.Sc=f;eb.platform.touchdevice&&(eb.platform.touchonlydevice&&window.annotations&&(d.rc=!0,d.We(!0)),window.clearTimeout(d.Jo),d.sl=(new Date).getTime(),document.activeElement&&jQuery(document.activeElement).hasClass("flowpaper_note_textarea")&&document.activeElement.blur(),d.Jo=setTimeout(function(){if(null!=d.sl&&c.originalEvent.touches&&0<c.originalEvent.touches.length){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,f=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.Rc+20>e&&d.Rc-20<e&&d.Sc+20>f&&d.Sc-20<f&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=V(d.P),null!=hoverPageObject&&(null!=d.pages.jScrollPane&&d.pages.jScrollPane.data("jsp").disable(),window.Hb=!0,d.We(!0),window.b=hoverPageObject.match({left:e,top:f},!1),window.a=hoverPageObject.match({left:e-1,top:f-1},!1),d.oe=hoverPageObject.Jf(!0,d.Je)));}},800));if(d.rc||eb.platform.touchdevice){if(!hoverPageObject){if(eb.platform.touchdevice){if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=V(d.P)),!hoverPageObject){window.a=null;return;}}else{window.a=null;return;}}d.H==d.Z()&&1<d.scale?window.a=hoverPageObject.ul(c.target.id):window.a=hoverPageObject.match({left:e,top:f},!0);if(window.a){return window.Hb=!0,d.We(),d.oe=hoverPageObject.Jf(!1,d.Je),!1;}jQuery(c.target).hasClass("flowpaper_tblabelbutton")||jQuery(c.target).hasClass("flowpaper_tbtextbutton")||jQuery(c.target).hasClass("flowpaper_colorselector")||jQuery(c.target).hasClass("flowpaper_tbbutton")||eb.platform.touchdevice||(d.We(),d.oe=hoverPageObject.Jf(!1,d.Je));window.Hb=!1;return !0;}window.a=hoverPageObject?hoverPageObject.match({left:e,top:f},!0):null;}}},Pc:function(){this.width||(this.width=this.N.width());return this.width;},bindEvents:function(){var c=this;hoverPage=0;hoverPageObject=null;c.L.bind("contextmenu",function(){return !1;});c.N.bind("mousemove",function(d){return c.Ln(d);});c.N.bind("mousedown",function(d){return c.Kn(d);});c.N.bind("mouseup",function(d){return c.Mn(d);});var d=jQuery._data(jQuery(window)[0],"events");eb.platform.android?jQuery(window).bind("orientationchange",function(d){c.Wj(d);}):jQuery(window).bind("resize",function(d){c.Wj(d);});jQuery(window).bind("orientationchange",function(d){c.To(d);});d&&d.resize&&(c.Kl=d.resize[d.resize.length-1]);if(!c.document.DisableOverflow){try{jQuery.get(c.config.localeDirectory+c.document.localeChain+"/FlowPaper.txt",function(d){c.toolbar.pl(d);c.Gj();}).error(function(){c.Gj();O("Failed loading supplied locale ("+c.document.localeChain+")");}),c.toolbar.pl("");}catch(e){}}c.Ae||(c.Ae="");},To:function(c){var d=this;d.si=!0;if(window.zine&&d.H==d.Z()){var e=window.screen&&window.screen.orientation?window.screen.orientation.angle:window.orientation;if("Flip-SinglePage"!=d.document.InitViewMode){switch(e){case 270:case -90:case 90:d.I.ka="Flip-SinglePage"!=d.config.document.TouchInitViewMode?!1:!0;break;default:d.I.ka=!0;}}d.I.rb=d.I.ti();setTimeout(function(){d.H="";d.switchMode(d.Z(),d.getCurrPage()-1);d.si=!1;window.scrollTo(0,0);},500);jQuery(".flowpaper_glyphcanvas").css("z-index",-1);}if("Portrait"==d.H||"SinglePage"==d.H){d.config.document.FitPageOnLoad&&d.fitheight(),d.config.document.FitWidthOnLoad&&d.fitwidth(),d.N.height("auto"),setTimeout(function(){requestAnim(function(){d.Wj(c);d.N.height("auto");d.si=!1;});},1000);}},Wj:function(c){if(!this.document.DisableOverflow&&!this.si&&!jQuery(c.target).hasClass("flowpaper_note")){c=this.N.width();var d=this.N.height(),e=!1,f=-1;this.Aj?f=this.Aj:0<this.N[0].style.width.indexOf("%")&&(this.Aj=f=parseFloat(this.N[0].style.width.substr(0,this.N[0].style.width.length-1)/100));0<f&&(c=0==this.N.parent().width()?jQuery(document).width()*f:this.N.parent().width()*f,e=!0);f=-1;this.zj?f=this.zj:0<this.N[0].style.height.indexOf("%")&&(this.zj=f=parseFloat(this.N[0].style.height.substr(0,this.N[0].style.height.length-1)/100));0<f&&(d=0==this.N.parent().height()?jQuery(window).height()*f:this.N.parent().height()*f,e=!0);f=document.Hb||document.mozFullScreen||document.webkitIsFullScreen||window.Lm||window.kg;e&&!f&&this.resize(c,d);}},Gj:function(){var c=this;if(!c.document.DisableOverflow){if(c.qf||(c.qf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"LoadingPublication"):"Loading Publication"),null==c.qf&&(c.qf="Loading Publication"),c.um=window.zine&&(c.renderer.config.pageThumbImagePattern&&0<c.renderer.config.pageThumbImagePattern.length||c.config.document.LoaderImage),c.um){var d=new Image;jQuery(d).bind("load",function(){if(!c.initialized&&(!c.Ya||c.Ya&&!c.Ya.jquery)){var d=this.width/1.5,f=this.height/1.5;this.width=d;this.height=f;110<d&&(f=this.width/this.height,d=110,f=d/f);c.Ya=jQuery(String.format("<div class='flowpaper_loader' style='position:{1};z-index:100;top:50%;left:50%;color:#ffffff;width:{5}px;margin-left:-{10}px;margin-top:-{11}px'><div style='position:relative;'><div class='flowpaper_titleloader_image' style='position:absolute;left:0px;'></div><div class='flowpaper_titleloader_progress' style='position:absolute;left:{7}px;width:{8}px;height:{6}px;background-color:#000000;opacity:0.3;'></div></div></div>",c.P,"static"==c.N.css("position")?"relative":"fixed",c.I.ka&&!c.ef?"35%":"47%",c.I.hb,c.renderer.ga(1,200),d,f,0,d,c.I.ka&&!c.ef?"30%":"40%",d/2,f/2));c.N.append(c.Ya);jQuery(this).css({width:d+"px",height:f+"px"});c.Ya.find(".flowpaper_titleloader_image").append(this);}});c.config.document.LoaderImage?d.src=c.config.document.LoaderImage:d.src=c.renderer.ga(1,200);}else{!window.zine||eb.browser.msie&&10>eb.browser.version?(c.Ya=jQuery(String.format("<div class='flowpaper_loader flowpaper_initloader' style='position:{2};z-index:100;'><div class='flowpaper_initloader_panel' style='{1};background-color:#ffffff;'><img src='{0}' style='vertical-align:middle;margin-top:7px;margin-left:5px;'><div style='float:right;margin-right:25px;margin-top:19px;' class='flowpaper_notifylabel'>"+c.qf+"<br/><div style='margin-left:30px;' class='flowpaper_notifystatus'>"+c.Ae+"</div></div></div></div>",c.Ym,"margin: 0px auto;","static"==c.N.css("position")?"relative":"absolute")),c.N.append(c.Ya)):(c.Ya=jQuery(String.format("<div id='flowpaper_initloader_{0}' class='flowpaper_loader flowpaper_initloader' style='position:{1};margin: 0px auto;z-index:100;top:40%;left:{2}'></div>",c.P,"static"==c.N.css("position")?"relative":"absolute",eb.platform.iphone?"40%":"50%")),c.N.append(c.Ya),c.Lc=new CanvasLoader("flowpaper_initloader_"+c.P),c.Lc.setColor("#555555"),c.Lc.setShape("square"),c.Lc.setDiameter(70),c.Lc.setDensity(151),c.Lc.setRange(0.8),c.Lc.setSpeed(2),c.Lc.setFPS(42),c.Lc.show());}}},initialize:function(){var c=this;FLOWPAPER.Yk.init();c.zp();c.yp();FLOWPAPER.getLocationHashParameter("DisableOverflow")&&(c.document.DisableOverflow=!0,c.sb="Portrait");FLOWPAPER.getLocationHashParameter("DisplayRange")&&(c.document.DisplayRange=FLOWPAPER.getLocationHashParameter("DisplayRange"));FLOWPAPER.getLocationHashParameter("PrintWidth")&&(window.printWidth=FLOWPAPER.getLocationHashParameter("PrintWidth"),window.printHeight="1000px");c.Rb=location.hash&&0<=location.hash.substr(1).indexOf("inpublisher")?!0:!1;c.L=jQuery("#"+c.P);c.toolbar=new ya(this,this.document);c.fl=c.document.ImprovedAccessibility;!eb.platform.iphone||c.config.document.InitViewMode||window.zine||(c.sb="Portrait");"BookView"==c.config.document.InitViewMode&&0==c.document.StartAtPage%2&&(c.document.StartAtPage+=1);c.config.document.TouchInitViewMode&&c.config.document.TouchInitViewMode!=c.sb&&eb.platform.touchonlydevice&&(c.sb=c.config.document.TouchInitViewMode);c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||window.zine||(c.sb="SinglePage");window.zine&&!c.document.DisableOverflow?(c.I=c.toolbar.vg=new FlowPaperViewer_Zine(c.toolbar,this,c.L),"Portrait"!=c.sb&&"Portrait"!=c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||(c.config.document.TouchInitViewMode=c.config.document.InitViewMode=c.H="Flip-SinglePage"),c.I.initialize(),c.H!=c.Z()&&(c.H=c.sb)):c.H=c.sb;"CADView"==c.H&&(c.H="SinglePage");window.zine&&(eb.browser.msie&&9>eb.browser.version||eb.browser.safari&&5>eb.browser.Sb)&&!eb.platform.touchonlydevice&&(c.document.MinZoomSize=c.MinZoomSize=0.3,c.H="BookView");"0px"==c.L.css("width")&&c.L.css("width","1024px");"0px"==c.L.css("height")&&c.L.css("height","600px");c.ac=c.H==c.Z()&&(eb.platform.iphone||eb.platform.lb);null!==c.N||c.I||(0<c.L.css("width").indexOf("%")&&(c.Aj=parseFloat(c.L[0].style.width.substr(0,c.L[0].style.width.length-1)/100)),0<c.L.css("height").indexOf("%")&&(c.zj=parseFloat(c.L[0].style.height.substr(0,c.L[0].style.height.length-1)/100)),c.document.DisableOverflow?(c.config.document.FitPageOnLoad=!1,c.config.document.FitWidthOnLoad=!0,c.N=jQuery("<div style='left:0px;top:0px;position:absolute;width:"+(window.printWidth?window.printWidth:"210mm")+";height:"+(window.printHeight?window.printHeight:"297mm")+";' class='flowpaper_viewer_container'/>")):(c.N=jQuery("<div style='"+c.L.attr("style")+";' class='flowpaper_viewer_wrap flowpaper_viewer_container'/>"),""!=c.N.css("position")&&"static"!=c.N.css("position")||c.N.css({position:"relative"})),c.N=c.L.wrap(c.N).parent(),c.document.DisableOverflow?c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%","max-width":window.printWidth?window.printWidth:"210mm","max-height":window.printHeight?window.printHeight:"297mm"}).addClass("flowpaper_viewer"):c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer").addClass("flowpaper_viewer_gradient"),window.annotations&&c.config.document.AnnotationToolsVisible&&!c.document.DisableOverflow?(c.qg=eb.platform.touchdevice?15:22,c.L.height(c.L.height()-c.qg)):c.qg=0);c.qq=c.N.html();eb.browser.msie&&jQuery(".flowpaper_initloader_panel").css("left",c.L.width()-500);c.document.DisableOverflow||(null==c.config.Toolbar&&0==jQuery("#"+c.Pa).length?(c.Toolbar=c.N.prepend("<div id='"+c.Pa+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent(),c.toolbar.create(c.Pa)):null==c.config.Toolbar||c.Toolbar instanceof jQuery||(c.config.Toolbar=unescape(c.config.Toolbar),c.Toolbar=jQuery(c.config.Toolbar),c.Toolbar.attr("id",c.Pa),c.N.prepend(c.Toolbar)));c.lk();c.document.DisableOverflow||c.resources.initialize();c.document.DisplayRange&&(c.DisplayRange=ca(c.document.DisplayRange));hoverPage=0;hoverPageObject=null;null!=c.I?c.I.Dn(c.Pa):window.annotations&&(c.plugin=new FlowPaperViewerAnnotations_Plugin(this,this.document,c.Pa+"_annotations"),c.plugin.create(c.Pa+"_annotations"),c.plugin.bindEvents(c.F));jQuery(c.renderer).bind("loadingProgress",function(d,e){c.Ul(d,e);});jQuery(c.renderer).bind("labelsLoaded",function(d,e){c.Sl(d,e);});jQuery(c.renderer).bind("loadingProgressStatusChanged",function(d,e){c.Vl(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperation",function(d,e){c.ad(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperationCompleted",function(){c.Qb();});jQuery(c.renderer).bind("outlineAdded",function(d,e){c.Bl(d,e);});$FlowPaper(c.P).dispose=c.dispose;$FlowPaper(c.P).highlight=c.highlight;$FlowPaper(c.P).rotate=c.rotate;$FlowPaper(c.P).getCurrentRenderingMode=c.getCurrentRenderingMode;},lk:function(){this.hn||this.document.DisableOverflow||(eb.platform.touchonlydevice&&!this.ac?eb.platform.touchonlydevice?(window.zine?this.L.height(this.L.height()-(this.config.BottomToolbar?65:0)):window.annotations?this.L.height(this.L.height()-(this.config.BottomToolbar?65:47)):this.L.height(this.L.height()-(this.config.BottomToolbar?65:25)),this.config.BottomToolbar&&this.N.height(this.N.height()-(eb.platform.lb?7:18))):this.L.height(this.L.height()-25):window.zine&&"Portrait"!=this.H||(this.config.BottomToolbar?this.L.height(this.L.height()-jQuery(this.K).height()+11):this.L.height(this.L.height()-23)),this.hn=!0);},Sl:function(c,d){if(window.zine&&this.I&&this.I.tc){var e=this.I.tc.createElement("labels");this.I.tc.childNodes[0].appendChild(e);try{for(var f=0;f<d.ll.length;f++){var h=d.ll[f],m=e,k=this.I.tc.createElement("node");k.setAttribute("pageNumber",f+1);k.setAttribute("title",escape(h));m.appendChild(k);}}catch(l){}this.labels=jQuery(e);}},Ul:function(c,d){var e=this;e.Ae=Math.round(100*d.progress)+"%";e.Ya&&e.Ya.find&&0<e.Ya.find(".flowpaper_notifystatus").length&&e.Ya.find(".flowpaper_notifystatus").html(e.Ae);if(e.um&&e.Ya&&e.Ya.find){var f=e.Ya.find(".flowpaper_titleloader_progress");if(f){var h=e.Ya.find(".flowpaper_titleloader_image");if(0<h.length){var m=h.css("width"),m=parseFloat(m.replace("px",""));requestAnim(function(){(isNaN(e.Ae)||parseFloat(e.Ae)<Math.round(100*d.progress))&&f.animate({left:m*d.progress+"px",width:m*(1-d.progress)+"px"},100);});}}}},Vl:function(c,d){this.qf=d.label;this.Ya.find(".flowpaper_notifylabel").html(d.label);},ad:function(c,d){var e=this;e.document.DisableOverflow||null!==e.pd||(e.pd=jQuery("<div style='position:absolute;left:50%;top:50%;'></div>"),e.N.append(e.pd),e.pd.spin({color:"#777"}),null!=e.Ri&&(window.clearTimeout(e.Ri),e.Ri=null),d.ap||(e.Ri=setTimeout(function(){e.pd&&(e.pd.remove(),e.pd=null);},1000)));},Qb:function(){this.pd&&(this.pd.remove(),this.pd=null);},show:function(){var c=this;jQuery(c.resources).bind("onPostinitialized",function(){setTimeout(function(){c.Hg();c.config.document.RTLMode&&c.renderer.S&&c.renderer.S.length&&(c.document.StartAtPage=c.renderer.S.length-c.document.StartAtPage+(0==c.renderer.S.length%2?1:0));c.document.DisableOverflow||null!=c.I?null!=c.I&&c.I.Rg&&c.toolbar.bindEvents(c.L):c.toolbar.bindEvents(c.L);c.I&&c.I.Rg&&null!=c.I&&!c.document.DisableOverflow&&c.I.bindEvents(c.L);c.I&&!c.I.Rg?c.dh=function(){c.toolbar.bindEvents(c.L);c.I.bindEvents(c.L);c.ai(c.document.StartAtPage);jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages());}:(c.ai(c.document.StartAtPage),jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages()));},50);jQuery(c.resources).unbind("onPostinitialized");});c.resources.fp();},dispose:function(){this.In=!0;this.L.unbind();this.L.find("*").unbind();this.N.find("*").unbind();this.N.find("*").remove();this.L.empty();this.N.empty();jQuery(this).unbind();0==jQuery(".flowpaper_viewer_container").length&&window.PDFJS&&delete window.PDFJS;this.plugin&&(jQuery(this.plugin).unbind(),this.plugin.dispose(),delete this.plugin,this.plugin=null);jQuery(this.renderer).unbind();this.renderer.dispose();delete this.renderer;delete this.config;jQuery(this.pages).unbind();this.pages.dispose();delete this.pages;delete window["wordPageList_"+this.P];window["wordPageList_"+this.P]=null;this.N.unbind("mousemove");this.N.unbind("mousedown");this.N.unbind("mouseup");jQuery(window).unbind("resize",this.Kl);delete this.Kl;jQuery(this.renderer).unbind("loadingProgress");jQuery(this.renderer).unbind("labelsLoaded");jQuery(this.renderer).unbind("loadingProgressStatusChanged");jQuery(this.renderer).unbind("UIBlockingRenderingOperation");jQuery(this.renderer).unbind("UIBlockingRenderingOperationCompleted");this.I?this.I.dispose():this.L.parent().remove();var c=this.N.parent(),d=this.N.attr("style");this.N.remove();delete this.N;delete this.L;this.renderer&&(delete this.renderer.Ba,delete this.renderer.S,delete this.renderer.Sa,delete this.renderer.Mh,delete this.renderer.ta);delete this.renderer;var e=jQuery(this.qq);e.attr("style",d);e.attr("class","flowpaper_viewer");c.append(e);this.plugin&&delete this.plugin;},Fh:function(){var c=this;eb.platform.touchonlydevice?(c.initialized=!0,(!c.I&&c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H||"Portrait"==c.H||"SinglePage"==c.H)&&c.fitwidth(),(c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H||c.I)&&c.fitheight(),c.pages.Og(),c.pages.kd()):(c.initialized=!0,c.sr||c.toolbar.kk(c.config.document.MinZoomSize,c.config.document.MaxZoomSize),c.document.DisableOverflow?c.fitwidth():c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H?c.fitheight():c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H?c.fitwidth():c.Zoom(c.config.document.Scale));c.document.StartAtPage&&1!=c.document.StartAtPage||c.H==c.Z()||c.L.trigger("onCurrentPageChanged",c.config&&c.config.document&&c.config.document.RTLMode?c.getTotalPages()-(c.pages.R+1)+1:c.pages.R+1);c.document.StartAtPage&&1!=c.document.StartAtPage&&c.pages.scrollTo(c.document.StartAtPage);c.I&&c.I.Fh();c.Ya&&c.Ya.fadeOut?c.Ya.fadeOut(300,function(){c.Ya&&(c.Ya.remove(),c.N.find(".flowpaper_loader").remove(),c.Lc&&(c.Lc.kill(),delete c.Lc),delete c.Ya,c.Lc=null,jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.bi(c.pages,c.L));}):(c.N.find(".flowpaper_loader").remove(),jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.bi(c.pages,c.L));c.L.trigger("onInitializationComplete");},Hg:function(){this.renderer.Ci=!1;if(this.pages){for(var c=0;c<this.document.numPages;c++){this.pages.pages[c]&&window.clearTimeout(this.pages.pages[c].pc);}}this.da=1;this.L.find("*").unbind();this.L.find("*").remove();this.L.empty();this.Ae=0;this.renderer.Rf=!1;jQuery(".flowpaper_glyphcanvas").css("z-index",-1);jQuery(this.Uj).remove();this.I&&this.I.Hg();},ai:function(c){this.pages=new W(this.L,this,this.P,c);this.pages.create(this.L);},previous:function(){var c=this;c.Cb&&c.Cb.active||(c.nj||c.H==c.Z()?c.H==c.Z()&&c.pages.previous():(c.nj=setTimeout(function(){window.clearTimeout(c.nj);c.nj=null;},700),c.pages.previous()));},Bl:function(){for(var c=jQuery.parseXML("<UIConfig></UIConfig>"),d=c.createElement("outline"),e=0;e<this.renderer.outline.length;e++){da(c,this.renderer.outline[e],d,this.renderer);}this.outline=jQuery(d);},expandOutline:function(){var c=this;c.Oa&&c.Sf();if(!c.ab&&c.outline&&(!c.outline||0!=c.outline.length)){c.ma=c.L.width();c.ya=c.L.height();var d=c.qf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"TOC","Table of Contents"):"Table of Contents",e=window.zine?jQuery(c.K).css("background-color"):"transparent",f=window.zine?"transparent":"#c8c8c8",h=c.H==c.Z()?"40px":jQuery(c.K).height()+2;c.Z();var m=c.H==c.Z()?30:40,k=c.H==c.Z()?0:41,l=c.I&&!c.I.Me?jQuery(c.K).offset().top+jQuery(c.K).outerHeight():0,n=c.H==c.Z()?c.N.height():parseFloat(jQuery(c.pages.J).css("height"))-10,p=c.H==c.Z()&&eb.platform.touchonlydevice;c.Lg=c.N.find(c.K).css("margin-left");"rgba(0, 0, 0, 0)"==e.toString()&&(e="#555");c.N.append(jQuery(String.format("<div class='flowpaper_toc' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:150;background:{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle;width:14px;height:auto;'><span style='margin-left:10px;vertical-align: middle;{10}'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_toc_close' /></div><hr size='1' color='#ffffff' /></div></div>"+(window.zine?"":"<div class='flowpaper_bottom_fade'></div></div>"),d,c.Zm,"20%","250px",c.$h,n,e,n-20,l,f,p?"font-size:1.4em;":"")));c.ab=c.N.find(".flowpaper_toc");jQuery(c.ab.children()[0]).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(c.ab.children()[0]).append("<div class='flowpaper_toc_content' style='display:block;position:relative;height:"+(jQuery(c.ab.children()[0]).height()-m)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'><ul class='flowpaper_accordionSkinClear'>"+na(c,c.outline.children()).html()+"</ul></div>");d=jQuery(".flowpaper_accordionSkinClear").children();0<d.children().length&&(d=jQuery(d.get(0)).children(),0<d.children().length&&jQuery(d.find("li").get(0)).addClass("cur"));window.zine?(jQuery(c.K).css("opacity",0.7),600<c.Pc()&&c.resize(c.L.width(),c.L.height()+k,!1,function(){})):"TwoPage"!=c.H&&c.H!=c.Z()&&c.resize(c.L.width(),c.N.height()+1,!1,function(){});jQuery(".flowpaper_accordionSkinClear").zo();jQuery(".flowpaper-tocitem").bind("mouseup",function(d){c.gotoPage(jQuery(this).data("pagenumber"));500>window.innerWidth&&c.Ti();d.preventDefault&&d.preventDefault();d.stopImmediatePropagation();d.returnValue=!1;});c.H==c.Z()?(k=c.N.width()-c.L.width(),c.L.animate({left:Math.abs(k)+"px"},0)):c.L.animate({left:c.ab.width()+"px"},0);k=0.5*c.ab.width();jQuery(c.K).width()+k>c.N.width()&&(k=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Lg)+k+"px"},200,function(){if(window.onresize){window.onresize();}});0==k&&c.ab.css({top:h,height:c.L.height()-40+"px"});c.H==c.Z()&&c.I.am();c.ab.fadeTo("fast",1);c.N.find(".flowpaper_toc_close").bind("mousedown",function(){c.Ti();});}},Ti:function(){this.ab.hide();this.N.find(".flowpaper_tocitem, .flowpaper_tocitem_separator").remove();this.ab.remove();this.ab=null;window.zine&&(jQuery(this.K).css("opacity",1),600<this.Pc()&&this.resize(this.ma,this.ya+33,!1));this.L.css({left:"0px"});jQuery(this.K).animate({"margin-left":parseFloat(this.Lg)+"px"},200);this.H==this.Z()&&this.I.Sf();},setCurrentCursor:function(c){"ArrowCursor"==c&&(this.rc=!1,addCSSRule(".flowpaper_pageword","cursor","default"),window.annotations||jQuery(".flowpaper_pageword_"+this.P).remove());"TextSelectorCursor"==c&&(this.rc=!0,this.Je="flowpaper_selected_default",addCSSRule(".flowpaper_pageword","cursor","text"),window.annotations||(this.pages.getPage(this.pages.R-1),this.pages.getPage(this.pages.R-2),jQuery(".flowpaper_pageword_"+this.P).remove(),this.pages.Fa()));this.I&&this.I.setCurrentCursor(c);this.pages.setCurrentCursor(c);jQuery(this.K).trigger("onCursorChanged",c);},highlight:function(c){var d=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){},success:function(c){jQuery(c).find("Body").attr("color");c=jQuery(c).find("Highlight");var f=0,h=-1,m=-1;jQuery(c).find("loc").each(function(){f=parseInt(jQuery(this).attr("pg"));h=parseInt(jQuery(this).attr("pos"));m=parseInt(jQuery(this).attr("len"));d.pages.getPage(f).Se(h,m,!1);});d.pages.Fa();}});},printPaper:function(){this.document.PrintFn&&this.document.PrintFn();},switchMode:function(c,d){var e=this;e.H==c||("TwoPage"==c||"BookView"==c)&&2>e.getTotalPages()||(d>e.getTotalPages()&&(d=e.getTotalPages()),e.Oa&&e.Sf(),jQuery(e.pages.J).Pn(function(){e.I&&e.I.switchMode(c,d);"Tile"==c&&(e.H="ThumbView");"Portrait"==c&&(e.H="SinglePage"==e.sb?"SinglePage":"Portrait");"SinglePage"==c&&(e.H="SinglePage");"TwoPage"==c&&(e.H="TwoPage");"BookView"==c&&(e.H="BookView");e.Hg();e.pages.qp();e.renderer.Ze=-1;e.renderer.Ba&&e.renderer.Ba.wp();"TwoPage"!=c&&"BookView"!=c&&(null!=d?e.pages.R=d-1:d=1);e.ai(d);jQuery(e.K).trigger("onViewModeChanged",c);setTimeout(function(){!eb.platform.touchdevice||eb.platform.touchdevice&&("SinglePage"==c||"Portrait"==c)?e.fitheight():"TwoPage"!=c&&"BookView"!=c&&c!=e.Z()&&e.fitwidth();"TwoPage"!=c&&"BookView"!=c&&e.Nc(d);},100);}));},fitwidth:function(){if("TwoPage"!=this.H&&"BookView"!=this.H&&"ThumbView"!=this.H){var c=jQuery(this.pages.J).width()-(this.document.DisableOverflow?0:15);this.Oa&&(c-=100);var d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.ma/this.pages.getPage(d).dimensions.ya;if(eb.platform.touchonlydevice){f=c/(this.pages.getPage(d).Aa*e)-(this.document.DisableOverflow?0:0.03),window.FitWidthScale=f,this.ib(f),this.pages.Kj();}else{var f=c/(this.pages.getPage(d).Aa*this.document.MaxZoomSize*e)-(this.document.DisableOverflow?0:0.012);if(90==this.pages.getPage(d).rotation||270==this.pages.getPage(d).rotation){f=this.ff();}window.FitWidthScale=f;jQuery(this.K).trigger("onScaleChanged",f/this.document.MaxZoomSize);if(this.document.DisableOverflow){for(var h=T(parseFloat(window.printHeight))-0,m=this.pages.getPage(d).Aa*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Aa*this.pages.getPage(d).ve()*this.document.MaxZoomSize*f,l=0;m>h;){f=c/(this.pages.getPage(d).Aa*this.document.MaxZoomSize*e)+l,m=this.pages.getPage(d).Aa*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Aa*this.pages.getPage(d).ve()*this.document.MaxZoomSize*f,l-=0.0001;}this.N.css("width",Math.floor(k)+"px");this.N.css("height",Math.floor(m)+"px");}f*this.document.MaxZoomSize>=this.document.MinZoomSize&&f<=this.document.MaxZoomSize&&("Portrait"==this.H?this.ib(this.document.MaxZoomSize*f,{sg:!0}):this.ib(this.document.MaxZoomSize*f));}}},getCurrentRenderingMode:function(){return this.renderer instanceof CanvasPageRenderer?"html5":"html";},ib:function(c,d){var e=this;if(e.initialized&&e.pages){e.H==e.Z()&&1==c&&(d=d||{},d.sg=!0);if(!d||d&&!d.sg){var f=100/(100*e.document.ZoomInterval);c=Math.round(c*f)/f;}e.H==e.Z()&&1>c&&(c=1);jQuery(e.K).trigger("onScaleChanged",c/e.document.MaxZoomSize);var f=jQuery(e.pages.J).prop("scrollHeight"),h=jQuery(e.pages.J).scrollTop(),f=0<h?h/f:0;null!=e.Ff&&(window.clearTimeout(e.Ff),e.Ff=null);e.pages.np()&&e.scale!=c&&(jQuery(".flowpaper_annotation_"+e.P).remove(),jQuery(".flowpaper_pageword_"+e.P).remove());e.Ff=setTimeout(function(){e.oc();e.pages&&e.pages.Fa();},500);if(0<c){c<e.config.document.MinZoomSize&&(c=this.config.document.MinZoomSize);c>e.config.document.MaxZoomSize&&(c=this.config.document.MaxZoomSize);e.pages.Qa(c,d);e.scale=c;!d||d&&!d.fd?e.pages.pages[0]&&e.pages.pages[0].Ve():e.pages.bh(d.Xb,d.sc);jQuery(e.K).trigger("onZoomFactorChanged",{Kf:c,F:e});if("undefined"!=window.FitWidthScale&&Math.round(100*window.FitWidthScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitWidth"),window.onFitModeChanged){window.onFitModeChanged("Fit Width");}}else{if("undefined"!=window.FitHeightScale&&Math.round(100*window.FitHeightScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitHeight"),window.onFitModeChanged){window.onFitModeChanged("Fit Height");}}else{if(jQuery(e.K).trigger("onFitModeChanged","FitNone"),window.onFitModeChanged){window.onFitModeChanged("Fit None");}}}e.H!=e.Z()&&(e.pages.kd(),e.pages.md(),e.pages.Kj(),h=jQuery(e.pages.J).prop("scrollHeight"),eb.browser.capabilities.Db&&(!d||d&&!d.fd?jQuery(e.pages.J).scrollTo({left:"50%",top:h*f+"px"},0,{axis:"xy"}):jQuery(e.pages.J).scrollTo({top:h*f+"px"},0,{axis:"y"})));}}},oc:function(){if(this.renderer){null!=this.Ff&&(window.clearTimeout(this.Ff),this.Ff=null);"CanvasPageRenderer"==this.renderer.rh()&&(jQuery(".flowpaper_pageword_"+this.P+":not(.flowpaper_selected_searchmatch)").remove(),window.annotations&&this.pages.Fa());this.pages.dg&&0<=this.pages.dg&&this.pages.pages[this.pages.dg].Wa&&this.renderer.Vb(this.pages.pages[this.pages.dg],!0);for(var c=0;c<this.document.numPages;c++){this.pages.Ra(c)&&c!=this.pages.dg&&this.pages.pages[c]&&(this.pages.pages[c].Wa?this.renderer.Vb(this.pages.pages[c],!0):this.pages.pages[c].oa=!1);}}},Zoom:function(c,d){!eb.platform.touchonlydevice||"TwoPage"!=this.H&&"BookView"!=this.H?(c>this.document.MaxZoomSize&&(c=this.document.MaxZoomSize),c=c/this.document.MaxZoomSize,jQuery(this.K).trigger("onScaleChanged",c),c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.ib(this.document.MaxZoomSize*c,d)):1<c?"TwoPage"==this.H||"BookView"==this.H?this.pages.xe():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitwidth():"TwoPage"==this.H||"BookView"==this.H?this.pages.sd():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitheight();},ZoomIn:function(){this.Zoom(this.scale+3*this.document.ZoomInterval);},ZoomOut:function(){if("Portrait"==this.H||"SinglePage"==this.H){null!=this.pages.jScrollPane?(this.pages.jScrollPane.data("jsp").scrollTo(0,0,!1),this.pages.jScrollPane.data("jsp").reinitialise(this.hd)):this.pages.M(this.pages.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}this.Zoom(this.scale-3*this.document.ZoomInterval);},sliderChange:function(c){c>this.document.MaxZoomSize||(c=c/this.document.MaxZoomSize,c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.ib(this.document.MaxZoomSize*c));},Lh:function(){var c=this;if(!eb.platform.mobilepreview&&!eb.platform.lb&&(c.ab&&c.Ti(),!c.Oa)){c.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove();var d=c.qf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"Search"):"Search",e=c.H==c.Z()?c.N.height()-0:parseFloat(jQuery(c.pages.J).css("height"))-10,f=c.H==c.Z()?jQuery(c.K).css("background-color"):"#c8c8c8",h=c.H==c.Z()?"40px":jQuery(c.K).height()+2,m=c.H==c.Z()?"color:#ededed":"color:#555555;",k=(c.Z(),40),l=c.H==c.Z()?0:41;"rgba(0, 0, 0, 0)"==f.toString()&&(f="#555");c.Lg=c.N.find(c.K).css("margin-left");c.H!=c.Z()||c.Oa?c.Oa||(c.N.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:13;overflow:hidden;'><div style='margin: 0px 0px 0px 0px;padding: 10px 7px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%' <div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><div class='flowpaper_bottom_fade'></div></div></div>",d,c.dk,"20%","250px",c.$h,parseFloat(jQuery(c.pages.J).css("height"))+10,f,c.N.height()-58))),c.Oa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Oa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+e+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),"TwoPage"!=c.H&&c.H!=c.Z()&&c.resize(c.L.width(),c.N.height()+1,!1,function(){}),c.L.animate({left:c.Oa.width()/2+"px"},0),c.document.FitWidthOnLoad?c.fitwidth():c.fitheight()):(jQuery(c.K).css("opacity",0.7),c.N.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:{8}px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:50;{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><hr size='1' color='#ffffff' /></div></div>",d,c.dk,"20%","250px",c.$h,e,f,e-20,0,c.I.backgroundImage?"":"background-color:"+c.I.backgroundColor))),c.Oa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Oa.children()[0]).css({"border-radius":"0 3px 3px 0px","-moz-border-radius":"3px"}),jQuery(c.Oa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+(jQuery(c.Oa.children()[0]).height()-k)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),c.resize(c.L.width(),c.L.height()+l,!1,function(){}),d=c.N.width()-c.L.width(),c.L.animate({left:Math.abs(d)+"px"},0));d=0.5*c.Oa.width();jQuery(c.K).width()+d>c.N.width()&&(d=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Lg)+d+"px"},200,function(){if(window.onresize){window.onresize();}});0==d&&c.Oa.css({top:h,height:parseFloat(jQuery(c.pages.J).css("height"))+10+"px"});c.H==c.Z()&&c.I.Lh();c.Oa.fadeTo("fast",1);var n=c.N.find(".flowpaper_searchabstracts_content");jQuery(c).bind("onSearchAbstractAdded",function(d,e){var f=e.me.Yn;100<f.length&&(f=f.substr(0,100)+"...");f=f.replace(new RegExp(c.$d,"g"),"<font style='color:#ffffff'>["+c.$d+"]</font>");f="<b>p."+c.toolbar.Cd(e.me.pageIndex+1,e.me.pageIndex+1,!0)+"</b> : "+f;n.append(jQuery(String.format("<div id='flowpaper_searchabstract_item_{1}' style='{2}' class='flowpaper_searchabstract_result'>{0}</div><hr size=1 color='#777777' style='margin-top:8px;' class='flowpaper_searchabstract_result_separator' />",f,e.me.id,m)));jQuery("#flowpaper_searchabstract_item_"+e.me.id).bind("mousedown",function(d){c.Va=e.me.pageIndex+1;c.Ge=e.me.tp;c.gc=-1;c.searchText(c.$d,!1);d.preventDefault&&d.preventDefault();d.returnValue=!1;});jQuery("#flowpaper_searchabstract_item_"+e.me.id).bind("mouseup",function(c){c.preventDefault&&c.preventDefault();c.returnValue=!1;});});c.N.find(".flowpaper_searchabstracts_close").bind("mousedown",function(){c.Sf();});}},Sf:function(){this.Oa&&(this.L.css({left:"0px"}),this.Oa.remove(),this.Oa=null,this.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),this.H==this.Z()?(jQuery(this.K).css("opacity",1),this.resize(this.N.width(),this.L.height(),!1)):"TwoPage"==this.H?(this.L.css({left:"0px",width:"100%"}),this.fitheight()):this.resize(this.N.width(),this.N.height()+1,!1),jQuery(this.K).animate({"margin-left":parseFloat(this.Lg)+"px"},200),this.H==this.Z()&&this.I.Sf());jQuery(this).unbind("onSearchAbstractAdded");},kl:function(c,d){jQuery(".flowpaper_searchabstract_blockspan").remove();var e=this.renderer.getNumPages();d||(d=0);for(var f=d;f<e;f++){this.cn(f,c);}this.H!=this.Z()&&this.N.find(".flowpaper_searchabstracts_content").append(jQuery("<div class='flowpaper_searchabstract_blockspan' style='display:block;clear:both;height:200px'></div>"));},cn:function(c,d){var e=this.renderer.ta;if(null!=e[c]){-1<e[c].toLowerCase().indexOf("actionuri")&&(e[c]=e[c].replace(/actionuri(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongotor")&&(e[c]=e[c].replace(/actiongotor(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongoto")&&(e[c]=e[c].replace(/actiongoto(.*?)\):/gi,""));for(var f=e[c].toLowerCase().indexOf(d),h=0;0<=f;){var m=0<f-50?f-50:0,k=f+75<e[c].length?f+75:e[c].length,l=this.Yc.length;this.Yc.xf[l]=[];this.Yc.xf[l].pageIndex=c;this.Yc.xf[l].tp=h;this.Yc.xf[l].id=this.P+"_"+c+"_"+h;this.Yc.xf[l].Yn=e[c].substr(m,k-m);f=e[c].toLowerCase().indexOf(d,f+1);jQuery(this).trigger("onSearchAbstractAdded",{me:this.Yc.xf[l]});h++;}}else{null==this.Ql&&this.zm(d,c);}},zm:function(c,d){var e=this;e.Ql=setTimeout(function(){null==e.renderer.ud?e.renderer.yc(d+1,!1,function(){e.Ql=null;e.kl(c,d);}):e.zm(c,d);},100);},searchText:function(c,d){var e=this;if(null!=c&&(null==c||0!=c.length)){if(void 0!==d||"Portrait"!=e.H&&"SinglePage"!=e.H&&"TwoPage"!=e.H&&e.H!=e.Z()||!e.document.EnableSearchAbstracts||eb.platform.mobilepreview||(d=!0),d&&e.H==e.Z()&&1<e.scale&&(e.renderer.mb&&e.renderer.Xc&&e.renderer.Xc(),e.Zoom(1)),jQuery(e.K).find(".flowpaper_txtSearch").val()!=c&&jQuery(e.K).find(".flowpaper_txtSearch").val(c),"ThumbView"==e.H){e.switchMode("Portrait"),setTimeout(function(){e.searchText(c);},1000);}else{var f=e.renderer.ta,h=e.renderer.getNumPages();e.Ih||(e.Ih=0);if(0==e.renderer.Ba.Sa.length&&10>e.Ih){window.clearTimeout(e.vp),e.vp=setTimeout(function(){e.searchText(c,d);},500),e.Ih++;}else{e.Ih=0;e.Ge||(e.Ge=0);e.Va||(e.Va=-1);null!=c&&0<c.length&&(c=c.toLowerCase());e.$d!=c&&(e.gc=-1,e.$d=c,e.Ge=0,e.Va=-1,e.Yc=[],e.Yc.xf=[]);-1==e.Va?(e.Va=parseInt(e.da),e.config.document.RTLMode&&(e.Va=parseInt(e.da)-h+1)):e.gc=e.gc+c.length;0==e.Yc.xf.length&&e.Yc.searchText!=c&&d&&(e.Yc.searchText!=c&&e.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),e.Yc.searchText=c,e.Lh(),e.kl(c));1>e.Va&&(e.Va=1);for(;e.Va-1<h;){var m=f[e.Va-1];if(e.renderer.ra&&null==m){jQuery(e.renderer).trigger("UIBlockingRenderingOperation",e.P);e.Qp=e.Va;e.renderer.yc(e.Va,!1,function(){m=f[e.Va-1];e.Qp=null;});return;}e.gc=m.indexOf(c,-1==e.gc?0:e.gc);if(0<=e.gc){e.da==e.Va||!(e.H==e.Z()&&e.da!=e.Va+1||"BookView"==e.H&&e.da!=e.Va+1||"TwoPage"==e.H&&e.da!=e.Va-1||"SinglePage"==e.H&&e.da!=e.Va)||"TwoPage"!=e.H&&"BookView"!=e.H&&"SinglePage"!=e.H&&e.H!=e.Z()?(e.Ge++,e.renderer.pb?this.pages.getPage(e.Va-1).load(function(){e.pages.getPage(e.Va-1).Jc(e.$d,!1,e.gc);}):("Portrait"==e.H&&this.pages.getPage(e.Va-1).load(function(){e.pages.getPage(e.Va-1).Jc(e.$d,!1,e.gc);}),"TwoPage"!=e.H&&"SinglePage"!=e.H&&e.H!=e.Z()||this.pages.getPage(e.Va-1).Jc(e.$d,!1,e.gc))):e.gotoPage(e.Va,function(){e.gc=e.gc-c.length;e.searchText(c);});break;}e.Va++;e.gc=-1;e.Ge=0;}-1==e.gc&&(e.gc=-1,e.Ge=0,e.Va=-1,e.Qb(),alert(null!=e.toolbar&&null!=e.toolbar.Ka?e.toolbar.la(e.toolbar.Ka,"Finishedsearching"):"No more search matches."),e.gotoPage(1));}}}},fitheight:function(){if(this.H!=this.Z()){try{if(eb.platform.touchdevice){if(c=this.ff()){window.FitHeightScale=c,this.ib(c,{sg:!0}),this.pages.Kj();}}else{var c=this.ff();window.FitHeightScale=c;jQuery(this.K).trigger("onScaleChanged",c/this.document.MaxZoomSize);c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&("Portrait"==this.H?this.ib(this.document.MaxZoomSize*c,{sg:!0}):this.ib(this.document.MaxZoomSize*c));}}catch(d){}}},oh:function(){var c=jQuery(this.pages.J).width()-15,d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.ma/this.pages.getPage(d).dimensions.ya;return eb.platform.touchdevice?c/(this.pages.getPage(d).Aa*e)-("SinglePage"==this.H?0.1:0.03):c/(this.pages.getPage(d).Aa*this.document.MaxZoomSize*e)-0.012;},ff:function(){this.da-1&&(this.da=1);if("Portrait"==this.H||"SinglePage"==this.H||"TwoPage"==this.H||"BookView"==this.H){var c=this.pages.getPage(this.da-1).dimensions.width/this.pages.getPage(this.da-1).dimensions.height;if(eb.platform.touchdevice){d=jQuery(this.L).height()-("TwoPage"==this.H||"BookView"==this.H?40:0),"SinglePage"==this.H&&(d-=25),d/=this.pages.getPage(this.da-1).Aa,e=this.pages.getPage(this.da-1),e=e.dimensions.ma/e.dimensions.ya*e.Aa*d,("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&(d=this.L.width()-0,d/=4*this.pages.getPage(this.da-1).Aa);}else{var d=jQuery(this.pages.J).height()-("TwoPage"==this.H||"BookView"==this.H?25:0);this.document.DisableOverflow&&(d=T(parseFloat(window.printHeight)));var d=d/(this.pages.getPage(this.da-1).Aa*this.document.MaxZoomSize),e=this.pages.getPage(this.da-1),e=e.dimensions.ma/e.dimensions.ya*e.Aa*this.document.MaxZoomSize*d;("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&!this.document.DisableOverflow&&(d=(jQuery(this.L).width()-("TwoPage"==this.H||"BookView"==this.H?40:0))/1.48,d=d/1.6/(this.pages.getPage(this.da-1).Aa*this.document.MaxZoomSize*c));}return window.FitHeightScale=d;}if(this.H==this.Z()){return d=1,window.FitHeightScale=d;}},next:function(){var c=this;c.Cb&&c.Cb.active||(c.gj||c.H==c.Z()?c.H==c.Z()&&c.pages.next():(c.gj=setTimeout(function(){window.clearTimeout(c.gj);c.gj=null;},700),c.pages.next()));},gotoPage:function(c,d){var e=this;e.Cb&&e.Cb.active||!e.pages||(e.config.document.RTLMode&&(c=e.renderer.S.length-c+1),"ThumbView"==e.H?eb.platform.ios?e.I?e.I.cq(c):e.switchMode("Portrait",c):e.switchMode("Portrait",c):("Portrait"==e.H&&e.pages.scrollTo(c),"SinglePage"==e.H&&setTimeout(function(){e.pages.zg(c,d);},300),"TwoPage"!=e.H&&"BookView"!=e.H||setTimeout(function(){e.pages.Ag(c,d);},300),e.I&&e.I.gotoPage(c,d)));},rotate:function(){var c=this.getCurrPage()-1;-1==c&&(c=0);this.pages.rotate(c);window.annotations&&(jQuery(".flowpaper_pageword_"+this.P).remove(),this.oc(),this.pages.Fa());},getCurrPage:function(){return null!=this.pages?this.H!=this.Z()?this.pages.R+1:this.pages.R:1;},zp:function(){this.version="3.4.0";},yp:function(){this.build="22-June-2020";},getTotalPages:function(){return this.pages.getTotalPages();},Nc:function(c){var d=this;d.H!=d.Z()&&(this.da=c,this.pages.R=this.da-1);c>d.getTotalPages()&&(c=c-1,this.pages.R=c);"TwoPage"!=this.H&&"BookView"!=this.H||this.pages.R!=this.pages.getTotalPages()-1||0==this.pages.R%2||(this.pages.R=this.pages.R+1);d.I&&(0==c&&(c++,this.da=c),d.I.Nc(c));d.Ac&&(jQuery(".flowpaper_mark_video_maximized").remove(),jQuery(".flowpaper_mark_video_maximized_closebutton").remove(),d.Ac=null);var e=jQuery(".flowpaper_mark_video_"+(c-1)+'[data-autoplay="true"]');if(e.length){for(var f=0;f<e.length;f++){-1<jQuery(e[f]).attr("id").indexOf("video")&&jQuery(e[f]).trigger("mouseup");}}0<jQuery(".flowpaper_mark_video").find("audio").length&&jQuery(".flowpaper_mark_video").find("audio").each(function(){try{var c=jQuery(this).closest(".flowpaper_page").attr("id"),e=parseInt(c.substr(14,c.lastIndexOf("_")-14));0==e&&0!=d.pages.R-1||!d.I.ka&&0<e&&e!=d.pages.R-1&&e!=d.pages.R-2||d.I.ka&&e!=d.pages.R-1?(jQuery(this)[0].pause(),jQuery(d.K).find(".flowpaper_bttnPlay").attr("src",jQuery(d.K).find(".flowpaper_bttnPlay").attr("src").replace("Pause","Play"))):jQuery(this)[0].paused&&0==jQuery(this)[0].currentTime&&"true"==jQuery(this).parents(".flowpaper_mark_video").attr("data-autoplay")&&(jQuery(this)[0].play(),jQuery(d.K).find(".flowpaper_bttnPlay").attr("src",jQuery(d.K).find(".flowpaper_bttnPlay").attr("src").replace("Play","Pause")));}catch(f){}});0<jQuery(".flowpaper_mark_video").find("iframe,video").length&&jQuery(".flowpaper_mark_video").find("iframe,video").each(function(){try{var c=jQuery(this).closest(".flowpaper_page").attr("id"),e=parseInt(c.substr(14,c.lastIndexOf("_")-14));if(0==e&&0!=d.pages.R-1||!d.I.ka&&0<e&&e!=d.pages.R-1&&e!=d.pages.R-2||d.I.ka&&e!=d.pages.R-1){jQuery(this).parent().remove();var f=d.pages.pages[e];f.Vf(f.dj?f.dj:f.scale,f.dc());}}catch(g){}});this.toolbar.kq(c);null!=d.plugin&&("TwoPage"==this.H?(d.plugin.fh(this.pages.R+1),d.plugin.fh(this.pages.R+2)):"BookView"==this.H?(1!=c&&d.plugin.fh(this.pages.R),d.plugin.fh(this.pages.R+1)):d.plugin.fh(this.da));},addLink:function(c,d,e,f,h,m,k,l,n){window[this.ze].addLink=this.addLink;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.U[c-1]&&(this.U[c-1]=[]);var p={type:"link"};p.href=d;p.Bo=e;p.Co=f;p.width=h;p.height=m;p.Ip=k;p.Jp=l;p.Oo=n;this.U[c-1][this.U[c-1].length]=p;},addVideo:function(c,d,e,f,h,m,k,l,n){window[this.ze].addVideo=this.addVideo;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.U[c-1]&&(this.U[c-1]=[]);var p={type:"video"};p.src=d;p.url=e;p.Qh=f;p.Rh=h;p.width=m;p.height=k;p.Mo=l;p.autoplay="true"==n+"";this.U[c-1][this.U[c-1].length]=p;},bn:function(c,d,e,f,h,m,k,l,n,p){window[this.ze].addaudio=this.jr;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.U[c-1]&&(this.U[c-1]=[]);var r={type:"audio"};r.src=d;r.url=e;r.ln=r.Qh=f;r.mn=r.Rh=h;r.width=m;r.height=k;r.autoplay="true"==l+"";r.ns="true"==n;r.no="true"==p;this.U[c-1][this.U[c-1].length]=r;},hk:function(c,d,e,f,h,m,k,l){window[this.ze].addIFrame=this.hk;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.U[c-1]&&(this.U[c-1]=[]);var n={type:"iframe"};n.src=d;n.url=e;n.Ji=f;n.Ki=h;n.width=m;n.height=k;n.Lo=l;this.U[c-1][this.U[c-1].length]=n;},addImage:function(c,d,e,f,h,m,k,l,n){c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.U[c-1]&&(this.U[c-1]=[]);var p={type:"image"};p.src=d;p.uh=e;p.vh=f;p.width=h;p.height=m;p.href=k;p.po=l;p.ep=n;this.U[c-1][this.U[c-1].length]=p;},openFullScreen:function(){var c=this;FLOWPAPER.getParameterByName("autoplay")&&(c.document.FullScreenAsMaxWindow=!0);if(c.Rb){c.N.prepend("<div id='modal-maximize' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:155px;padding-bottom:20px;'>It's not possible to maximize the viewer from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='bttnMaximizeDisabledOK'>OK</a></div></div>"),c.ds=jQuery("#modal-maximize").smodal({minHeight:155,appendTo:c.N}),jQuery("#bttnMaximizeDisabledOK").bind("click",function(c){jQuery.smodal.close();c.stopImmediatePropagation();jQuery("#modal-maximize").remove();return !1;});}else{var d=document.Hb||document.mozFullScreen||document.webkitIsFullScreen||window.Lm||window.kg||document.fullscreenElement||document.msFullscreenElement,e=c.N.get(0);if(d){return document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),window.kg&&window.close(),!1;}"0"!=c.N.css("top")&&(c.Vo=c.N.css("top"));"0"!=c.N.css("left")&&(c.Uo=c.N.css("left"));c.H==c.Z()&&1<c.scale&&(c.pages.sd(),c.V.show(),c.V.animate({opacity:1},100));c.ma=c.N.width();c.ya=c.N.height();c.PreviewMode&&c.pages.Cl&&(c.PreviewMode=!1,c.Xh=!0,c.I.kb.kp(c.pages,c.L),c.I.Lp());c.N.css({visibility:"hidden"});jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){setTimeout(function(){if(window.navigator.standalone||document.fullScreenElement&&null!=document.fullScreenElement||document.mozFullScreen||document.webkitIsFullScreen){eb.browser.safari?window.zine?c.resize(screen.width,screen.height):c.config.BottomToolbar?c.resize(screen.width,screen.height-jQuery(c.K).height()-70):c.resize(screen.width,screen.height-jQuery(c.K).height()):window.zine?c.resize(jQuery(document).width(),jQuery(document).height()):c.resize(window.innerWidth,window.innerHeight);}window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.oc(),c.pages.Fa());c.N.css({visibility:"visible"});},500);jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Wi=!1;c.N.css({top:c.Vo,left:c.Uo});c.Xh&&(c.PreviewMode=!0,c.I.dl(),c.I.sh(),setTimeout(function(){c.PreviewMode&&c.I.sh();},1000));c.H==c.Z()&&1<c.scale?c.pages.sd(function(){c.V.show();c.V.animate({opacity:1},100);c.resize(c.ma,c.ya-2);jQuery(c.K).trigger("onFullscreenChanged",!1);}):(c.resize(c.ma,c.ya-2),jQuery(c.K).trigger("onFullscreenChanged",!1));jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Xh&&(c.Xh=!1,c.I.kb.bi(c.pages,c.L));window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.oc(),c.pages.Fa());});window.clearTimeout(c.yj);c.yj=setTimeout(function(){!c.PreviewMode&&c.I&&c.I.gb&&c.I.Fj();},1000);});d=eb.platform.android&&!e.webkitRequestFullScreen||eb.platform.ios&&!e.webkitRequestFullScreen;c.document.FullScreenAsMaxWindow||!document.documentElement.requestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.mozRequestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.webkitRequestFullScreen||d?!c.document.FullScreenAsMaxWindow&&document.documentElement.msRequestFullscreen?(c.N.css({visibility:"hidden"}),c.Wi?(c.Wi=!1,window.document.msExitFullscreen()):(c.Wi=!0,e.msRequestFullscreen()),setTimeout(function(){c.N.css({visibility:"visible"});c.resize(window.outerWidth,window.outerHeight);window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.oc(),c.pages.Fa());},500)):(c.So(),setTimeout(function(){c.N.css({visibility:"visible"});},500)):(c.N.css({visibility:"hidden"}),e.webkitRequestFullScreen(eb.browser.safari&&10>eb.browser.Sb?0:{}),c.N.css({left:"0px",top:"0px"})):(c.N.css({visibility:"hidden"}),e.mozRequestFullScreen(),c.N.css({left:"0px",top:"0px"})):(c.N.css({visibility:"hidden"}),e.requestFullScreen(),c.N.css({left:"0px",top:"0px"}));jQuery(c.K).trigger("onFullscreenChanged",!0);}},So:function(){var c="",c="toolbar=no, location=no, scrollbars=no, width="+screen.width,c=c+(", height="+screen.height),c=c+", top=0, left=0, fullscreen=yes";nw=this.document.FullScreenAsMaxWindow?window.open(""):window.open("","windowname4",c);nw.params=c;c="<!doctype html><head>";c+='<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" />';c+='<link rel="stylesheet" type="text/css" href="'+this.config.cssDirectory+(-1==this.config.cssDirectory.indexOf("flowpaper.css")?"flowpaper.css":"")+'" />';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.extensions.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper_handlers.js">\x3c/script>';c+='<style type="text/css" media="screen">body{ margin:0; padding:0; overflow-x:hidden;overflow-y:hidden; }</style>';c+="</head>";c+="<body>";c+='<div id="documentViewer" class="flowpaper_viewer" style="position:absolute;left:0px;top:0px;width:100%;height:100%;"></div>';c+='<script type="text/javascript">';c+="function openViewer(){";c+='jQuery("#documentViewer").FlowPaperViewer(';c+="{ config : {";c+="";c+='SWFFile : "'+this.document.SWFFile+'",';c+='IMGFiles : "'+this.document.IMGFiles+'",';c+='JSONFile : "'+this.document.JSONFile+'",';c+='PDFFile : "'+this.document.PDFFile+'",';c+="";c+="Scale : "+this.scale+",";c+='ZoomTransition : "'+this.document.ZoomTransition+'",';c+="ZoomTime : "+this.document.ZoomTime+",";c+="ZoomInterval : "+this.document.ZoomInterval+",";c+="FitPageOnLoad : "+this.document.FitPageOnLoad+",";c+="FitWidthOnLoad : "+this.document.FitWidthOnLoad+",";c+="FullScreenAsMaxWindow : "+this.document.FullScreenAsMaxWindow+",";c+="ProgressiveLoading : "+this.document.ProgressiveLoading+",";c+="MinZoomSize : "+this.document.MinZoomSize+",";c+="MaxZoomSize : "+this.document.MaxZoomSize+",";c+="MixedMode : "+this.document.MixedMode+",";c+="SearchMatchAll : "+this.document.SearchMatchAll+",";c+='InitViewMode : "'+this.document.InitViewMode+'",';c+='RenderingOrder : "'+this.document.RenderingOrder+'",';c+="useCustomJSONFormat : "+this.document.useCustomJSONFormat+",";c+='JSONDataType : "'+this.document.JSONDataType+'",';null!=this.document.JSONPageDataFormat&&(c+="JSONPageDataFormat : {",c+='pageWidth : "'+this.document.JSONPageDataFormat.vf+'",',c+='pageHeight : "'+this.document.JSONPageDataFormat.tf+'",',c+='textCollection : "'+this.document.JSONPageDataFormat.Le+'",',c+='textFragment : "'+this.document.JSONPageDataFormat.ub+'",',c+='textFont : "'+this.document.JSONPageDataFormat.Jg+'",',c+='textLeft : "'+this.document.JSONPageDataFormat.qc+'",',c+='textTop : "'+this.document.JSONPageDataFormat.Fb+'",',c+='textWidth : "'+this.document.JSONPageDataFormat.Ed+'",',c+='textHeight : "'+this.document.JSONPageDataFormat.Dd+'"',c+="},");c+="ViewModeToolsVisible : "+this.document.ViewModeToolsVisible+",";c+="ZoomToolsVisible : "+this.document.ZoomToolsVisible+",";c+="NavToolsVisible : "+this.document.NavToolsVisible+",";c+="CursorToolsVisible : "+this.document.CursorToolsVisible+",";c+="SearchToolsVisible : "+this.document.SearchToolsVisible+",";window.zine||(c+='Toolbar : "'+escape(this.config.Toolbar)+'",');c+='BottomToolbar : "'+this.config.BottomToolbar+'",';c+='UIConfig : "'+this.document.UIConfig+'",';c+='jsDirectory : "'+this.config.jsDirectory+'",';c+='cssDirectory : "'+this.config.cssDirectory+'",';c+='localeDirectory : "'+this.config.localeDirectory+'",';c+='key : "'+this.config.key+'",';c+="";c+='localeChain: "'+this.document.localeChain+'"';c+="}});";c+="}";c+="$(document).ready(function(){ requestAnim(function(){  openViewer(); }) });";c+="document.fullscreen = true;";c+="$(document).keyup(function(e) {if (e.keyCode == 27){window.close();}});";c+="\x3c/script>";c+="</body>";c+="</html>";nw.document.write(c);nw.kg=!0;window.focus&&nw.focus();nw.document.close();return !1;},resize:function(c,d,e,f){var h=this;if(h.initialized){h.width=null;if(h.H==h.Z()){h.I.resize(c,d,e,f);}else{h.Oa&&(c=c-h.Oa.width()/2,h.L.animate({left:h.Oa.width()/2+"px"},0));var m=jQuery(h.K).height()+1+14,k=0<h.qg?h.qg+1:0;h.I&&(k=37);h.L.css({width:c,height:d-m-k});null!=e&&1!=e||this.N.css({width:c,height:d});h.pages.resize(c,d-m-k,f);jQuery(".flowpaper_interactiveobject_"+h.P+":not(.flowpaper_selected_searchmatch)").remove();jQuery(".flowpaper_pageword_"+h.P).remove();"TwoPage"!=h.H&&"BookView"!=h.H||h.fitheight();window.clearTimeout(h.Zo);h.Zo=setTimeout(function(){h.pages.Fa();},700);}h.I&&h.I.gb&&(window.clearTimeout(h.yj),h.yj=setTimeout(function(){h.PreviewMode||h.I.Fj();},2500));}}};f.loadFromUrl=f.loadFromUrl;return f;}();window.print_flowpaper_Document=function(f,c,d,e,g){FLOWPAPER.Yk.init();var h=Array(g+1),m=0;if("all"==d){for(var k=1;k<g+1;k++){h[k]=!0;}m=g;}else{if("current"==d){h[e]=!0,m=1;}else{if(-1==d.indexOf(",")&&-1<d.indexOf("-")){for(var l=parseInt(d.substr(0,d.toString().indexOf("-"))),n=parseInt(d.substr(d.toString().indexOf("-")+1));l<n+1;l++){h[l]=!0,m++;}}else{if(0<d.indexOf(",")){for(var p=d.split(","),k=0;k<p.length;k++){if(-1<p[k].indexOf("-")){for(l=parseInt(p[k].substr(0,p[k].toString().indexOf("-"))),n=parseInt(p[k].substr(p[k].toString().indexOf("-")+1));l<n+1;l++){h[l]=!0,m++;}}else{h[parseInt(p[k].toString())]=!0,m++;}}}else{isNaN(d)||(h[parseInt(d)]=!0,m=1);}}}}jQuery(document.body).append("<div id='documentViewer' style='position:absolute;width:100%;height:100%'></div>");h="1-"+g;window.Uh=0;"current"==d?h=e+"-"+e:"all"==d?h="1-"+g:h=d;jQuery("#documentViewer").FlowPaperViewer({config:{IMGFiles:c.pageImagePattern,JSONFile:c.jsonfile&&"undefined"!=c.jsonfile?c.jsonfile:null,PDFFile:c.PdfFile,JSONDataType:c.JSONDataType,Scale:1,RenderingOrder:"ImagePageRenderer"==f?"html,html":"html5,html",key:c.key,UserCollaboration:c.UserCollaboration,InitViewMode:"Portrait",DisableOverflow:!0,DisplayRange:h}});jQuery("#documentViewer").bind("onPageLoaded",function(){window.Uh==m-1&&setTimeout(function(){if(window.parent.onPrintRenderingCompleted){window.parent.onPrintRenderingCompleted();}window.focus&&window.focus();window.print();window.close&&window.close();},2000);window.Uh++;if(window.parent.onPrintRenderingProgress){window.parent.onPrintRenderingProgress(window.Uh);}});};window.renderPrintPage=function Z(c,d){"CanvasPageRenderer"==c.rh()&&(d<c.getNumPages()?c.ra?document.getElementById("ppage_"+d)?c.bj(d+1,function(){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}document.getElementById("ppage_"+d)?c.Ia[d].getPage(1).then(function(e){var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),m=e.getViewport(4),h={canvasContext:h,viewport:m,Nh:null,continueCallback:function(c){c();}};g.width=m.width;g.height=m.height;e.render(h).promise.then(function(){e.destroy();Z(c,d+1);},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1);}):Z(c,d+1):document.getElementById("ppage_"+d)?c.Ia.getPage(d+1).then(function(e){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),m=e.getViewport(4),h={canvasContext:h,viewport:m,Nh:null,continueCallback:function(c){c();}};g.width=m.width;g.height=m.height;e.render(h).promise.then(function(){Z(c,d+1);e.destroy();},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1):(parent.onPrintRenderingCompleted(),window.print()));};Ga&&self.addEventListener("message",function(f){f=f.data;if("undefined"!==f.cmd){switch(f.cmd){case"loadImageResource":var c=new XMLHttpRequest;c.open("GET","../../"+f.src);c.Hb=c.responseType="arraybuffer";c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){for(var d=new Uint8Array(this.response),e=d.length,f=Array(e);e--;){f[e]=String.fromCharCode(d[e]);}self.postMessage({status:"ImageResourceLoaded",blob:f.join("")});self.close();}};c.send(null);}}},!1);
\ No newline at end of file
index bc465e5dfc43e894f12470444029b31dc2208322..e04fac6b1bd902b05e5c19ea3e19e7af5f6120b0 100644 (file)
@@ -282,6 +282,16 @@ window.TrackFlowPaperEvent = function(trackingNumber,trackingDocument,eventType,
         return null;
     };
 
+    FLOWPAPER.getParameterByName = function(name, url) {
+        if (!url) url = window.location.href;
+        name = name.replace(/[\[\]]/g, '\\$&');
+        var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
+            results = regex.exec(url);
+        if (!results) return null;
+        if (!results[2]) return '';
+        return decodeURIComponent(results[2].replace(/\+/g, ' '));
+    }
+
     FLOWPAPER.translateUrlByFormat = function(url,format){
         if(url.indexOf("{") == 0 && format != "swf"){ // loading in split file mode
             url = url.substring(1,url.lastIndexOf(","));
@@ -508,16 +518,6 @@ window.TrackFlowPaperEvent = function(trackingNumber,trackingDocument,eventType,
         img.src = (IMGFiles.replace("{page}",1));
     };
 
-    FLOWPAPER.getParameterByName = function(name, url) {
-        if (!url) url = window.location.href;
-        name = name.replace(/[\[\]]/g, "\\$&");
-        var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"),
-            results = regex.exec(url);
-        if (!results) return null;
-        if (!results[2]) return '';
-        return decodeURIComponent(results[2].replace(/\+/g, " "));
-    };
-
     FLOWPAPER.appendUrlParameter = function(url,param){
         if(url){
             if(url.indexOf('?')>-1){
@@ -822,6 +822,12 @@ window.TrackFlowPaperEvent = function(trackingNumber,trackingDocument,eventType,
             platform.mobilepreview  = true;
         }
 
+        // remove the ?reload parameter from being shown if any
+        if(FLOWPAPER.getParameterByName && FLOWPAPER.getParameterByName('reload') && window.location.href && window.location.href.indexOf('online.flowpaper.com')>-1){
+            var currURL             = window.location.href;
+            window.history.pushState({}, document.title, currURL.replace('?reload='+FLOWPAPER.getParameterByName('reload'),''));
+        }
+
         // if a iOS device but not touch then user is clearly faking user agent. Assume mobile preview.
         if(!platform.touchdevice && platform.ios){
             conf.RenderingOrder = conf.RenderingOrder.replace(/flash/g, 'html');
index 4661c0ec804f7e2d8d8db0285bc4af782c5eea5e..9f049802ba383e929fc1642dc25226b8bd786567 100644 (file)
@@ -28,7 +28,9 @@ jQuery(function() {
      * @param String link
      */
     jQuery('#documentViewer').bind('onExternalLinkClicked',function(e,link){
-        if(!FLOWPAPER.LinkTarget || (FLOWPAPER.LinkTarget && FLOWPAPER.LinkTarget == 'New window')){
+        if(link.indexOf('mailto:')==0){
+            window.parent.location.href = link;
+        }else if(!FLOWPAPER.LinkTarget || (FLOWPAPER.LinkTarget && FLOWPAPER.LinkTarget == 'New window')){
             if (window.eb && window.eb.platform && window.eb.platform.touchonlydevice) {
                 if (window != window.top) { // in a iframe
                     window.parent.location.href = link;
@@ -68,6 +70,19 @@ jQuery(function() {
         TrackFlowPaperEvent(jQuery(this).data('TrackingNumber'),jQuery(this).data('TrackingDocument'),'Video Started',videoProps.VideoUrl,videoProps.PageNumber);
     });
 
+    
+    /**
+     * Handles the event of audios being played in the document.
+     *
+     * @example onAudioStarted("http://url/mp3")
+     *
+     * @param String audio url
+     */
+    jQuery('#documentViewer').bind('onAudioStarted',function(e,audioProps){
+        // record the Google Analytics event
+        TrackFlowPaperEvent(jQuery(this).data('TrackingNumber'),jQuery(this).data('TrackingDocument'),'Audio Started',audioProps.AudioUrl,audioProps.PageNumber);
+    });    
+
 
     /**
      * Handles the event of the original document being downloaded.
index 1adab37bdb3efe76467d83cc195d7d468405e4d8..57e0f3dab1aa2d3b5ede3cfb12fdd6d1d3c9656d 100644 (file)
@@ -28,7 +28,9 @@ jQuery(function() {
      * @param String link
      */
     jQuery('#documentViewer').bind('onExternalLinkClicked',function(e,link){
-        if(!FLOWPAPER.LinkTarget || (FLOWPAPER.LinkTarget && FLOWPAPER.LinkTarget == 'New window')){
+        if(link.indexOf('mailto:')==0){
+            window.parent.location.href = link;
+        }else if(!FLOWPAPER.LinkTarget || (FLOWPAPER.LinkTarget && FLOWPAPER.LinkTarget == 'New window')){
             if (window.eb && window.eb.platform && window.eb.platform.touchonlydevice) {
                 if (window != window.top) { // in a iframe
                     window.parent.location.href = link;
index 1405fd5275a43a2443b9ea82ae2640a04bfe4db8..8c88a77f796f02d772b4889d6f637fe5c374969d 100644 (file)
@@ -25,7 +25,7 @@ body[scroll])-Math.min(html[size],body[size])};function both(val){return typeof
  */
 (function(b){"function"===typeof define&&define.amd?define(["jquery"],b):b(jQuery)})(function(b){var g=[],m=b(document),j=navigator.userAgent.toLowerCase(),k=b(window),d=[],n=null,o=/msie/.test(j)&&!/opera/.test(j),p=/opera/.test(j),l,q,r;l=o&&/msie 6./.test(j)&&"object"!==typeof window.XMLHttpRequest;q=o&&/msie 7.0/.test(j);r="CSS1Compat"===document.compatMode;b.smodal=function(a,h){return b.smodal.impl.init(a,h)};b.smodal.close=function(){b.smodal.impl.close()};b.smodal.focus=function(a){b.smodal.impl.focus(a)};
 b.smodal.setContainerDimensions=function(){b.smodal.impl.setContainerDimensions()};b.smodal.setPosition=function(){b.smodal.impl.setPosition()};b.smodal.update=function(a,h){b.smodal.impl.update(a,h)};b.fn.smodal=function(a){return b.smodal.impl.init(this,a)};b.smodal.defaults={appendTo:"body",focus:!0,opacity:50,overlayId:"simplemodal-overlay",overlayCss:{},containerId:"simplemodal-container",containerCss:{},dataId:"simplemodal-data",dataCss:{},minHeight:null,minWidth:null,maxHeight:null,maxWidth:null,
-autoResize:!1,autoPosition:!0,zIndex:1E3,close:!0,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:!0,overlayClose:!1,fixed:!0,position:null,persist:!1,modal:!0,onOpen:null,onShow:null,onClose:null};b.smodal.impl={d:{},init:function(a,h){if(this.d.data)return!1;n=o&&!r;this.o=b.extend({},b.smodal.defaults,h);this.zIndex=this.o.zIndex;this.occb=!1;if("object"===typeof a){if(a=a instanceof b?a:b(a),this.d.placeholder=!1,0<a.parent().parent().size()&&(a.before(b("<span></span>").attr("id",
+autoResize:!1,autoPosition:!0,zIndex:1E3,close:!0,closeHTML:'<a class="modalCloseImg" title="Close"></a>',closeClass:"simplemodal-close",escClose:!0,overlayClose:!1,fixed:!0,position:null,persist:!1,modal:!0,onOpen:null,onShow:null,onClose:null};b.smodal.impl={d:{},init:function(a,h){if(this.d.data)return!1;n=o&&!r;this.o=b.extend({},b.smodal.defaults,h);this.zIndex=this.o.zIndex;this.occb=!1;if("object"===typeof a){if(a=a instanceof b?a:b(a),this.d.placeholder=!1,0<a.parent().parent().length&&(a.before(b("<span></span>").attr("id",
 "simplemodal-placeholder").css({display:"none"})),this.d.placeholder=!0,this.display=a.css("display"),!this.o.persist))this.d.orig=a.clone(!0)}else if("string"===typeof a||"number"===typeof a)a=b("<div></div>").html(a);else return alert("SimpleModal Error: Unsupported data type: "+typeof a),this;this.create(a);this.open();b.isFunction(this.o.onShow)&&this.o.onShow.apply(this,[this.d]);return this},create:function(a){this.getDimensions();if(this.o.modal&&l)this.d.iframe=b('<iframe src="javascript:false;"></iframe>').css(b.extend(this.o.iframeCss,
 {display:"none",opacity:0,position:"fixed",height:d[0],width:d[1],zIndex:this.o.zIndex,top:0,left:0})).appendTo(this.o.appendTo);this.d.overlay=b("<div></div>").attr("id",this.o.overlayId).addClass("simplemodal-overlay").css(b.extend(this.o.overlayCss,{display:"none",opacity:this.o.opacity/100,height:this.o.modal?g[0]:0,width:this.o.modal?g[1]:0,position:"fixed",left:0,top:0,zIndex:this.o.zIndex+1})).appendTo(this.o.appendTo);this.d.container=b("<div></div>").attr("id",this.o.containerId).addClass("simplemodal-container").css(b.extend({position:this.o.fixed?
 "fixed":"absolute"},this.o.containerCss,{display:"none",zIndex:this.o.zIndex+2})).append(this.o.close&&this.o.closeHTML?b(this.o.closeHTML).addClass(this.o.closeClass):"").appendTo(this.o.appendTo);this.d.wrap=b("<div></div>").attr("tabIndex",-1).addClass("simplemodal-wrap").css({height:"100%",outline:0,width:"100%"}).appendTo(this.d.container);this.d.data=a.attr("id",a.attr("id")||this.o.dataId).addClass("simplemodal-data").css(b.extend(this.o.dataCss,{display:"none"})).appendTo("body");this.setContainerDimensions();
@@ -78,9 +78,9 @@ a.pageMv=a.page;k._addMv.call(b,a.pageMv);c.pagePlace[a.next]=a.page;b.turn("upd
 2)&&k._updateShadow.call(b.turn))},_end:function(a,b){var c=g(this).data().f.opts,d=c.turn,e=d.data();a.stopPropagation();if(b||e.tpage){if(e.tpage==c.next||e.tpage==c.page)delete e.tpage,k._fitPage.call(d,e.tpage||c.next,!0)}else B&&k._removeMv.call(d,c.pageMv),d.turn("update")},_pressed:function(){var a=g(this).data().f;a.opts.turn.data();return a.time=(new Date).getTime()},_released:function(a,b){var c=g(this),d=c.data().f;a.stopPropagation();200>(new Date).getTime()-d.time||0>b.x||b.x>g(this).width()?
 (a.preventDefault(),d.opts.turn.data().tpage=d.opts.next,d.opts.turn.turn("update"),g(c).flip("turnPage")):jQuery(this).removeClass5("flowpaper_page_zoomIn").removeClass5("flowpaper_page_zoomOut").addClass5("flowpaper_page_dragPage")},_flip:function(){var a=g(this).data().f.opts;a.turn.trigger("turn",[a.next])},calculateZ:function(a){var b,c,d,e,f=this,h=this.data();b=this.turn("view");var g=b[0]||b[1],k={pageZ:{},partZ:{},pageV:{}},l=function(a){a=f.turn("view",a);a[0]&&(k.pageV[a[0]]=!0);a[1]&&
 (k.pageV[a[1]]=!0)};for(b=0;b<a.length;b++)c=a[b],d=h.pages[c].data().f.opts.next,e=h.pagePlace[c],l(c),l(d),c=h.pagePlace[d]==d?d:c,k.pageZ[c]=h.totalPages-Math.abs(g-c),k.partZ[e]=2*h.totalPages+Math.abs(g-c);return k},update:function(){var a,b=this.data();if(b.pageMv.length&&0!==b.pageMv[0]){var c=this.turn("calculateZ",b.pageMv);this.turn("view",b.tpage);for(a in b.pageWrap)q(a,b.pageWrap)&&(b.pageWrap[a].css({display:c.pageV[a]?"":"none","z-index":c.pageZ[a]||0}),b.pages[a]&&(b.pages[a].flip("z",
-c.partZ[a]||null),c.pageV[a]&&b.pages[a].flip("resize"),b.tpage&&b.pages[a].flip("disable",!0)))}else for(a in b.pageWrap)q(a,b.pageWrap)&&(c=k._setPageLoc.call(this,a),b.pages[a]&&b.pages[a].flip("disable",b.disabled||1!=c).flip("z",null))},_updateShadow:function(){var a=this.data(),b=this.turn("view"),c=this.width(),d=this.height(),e="single"==a.display?c:c/2;a.shadow||(a.shadow=g("<div />",{"class":"flowpaper_shadow",css:m(0,0,0).css}).appendTo(this));b[0]==a.totalPages&&0==a.totalPages%2?a.shadow.css({width:e,
-height:d,top:0,left:0}):0==b[0]?a.shadow.css({width:e,height:d,top:0,left:e}):a.shadow.css({width:c,height:d,top:0,left:0})},_setPageLoc:function(a){var b=this.data(),c=this.turn("view");if(a==c[0]||a==c[1])return b.pageWrap[a].css({"z-index":b.totalPages,display:""}),1;if("single"==b.display&&a==c[0]+1||"double"==b.display&&a==c[0]-2||a==c[1]+2)return b.pageWrap[a].css({"z-index":b.totalPages-1,display:""}),2;b.pageWrap[a].css({"z-index":0,display:"none"});return 0}},h={init:function(a){a.gradients&&
-(a.frontGradient=!0,a.backGradient=!0);this.data({f:{}});this.flip("options",a);h._addPageWrapper.call(this);return this},setData:function(a){var b=this.data();b.f=g.extend(b.f,a);return this},options:function(a){var b=this.data().f;return a?(h.setData.call(this,{opts:g.extend({},b.opts||W,a)}),this):b.opts},z:function(a){var b=this.data().f;b.opts["z-index"]=a;b.fwrapper.css({"z-index":a||parseInt(b.parent.css("z-index"),10)||0});return this},_cAllowed:function(){return N[this.data().f.opts.corners]||
+c.partZ[a]||null),c.pageV[a]&&b.pages[a].flip("resize"),b.tpage&&b.pages[a].flip("disable",!0)))}else for(a in b.pageWrap)q(a,b.pageWrap)&&(c=k._setPageLoc.call(this,a),b.pages[a]&&b.pages[a].flip("disable",b.disabled||1!=c).flip("z",null))},_updateShadow:function(){var a=this.data(),b=this.turn("view"),c=this.width(),d=this.height(),e="single"==a.display?c:c/2;a.shadow||(a.shadow=g("<div />",{"class":"flowpaper_shadow"+(a.opts.shadows?"":"_disabled"),css:m(0,0,0).css}).appendTo(this));b[0]==a.totalPages&&
+0==a.totalPages%2?a.shadow.css({width:e,height:d,top:0,left:0}):0==b[0]?a.shadow.css({width:e,height:d,top:0,left:e}):a.shadow.css({width:c,height:d,top:0,left:0})},_setPageLoc:function(a){var b=this.data(),c=this.turn("view");if(a==c[0]||a==c[1])return b.pageWrap[a].css({"z-index":b.totalPages,display:""}),1;if("single"==b.display&&a==c[0]+1||"double"==b.display&&a==c[0]-2||a==c[1]+2)return b.pageWrap[a].css({"z-index":b.totalPages-1,display:""}),2;b.pageWrap[a].css({"z-index":0,display:"none"});
+return 0}},h={init:function(a){a.gradients&&(a.frontGradient=!0,a.backGradient=!0);this.data({f:{}});this.flip("options",a);h._addPageWrapper.call(this);return this},setData:function(a){var b=this.data();b.f=g.extend(b.f,a);return this},options:function(a){var b=this.data().f;return a?(h.setData.call(this,{opts:g.extend({},b.opts||W,a)}),this):b.opts},z:function(a){var b=this.data().f;b.opts["z-index"]=a;b.fwrapper.css({"z-index":a||parseInt(b.parent.css("z-index"),10)||0});return this},_cAllowed:function(){return N[this.data().f.opts.corners]||
 this.data().f.opts.corners},_cornerActivated:function(a){if(void 0===a.originalEvent)return!1;a=B?a.originalEvent.touches:[a];var b=this.data().f,c=b.parent.offset(),d=this.width(),e=this.height();a={x:Math.max(0,a[0].pageX-c.left),y:Math.max(0,a[0].pageY-c.top)};b=b.opts.cornerSize;c=h._cAllowed.call(this);if(0>=a.x||0>=a.y||a.x>=d||a.y>=e)return!1;if(a.y<b)a.corner="t";else if(a.y>=e-b)a.corner="b";else return!1;if(a.x<=b)a.corner+="l";else if(a.x>=d-b)a.corner+="r";else return!1;(d=-1==g.inArray(a.corner,
 c)?!1:a)&&this.trigger("cornerActivated");return d},_c:function(a,b){var c=this.width(),d=this.height();b=b||0;return{tl:l(b,b),tr:l(c-b,b),bl:l(b,d-b),br:l(c-b,d-b)}[a]},_c2:function(a){var b=this.width(),c=this.height();return{tl:l(2*b,0),tr:l(-b,0),bl:l(2*b,c),br:l(-b,c)}[a]},_foldingPage:function(a){a=this.data().f.opts;if(a.folding)return a.folding;if(a.turn){var b=a.turn.data();return"single"==b.display?b.pageObjs[a.next]?b.pageObjs[0]:null:b.pageObjs[a.next]}},_backGradient:function(){var a=
 this.data().f,b=a.opts.turn;(b=a.opts.backGradient&&(!b||"single"==b.data().display||2!=a.opts.page&&a.opts.page!=b.data().totalPages-1))&&!a.bshadow&&(a.bshadow=g("<div/>",m(0,0,1)).css({position:"",width:this.width(),height:this.height()}).appendTo(a.parent));return b},resize:function(a){var b=this.data().f,c=this.width(),d=this.height(),e=Math.round(Math.sqrt(Math.pow(c,2)+Math.pow(d,2)));a&&(b.wrapper.css({width:e,height:e}),b.fwrapper.css({width:e,height:e}).children(":first-child").css({width:c,
index 006e953102ded2db8e217e4507de3baa8bcc976d..a1c07fd803b5fc9c54f44e31123ae4fa11e134b0 100644 (file)
@@ -1,5 +1,2 @@
-/*! jQuery v1.9.1 | (c) 2005, 2012 jQuery Foundation, Inc. | jquery.org/license
-//@ sourceMappingURL=jquery.min.map
-*/(function(e,t){var n,r,i=typeof t,o=e.document,a=e.location,s=e.jQuery,u=e.$,l={},c=[],p="1.9.1",f=c.concat,d=c.push,h=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=p.trim,b=function(e,t){return new b.fn.init(e,t,r)},x=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^[\],:{}\s]*$/,E=/(?:^|:|,)(?:\s*\[)+/g,S=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,A=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,j=/^-ms-/,D=/-([\da-z])/gi,L=function(e,t){return t.toUpperCase()},H=function(e){(o.addEventListener||"load"===e.type||"complete"===o.readyState)&&(q(),b.ready())},q=function(){o.addEventListener?(o.removeEventListener("DOMContentLoaded",H,!1),e.removeEventListener("load",H,!1)):(o.detachEvent("onreadystatechange",H),e.detachEvent("onload",H))};b.fn=b.prototype={jquery:p,constructor:b,init:function(e,n,r){var i,a;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof b?n[0]:n,b.merge(this,b.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:o,!0)),C.test(i[1])&&b.isPlainObject(n))for(i in n)b.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(a=o.getElementById(i[2]),a&&a.parentNode){if(a.id!==i[2])return r.find(e);this.length=1,this[0]=a}return this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):b.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),b.makeArray(e,this))},selector:"",length:0,size:function(){return this.length},toArray:function(){return h.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=b.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return b.each(this,e,t)},ready:function(e){return b.ready.promise().done(e),this},slice:function(){return this.pushStack(h.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(b.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:d,sort:[].sort,splice:[].splice},b.fn.init.prototype=b.fn,b.extend=b.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},u=1,l=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},u=2),"object"==typeof s||b.isFunction(s)||(s={}),l===u&&(s=this,--u);l>u;u++)if(null!=(o=arguments[u]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(b.isPlainObject(r)||(n=b.isArray(r)))?(n?(n=!1,a=e&&b.isArray(e)?e:[]):a=e&&b.isPlainObject(e)?e:{},s[i]=b.extend(c,a,r)):r!==t&&(s[i]=r));return s},b.extend({noConflict:function(t){return e.$===b&&(e.$=u),t&&e.jQuery===b&&(e.jQuery=s),b},isReady:!1,readyWait:1,holdReady:function(e){e?b.readyWait++:b.ready(!0)},ready:function(e){if(e===!0?!--b.readyWait:!b.isReady){if(!o.body)return setTimeout(b.ready);b.isReady=!0,e!==!0&&--b.readyWait>0||(n.resolveWith(o,[b]),b.fn.trigger&&b(o).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===b.type(e)},isArray:Array.isArray||function(e){return"array"===b.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if(!e||"object"!==b.type(e)||e.nodeType||b.isWindow(e))return!1;try{if(e.constructor&&!y.call(e,"constructor")&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||y.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=b.buildFragment([e],t,i),i&&b(i).remove(),b.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=b.trim(n),n&&k.test(n.replace(S,"@").replace(A,"]").replace(E,"")))?Function("return "+n)():(b.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||b.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&b.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(j,"ms-").replace(D,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:v&&!v.call("\ufeff\u00a0")?function(e){return null==e?"":v.call(e)}:function(e){return null==e?"":(e+"").replace(T,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?b.merge(n,"string"==typeof e?[e]:e):d.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(g)return g.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return f.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),b.isFunction(e)?(r=h.call(arguments,2),i=function(){return e.apply(n||this,r.concat(h.call(arguments)))},i.guid=e.guid=e.guid||b.guid++,i):t},access:function(e,n,r,i,o,a,s){var u=0,l=e.length,c=null==r;if("object"===b.type(r)){o=!0;for(u in r)b.access(e,n,u,r[u],!0,a,s)}else if(i!==t&&(o=!0,b.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(b(e),n)})),n))for(;l>u;u++)n(e[u],r,s?i:i.call(e[u],u,n(e[u],r)));return o?e:c?n.call(e):l?n(e[0],r):a},now:function(){return(new Date).getTime()}}),b.ready.promise=function(t){if(!n)if(n=b.Deferred(),"complete"===o.readyState)setTimeout(b.ready);else if(o.addEventListener)o.addEventListener("DOMContentLoaded",H,!1),e.addEventListener("load",H,!1);else{o.attachEvent("onreadystatechange",H),e.attachEvent("onload",H);var r=!1;try{r=null==e.frameElement&&o.documentElement}catch(i){}r&&r.doScroll&&function a(){if(!b.isReady){try{r.doScroll("left")}catch(e){return setTimeout(a,50)}q(),b.ready()}}()}return n.promise(t)},b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=b.type(e);return b.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=b(o);var _={};function F(e){var t=_[e]={};return b.each(e.match(w)||[],function(e,n){t[n]=!0}),t}b.Callbacks=function(e){e="string"==typeof e?_[e]||F(e):b.extend({},e);var n,r,i,o,a,s,u=[],l=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=u.length,n=!0;u&&o>a;a++)if(u[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,u&&(l?l.length&&c(l.shift()):r?u=[]:p.disable())},p={add:function(){if(u){var t=u.length;(function i(t){b.each(t,function(t,n){var r=b.type(n);"function"===r?e.unique&&p.has(n)||u.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=u.length:r&&(s=t,c(r))}return this},remove:function(){return u&&b.each(arguments,function(e,t){var r;while((r=b.inArray(t,u,r))>-1)u.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?b.inArray(e,u)>-1:!(!u||!u.length)},empty:function(){return u=[],this},disable:function(){return u=l=r=t,this},disabled:function(){return!u},lock:function(){return l=t,r||p.disable(),this},locked:function(){return!l},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!u||i&&!l||(n?l.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},b.extend({Deferred:function(e){var t=[["resolve","done",b.Callbacks("once memory"),"resolved"],["reject","fail",b.Callbacks("once memory"),"rejected"],["notify","progress",b.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return b.Deferred(function(n){b.each(t,function(t,o){var a=o[0],s=b.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&b.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?b.extend(e,r):r}},i={};return r.pipe=r.then,b.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=h.call(arguments),r=n.length,i=1!==r||e&&b.isFunction(e.promise)?r:0,o=1===i?e:b.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?h.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,u,l;if(r>1)for(s=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&b.isFunction(n[t].promise)?n[t].promise().done(a(t,l,n)).fail(o.reject).progress(a(t,u,s)):--i;return i||o.resolveWith(l,n),o.promise()}}),b.support=function(){var t,n,r,a,s,u,l,c,p,f,d=o.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*"),r=d.getElementsByTagName("a")[0],!n||!r||!n.length)return{};s=o.createElement("select"),l=s.appendChild(o.createElement("option")),a=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==d.className,leadingWhitespace:3===d.firstChild.nodeType,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!a.value,optSelected:l.selected,enctype:!!o.createElement("form").enctype,html5Clone:"<:nav></:nav>"!==o.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===o.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},a.checked=!0,t.noCloneChecked=a.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!l.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}a=o.createElement("input"),a.setAttribute("value",""),t.input=""===a.getAttribute("value"),a.value="t",a.setAttribute("type","radio"),t.radioValue="t"===a.value,a.setAttribute("checked","t"),a.setAttribute("name","t"),u=o.createDocumentFragment(),u.appendChild(a),t.appendChecked=a.checked,t.checkClone=u.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;return d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip,b(function(){var n,r,a,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",u=o.getElementsByTagName("body")[0];u&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",u.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",a=d.getElementsByTagName("td"),a[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===a[0].offsetHeight,a[0].style.display="",a[1].style.display="none",t.reliableHiddenOffsets=p&&0===a[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===d.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==u.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(o.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(u.style.zoom=1)),u.removeChild(n),n=d=a=r=null)}),n=s=u=l=r=a=null,t}();var O=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,B=/([A-Z])/g;function P(e,n,r,i){if(b.acceptData(e)){var o,a,s=b.expando,u="string"==typeof n,l=e.nodeType,p=l?b.cache:e,f=l?e[s]:e[s]&&s;if(f&&p[f]&&(i||p[f].data)||!u||r!==t)return f||(l?e[s]=f=c.pop()||b.guid++:f=s),p[f]||(p[f]={},l||(p[f].toJSON=b.noop)),("object"==typeof n||"function"==typeof n)&&(i?p[f]=b.extend(p[f],n):p[f].data=b.extend(p[f].data,n)),o=p[f],i||(o.data||(o.data={}),o=o.data),r!==t&&(o[b.camelCase(n)]=r),u?(a=o[n],null==a&&(a=o[b.camelCase(n)])):a=o,a}}function R(e,t,n){if(b.acceptData(e)){var r,i,o,a=e.nodeType,s=a?b.cache:e,u=a?e[b.expando]:b.expando;if(s[u]){if(t&&(o=n?s[u]:s[u].data)){b.isArray(t)?t=t.concat(b.map(t,b.camelCase)):t in o?t=[t]:(t=b.camelCase(t),t=t in o?[t]:t.split(" "));for(r=0,i=t.length;i>r;r++)delete o[t[r]];if(!(n?$:b.isEmptyObject)(o))return}(n||(delete s[u].data,$(s[u])))&&(a?b.cleanData([e],!0):b.support.deleteExpando||s!=s.window?delete s[u]:s[u]=null)}}}b.extend({cache:{},expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?b.cache[e[b.expando]]:e[b.expando],!!e&&!$(e)},data:function(e,t,n){return P(e,t,n)},removeData:function(e,t){return R(e,t)},_data:function(e,t,n){return P(e,t,n,!0)},_removeData:function(e,t){return R(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&b.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),b.fn.extend({data:function(e,n){var r,i,o=this[0],a=0,s=null;if(e===t){if(this.length&&(s=b.data(o),1===o.nodeType&&!b._data(o,"parsedAttrs"))){for(r=o.attributes;r.length>a;a++)i=r[a].name,i.indexOf("data-")||(i=b.camelCase(i.slice(5)),W(o,i,s[i]));b._data(o,"parsedAttrs",!0)}return s}return"object"==typeof e?this.each(function(){b.data(this,e)}):b.access(this,function(n){return n===t?o?W(o,e,b.data(o,e)):null:(this.each(function(){b.data(this,e,n)}),t)},null,n,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){b.removeData(this,e)})}});function W(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(B,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:O.test(r)?b.parseJSON(r):r}catch(o){}b.data(e,n,r)}else r=t}return r}function $(e){var t;for(t in e)if(("data"!==t||!b.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}b.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=b._data(e,n),r&&(!i||b.isArray(r)?i=b._data(e,n,b.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=b.queue(e,t),r=n.length,i=n.shift(),o=b._queueHooks(e,t),a=function(){b.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return b._data(e,n)||b._data(e,n,{empty:b.Callbacks("once memory").add(function(){b._removeData(e,t+"queue"),b._removeData(e,n)})})}}),b.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?b.queue(this[0],e):n===t?this:this.each(function(){var t=b.queue(this,e,n);b._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&b.dequeue(this,e)})},dequeue:function(e){return this.each(function(){b.dequeue(this,e)})},delay:function(e,t){return e=b.fx?b.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=b.Deferred(),a=this,s=this.length,u=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=b._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(u));return u(),o.promise(n)}});var I,z,X=/[\t\r\n]/g,U=/\r/g,V=/^(?:input|select|textarea|button|object)$/i,Y=/^(?:a|area)$/i,J=/^(?:checked|selected|autofocus|autoplay|async|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped)$/i,G=/^(?:checked|selected)$/i,Q=b.support.getSetAttribute,K=b.support.input;b.fn.extend({attr:function(e,t){return b.access(this,b.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){b.removeAttr(this,e)})},prop:function(e,t){return b.access(this,b.prop,e,t,arguments.length>1)},removeProp:function(e){return e=b.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=b.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(b.isFunction(e))return this.each(function(t){b(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(X," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?b.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return b.isFunction(e)?this.each(function(n){b(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=b(this),u=t,l=e.match(w)||[];while(o=l[a++])u=r?u:!s.hasClass(o),s[u?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&b._data(this,"__className__",this.className),this.className=this.className||e===!1?"":b._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(X," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=b.isFunction(e),this.each(function(n){var o,a=b(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":b.isArray(o)&&(o=b.map(o,function(e){return null==e?"":e+""})),r=b.valHooks[this.type]||b.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=b.valHooks[o.type]||b.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(U,""):null==n?"":n)}}}),b.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;for(;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(b.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&b.nodeName(n.parentNode,"optgroup"))){if(t=b(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=b.makeArray(t);return b(e).find("option").each(function(){this.selected=b.inArray(b(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var o,a,s,u=e.nodeType;if(e&&3!==u&&8!==u&&2!==u)return typeof e.getAttribute===i?b.prop(e,n,r):(a=1!==u||!b.isXMLDoc(e),a&&(n=n.toLowerCase(),o=b.attrHooks[n]||(J.test(n)?z:I)),r===t?o&&a&&"get"in o&&null!==(s=o.get(e,n))?s:(typeof e.getAttribute!==i&&(s=e.getAttribute(n)),null==s?t:s):null!==r?o&&a&&"set"in o&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r):(b.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=b.propFix[n]||n,J.test(n)?!Q&&G.test(n)?e[b.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:b.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!b.support.radioValue&&"radio"===t&&b.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!b.isXMLDoc(e),a&&(n=b.propFix[n]||n,o=b.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):V.test(e.nodeName)||Y.test(e.nodeName)&&e.href?0:t}}}}),z={get:function(e,n){var r=b.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?K&&Q?null!=i:G.test(n)?e[b.camelCase("default-"+n)]:!!i:e.getAttributeNode(n);return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?b.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&b.propFix[n]||n,n):e[b.camelCase("default-"+n)]=e[n]=!0,n}},K&&Q||(b.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return b.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,n,r){return b.nodeName(e,"input")?(e.defaultValue=n,t):I&&I.set(e,n,r)}}),Q||(I=b.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},b.attrHooks.contenteditable={get:I.get,set:function(e,t,n){I.set(e,""===t?!1:t,n)}},b.each(["width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}})})),b.support.hrefNormalized||(b.each(["href","src","width","height"],function(e,n){b.attrHooks[n]=b.extend(b.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),b.each(["href","src"],function(e,t){b.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),b.support.style||(b.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),b.support.optSelected||(b.propHooks.selected=b.extend(b.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),b.support.enctype||(b.propFix.enctype="encoding"),b.support.checkOn||b.each(["radio","checkbox"],function(){b.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),b.each(["radio","checkbox"],function(){b.valHooks[this]=b.extend(b.valHooks[this],{set:function(e,n){return b.isArray(n)?e.checked=b.inArray(b(e).val(),n)>=0:t}})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}b.event={global:{},add:function(e,n,r,o,a){var s,u,l,c,p,f,d,h,g,m,y,v=b._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=b.guid++),(u=v.events)||(u=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof b===i||e&&b.event.triggered===e.type?t:b.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(w)||[""],l=n.length;while(l--)s=rt.exec(n[l])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),p=b.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=b.event.special[g]||{},d=b.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&b.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=u[g])||(h=u[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),b.event.global[g]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,p,f,d,h,g,m=b.hasData(e)&&b._data(e);if(m&&(c=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(s=rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=b.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));u&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||b.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)b.event.remove(e,d+t[l],n,r,!0);b.isEmptyObject(c)&&(delete m.handle,b._removeData(e,"events"))}},trigger:function(n,r,i,a){var s,u,l,c,p,f,d,h=[i||o],g=y.call(n,"type")?n.type:n,m=y.call(n,"namespace")?n.namespace.split("."):[];if(l=f=i=i||o,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+b.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),u=0>g.indexOf(":")&&"on"+g,n=n[b.expando]?n:new b.Event(g,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:b.makeArray(r,[n]),p=b.event.special[g]||{},a||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!a&&!p.noBubble&&!b.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(l=l.parentNode);l;l=l.parentNode)h.push(l),f=l;f===(i.ownerDocument||o)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((l=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(b._data(l,"events")||{})[n.type]&&b._data(l,"handle"),s&&s.apply(l,r),s=u&&l[u],s&&b.acceptData(l)&&s.apply&&s.apply(l,r)===!1&&n.preventDefault();if(n.type=g,!(a||n.isDefaultPrevented()||p._default&&p._default.apply(i.ownerDocument,r)!==!1||"click"===g&&b.nodeName(i,"a")||!b.acceptData(i)||!u||!i[g]||b.isWindow(i))){f=i[u],f&&(i[u]=null),b.event.triggered=g;try{i[g]()}catch(v){}b.event.triggered=t,f&&(i[u]=f)}return n.result}},dispatch:function(e){e=b.event.fix(e);var n,r,i,o,a,s=[],u=h.call(arguments),l=(b._data(this,"events")||{})[e.type]||[],c=b.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=b.event.handlers.call(this,e,l),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((b.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?b(r,this).index(l)>=0:b.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return n.length>u&&s.push({elem:this,handlers:n.slice(u)}),s},fix:function(e){if(e[b.expando])return e;var t,n,r,i=e.type,a=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new b.Event(a),t=r.length;while(t--)n=r[t],e[n]=a[n];return e.target||(e.target=a.srcElement||o),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,a):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,a,s=n.button,u=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||o,a=i.documentElement,r=i.body,e.pageX=n.clientX+(a&&a.scrollLeft||r&&r.scrollLeft||0)-(a&&a.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(a&&a.scrollTop||r&&r.scrollTop||0)-(a&&a.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&u&&(e.relatedTarget=u===e.target?n.toElement:u),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},click:{trigger:function(){return b.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t}},focus:{trigger:function(){if(this!==o.activeElement&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===o.activeElement&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=b.extend(new b.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?b.event.trigger(i,null,t):b.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},b.removeEvent=o.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},b.Event=function(e,n){return this instanceof b.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&b.extend(this,n),this.timeStamp=e&&e.timeStamp||b.now(),this[b.expando]=!0,t):new b.Event(e,n)},b.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},b.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){b.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;
-return(!i||i!==r&&!b.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),b.support.submitBubbles||(b.event.special.submit={setup:function(){return b.nodeName(this,"form")?!1:(b.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=b.nodeName(n,"input")||b.nodeName(n,"button")?n.form:t;r&&!b._data(r,"submitBubbles")&&(b.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),b._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&b.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return b.nodeName(this,"form")?!1:(b.event.remove(this,"._submit"),t)}}),b.support.changeBubbles||(b.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(b.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),b.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),b.event.simulate("change",this,e,!0)})),!1):(b.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!b._data(t,"changeBubbles")&&(b.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||b.event.simulate("change",this.parentNode,e,!0)}),b._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return b.event.remove(this,"._change"),!Z.test(this.nodeName)}}),b.support.focusinBubbles||b.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){b.event.simulate(t,e.target,b.event.fix(e),!0)};b.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),b.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return b().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=b.guid++)),this.each(function(){b.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,b(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){b.event.remove(this,e,r,n)})},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},trigger:function(e,t){return this.each(function(){b.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?b.event.trigger(e,n,r,!0):t}}),function(e,t){var n,r,i,o,a,s,u,l,c,p,f,d,h,g,m,y,v,x="sizzle"+-new Date,w=e.document,T={},N=0,C=0,k=it(),E=it(),S=it(),A=typeof t,j=1<<31,D=[],L=D.pop,H=D.push,q=D.slice,M=D.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},_="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=F.replace("w","w#"),B="([*^$|!~]?=)",P="\\["+_+"*("+F+")"+_+"*(?:"+B+_+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+O+")|)|)"+_+"*\\]",R=":("+F+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+P.replace(3,8)+")*)|.*)\\)|)",W=RegExp("^"+_+"+|((?:^|[^\\\\])(?:\\\\.)*)"+_+"+$","g"),$=RegExp("^"+_+"*,"+_+"*"),I=RegExp("^"+_+"*([\\x20\\t\\r\\n\\f>+~])"+_+"*"),z=RegExp(R),X=RegExp("^"+O+"$"),U={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+P),PSEUDO:RegExp("^"+R),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+_+"*(even|odd|(([+-]|)(\\d*)n|)"+_+"*(?:([+-]|)"+_+"*(\\d+)|))"+_+"*\\)|)","i"),needsContext:RegExp("^"+_+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+_+"*((?:-\\d)?\\d*)"+_+"*\\)|)(?=[^-]|$)","i")},V=/[\x20\t\r\n\f]*[+~]/,Y=/^[^{]+\{\s*\[native code/,J=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,G=/^(?:input|select|textarea|button)$/i,Q=/^h\d$/i,K=/'|\\/g,Z=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,et=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,tt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{q.call(w.documentElement.childNodes,0)[0].nodeType}catch(nt){q=function(e){var t,n=[];while(t=this[e++])n.push(t);return n}}function rt(e){return Y.test(e+"")}function it(){var e,t=[];return e=function(n,r){return t.push(n+=" ")>i.cacheLength&&delete e[t.shift()],e[n]=r}}function ot(e){return e[x]=!0,e}function at(e){var t=p.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function st(e,t,n,r){var i,o,a,s,u,l,f,g,m,v;if((t?t.ownerDocument||t:w)!==p&&c(t),t=t||p,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!d&&!r){if(i=J.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&y(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return H.apply(n,q.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&T.getByClassName&&t.getElementsByClassName)return H.apply(n,q.call(t.getElementsByClassName(a),0)),n}if(T.qsa&&!h.test(e)){if(f=!0,g=x,m=t,v=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){l=ft(e),(f=t.getAttribute("id"))?g=f.replace(K,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=l.length;while(u--)l[u]=g+dt(l[u]);m=V.test(e)&&t.parentNode||t,v=l.join(",")}if(v)try{return H.apply(n,q.call(m.querySelectorAll(v),0)),n}catch(b){}finally{f||t.removeAttribute("id")}}}return wt(e.replace(W,"$1"),t,n,r)}a=st.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},c=st.setDocument=function(e){var n=e?e.ownerDocument||e:w;return n!==p&&9===n.nodeType&&n.documentElement?(p=n,f=n.documentElement,d=a(n),T.tagNameNoComments=at(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),T.attributes=at(function(e){e.innerHTML="<select></select>";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),T.getByClassName=at(function(e){return e.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),T.getByName=at(function(e){e.id=x+0,e.innerHTML="<a name='"+x+"'></a><div name='"+x+"'></div>",f.insertBefore(e,f.firstChild);var t=n.getElementsByName&&n.getElementsByName(x).length===2+n.getElementsByName(x+0).length;return T.getIdNotName=!n.getElementById(x),f.removeChild(e),t}),i.attrHandle=at(function(e){return e.innerHTML="<a href='#'></a>",e.firstChild&&typeof e.firstChild.getAttribute!==A&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},T.getIdNotName?(i.find.ID=function(e,t){if(typeof t.getElementById!==A&&!d){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){return e.getAttribute("id")===t}}):(i.find.ID=function(e,n){if(typeof n.getElementById!==A&&!d){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==A&&r.getAttributeNode("id").value===e?[r]:t:[]}},i.filter.ID=function(e){var t=e.replace(et,tt);return function(e){var n=typeof e.getAttributeNode!==A&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=T.tagNameNoComments?function(e,n){return typeof n.getElementsByTagName!==A?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.NAME=T.getByName&&function(e,n){return typeof n.getElementsByName!==A?n.getElementsByName(name):t},i.find.CLASS=T.getByClassName&&function(e,n){return typeof n.getElementsByClassName===A||d?t:n.getElementsByClassName(e)},g=[],h=[":focus"],(T.qsa=rt(n.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+_+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){e.innerHTML="<input type='hidden' i=''/>",e.querySelectorAll("[i^='']").length&&h.push("[*^$]="+_+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(T.matchesSelector=rt(m=f.matchesSelector||f.mozMatchesSelector||f.webkitMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){T.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",R)}),h=RegExp(h.join("|")),g=RegExp(g.join("|")),y=rt(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},v=f.compareDocumentPosition?function(e,t){var r;return e===t?(u=!0,0):(r=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&r||e.parentNode&&11===e.parentNode.nodeType?e===n||y(w,e)?-1:t===n||y(w,t)?1:0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return u=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:0;if(o===a)return ut(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?ut(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},u=!1,[0,0].sort(v),T.detectDuplicates=u,p):p},st.matches=function(e,t){return st(e,null,null,t)},st.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Z,"='$1']"),!(!T.matchesSelector||d||g&&g.test(t)||h.test(t)))try{var n=m.call(e,t);if(n||T.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return st(t,p,null,[e]).length>0},st.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},st.attr=function(e,t){var n;return(e.ownerDocument||e)!==p&&c(e),d||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):d||T.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},st.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},st.uniqueSort=function(e){var t,n=[],r=1,i=0;if(u=!T.detectDuplicates,e.sort(v),u){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));while(i--)e.splice(n[i],1)}return e};function ut(e,t){var n=t&&e,r=n&&(~t.sourceIndex||j)-(~e.sourceIndex||j);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function lt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ct(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function pt(e){return ot(function(t){return t=+t,ot(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}o=st.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=st.selectors={cacheLength:50,createPseudo:ot,match:U,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(et,tt),e[3]=(e[4]||e[5]||"").replace(et,tt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||st.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&st.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return U.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&z.test(n)&&(t=ft(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(et,tt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[e+" "];return t||(t=RegExp("(^|"+_+")"+e+"("+_+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==A&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=st.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[x]||(m[x]={}),l=c[e]||[],d=l[0]===N&&l[1],f=l[0]===N&&l[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[N,d,f];break}}else if(v&&(l=(t[x]||(t[x]={}))[e])&&l[0]===N)f=l[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[x]||(p[x]={}))[e]=[N,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||st.error("unsupported pseudo: "+e);return r[x]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?ot(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=M.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ot(function(e){var t=[],n=[],r=s(e.replace(W,"$1"));return r[x]?ot(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ot(function(e){return function(t){return st(e,t).length>0}}),contains:ot(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:ot(function(e){return X.test(e||"")||st.error("unsupported lang: "+e),e=e.replace(et,tt).toLowerCase(),function(t){var n;do if(n=d?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return Q.test(e.nodeName)},input:function(e){return G.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:pt(function(){return[0]}),last:pt(function(e,t){return[t-1]}),eq:pt(function(e,t,n){return[0>n?n+t:n]}),even:pt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:pt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:pt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:pt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[n]=lt(n);for(n in{submit:!0,reset:!0})i.pseudos[n]=ct(n);function ft(e,t){var n,r,o,a,s,u,l,c=E[e+" "];if(c)return t?0:c.slice(0);s=e,u=[],l=i.preFilter;while(s){(!n||(r=$.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(o=[])),n=!1,(r=I.exec(s))&&(n=r.shift(),o.push({value:n,type:r[0].replace(W," ")}),s=s.slice(n.length));for(a in i.filter)!(r=U[a].exec(s))||l[a]&&!(r=l[a](r))||(n=r.shift(),o.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?st.error(e):E(e,u).slice(0)}function dt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function ht(e,t,n){var i=t.dir,o=n&&"parentNode"===i,a=C++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,s){var u,l,c,p=N+" "+a;if(s){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[x]||(t[x]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,s)||r,l[1]===!0)return!0}}function gt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function mt(e,t,n,r,i){var o,a=[],s=0,u=e.length,l=null!=t;for(;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function yt(e,t,n,r,i,o){return r&&!r[x]&&(r=yt(r)),i&&!i[x]&&(i=yt(i,o)),ot(function(o,a,s,u){var l,c,p,f=[],d=[],h=a.length,g=o||xt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:mt(g,f,e,s,u),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,u),r){l=mt(y,d),r(l,[],s,u),c=l.length;while(c--)(p=l[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?M.call(o,p):f[c])>-1&&(o[l]=!(a[l]=p))}}else y=mt(y===a?y.splice(h,y.length):y),i?i(null,a,y,u):H.apply(a,y)})}function vt(e){var t,n,r,o=e.length,a=i.relative[e[0].type],s=a||i.relative[" "],u=a?1:0,c=ht(function(e){return e===t},s,!0),p=ht(function(e){return M.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==l)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>u;u++)if(n=i.relative[e[u].type])f=[ht(gt(f),n)];else{if(n=i.filter[e[u].type].apply(null,e[u].matches),n[x]){for(r=++u;o>r;r++)if(i.relative[e[r].type])break;return yt(u>1&&gt(f),u>1&&dt(e.slice(0,u-1)).replace(W,"$1"),n,r>u&&vt(e.slice(u,r)),o>r&&vt(e=e.slice(r)),o>r&&dt(e))}f.push(n)}return gt(f)}function bt(e,t){var n=0,o=t.length>0,a=e.length>0,s=function(s,u,c,f,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,T=l,C=s||a&&i.find.TAG("*",d&&u.parentNode||u),k=N+=null==T?1:Math.random()||.1;for(w&&(l=u!==p&&u,r=n);null!=(h=C[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,u,c)){f.push(h);break}w&&(N=k,r=++n)}o&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,o&&b!==v){g=0;while(m=t[g++])m(x,y,u,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=L.call(f));y=mt(y)}H.apply(f,y),w&&!s&&y.length>0&&v+t.length>1&&st.uniqueSort(f)}return w&&(N=k,l=T),x};return o?ot(s):s}s=st.compile=function(e,t){var n,r=[],i=[],o=S[e+" "];if(!o){t||(t=ft(e)),n=t.length;while(n--)o=vt(t[n]),o[x]?r.push(o):i.push(o);o=S(e,bt(i,r))}return o};function xt(e,t,n){var r=0,i=t.length;for(;i>r;r++)st(e,t[r],n);return n}function wt(e,t,n,r){var o,a,u,l,c,p=ft(e);if(!r&&1===p.length){if(a=p[0]=p[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&!d&&i.relative[a[1].type]){if(t=i.find.ID(u.matches[0].replace(et,tt),t)[0],!t)return n;e=e.slice(a.shift().value.length)}o=U.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],i.relative[l=u.type])break;if((c=i.find[l])&&(r=c(u.matches[0].replace(et,tt),V.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=r.length&&dt(a),!e)return H.apply(n,q.call(r,0)),n;break}}}return s(e,p)(r,t,d,n,V.test(e)),n}i.pseudos.nth=i.pseudos.eq;function Tt(){}i.filters=Tt.prototype=i.pseudos,i.setFilters=new Tt,c(),st.attr=b.attr,b.find=st,b.expr=st.selectors,b.expr[":"]=b.expr.pseudos,b.unique=st.uniqueSort,b.text=st.getText,b.isXMLDoc=st.isXML,b.contains=st.contains}(e);var at=/Until$/,st=/^(?:parents|prev(?:Until|All))/,ut=/^.[^:#\[\.,]*$/,lt=b.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};b.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return r=this,this.pushStack(b(e).filter(function(){for(t=0;i>t;t++)if(b.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)b.find(e,this[t],n);return n=this.pushStack(i>1?b.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=b(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(b.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e,!1))},filter:function(e){return this.pushStack(ft(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?lt.test(e)?b(e,this.context).index(this[0])>=0:b.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],a=lt.test(e)||"string"!=typeof e?b(e,t||this.context):0;for(;i>r;r++){n=this[r];while(n&&n.ownerDocument&&n!==t&&11!==n.nodeType){if(a?a.index(n)>-1:b.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}}return this.pushStack(o.length>1?b.unique(o):o)},index:function(e){return e?"string"==typeof e?b.inArray(this[0],b(e)):b.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?b(e,t):b.makeArray(e&&e.nodeType?[e]:e),r=b.merge(this.get(),n);return this.pushStack(b.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),b.fn.andSelf=b.fn.addBack;function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}b.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return b.dir(e,"parentNode")},parentsUntil:function(e,t,n){return b.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return b.dir(e,"nextSibling")},prevAll:function(e){return b.dir(e,"previousSibling")},nextUntil:function(e,t,n){return b.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return b.dir(e,"previousSibling",n)},siblings:function(e){return b.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return b.sibling(e.firstChild)},contents:function(e){return b.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:b.merge([],e.childNodes)}},function(e,t){b.fn[e]=function(n,r){var i=b.map(this,t,n);return at.test(e)||(r=n),r&&"string"==typeof r&&(i=b.filter(r,i)),i=this.length>1&&!ct[e]?b.unique(i):i,this.length>1&&st.test(e)&&(i=i.reverse()),this.pushStack(i)}}),b.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?b.find.matchesSelector(t[0],e)?[t[0]]:[]:b.find.matches(e,t)},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!b(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(t=t||0,b.isFunction(t))return b.grep(e,function(e,r){var i=!!t.call(e,r,e);return i===n});if(t.nodeType)return b.grep(e,function(e){return e===t===n});if("string"==typeof t){var r=b.grep(e,function(e){return 1===e.nodeType});if(ut.test(t))return b.filter(t,r,!n);t=b.filter(t,r)}return b.grep(e,function(e){return b.inArray(e,t)>=0===n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Nt=/^(?:checkbox|radio)$/i,Ct=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:b.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(o),Dt=jt.appendChild(o.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,b.fn.extend({text:function(e){return b.access(this,function(e){return e===t?b.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(b.isFunction(e))return this.each(function(t){b(this).wrapAll(e.call(this,t))});if(this[0]){var t=b(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return b.isFunction(e)?this.each(function(t){b(this).wrapInner(e.call(this,t))}):this.each(function(){var t=b(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=b.isFunction(e);return this.each(function(n){b(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){b.nodeName(this,"body")||b(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=0;for(;null!=(n=this[r]);r++)(!e||b.filter(e,[n]).length>0)&&(t||1!==n.nodeType||b.cleanData(Ot(n)),n.parentNode&&(t&&b.contains(n.ownerDocument,n)&&Mt(Ot(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&b.cleanData(Ot(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&b.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return b.clone(this,e,t)})},html:function(e){return b.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!b.support.htmlSerialize&&mt.test(e)||!b.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(b.cleanData(Ot(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=b.isFunction(e);return t||"string"==typeof e||(e=b(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(b(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=f.apply([],e);var i,o,a,s,u,l,c=0,p=this.length,d=this,h=p-1,g=e[0],m=b.isFunction(g);if(m||!(1>=p||"string"!=typeof g||b.support.checkClone)&&Ct.test(g))return this.each(function(i){var o=d.eq(i);m&&(e[0]=g.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(p&&(l=b.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&b.nodeName(i,"tr"),s=b.map(Ot(l,"script"),Ht),a=s.length;p>c;c++)o=l,c!==h&&(o=b.clone(o,!0,!0),a&&b.merge(s,Ot(o,"script"))),r.call(n&&b.nodeName(this[c],"table")?Lt(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,b.map(s,qt),c=0;a>c;c++)o=s[c],kt.test(o.type||"")&&!b._data(o,"globalEval")&&b.contains(u,o)&&(o.src?b.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):b.globalEval((o.text||o.textContent||o.innerHTML||"").replace(St,"")));l=i=null}return this}});function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function Ht(e){var t=e.getAttributeNode("type");return e.type=(t&&t.specified)+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function Mt(e,t){var n,r=0;for(;null!=(n=e[r]);r++)b._data(n,"globalEval",!t||b._data(t[r],"globalEval"))}function _t(e,t){if(1===t.nodeType&&b.hasData(e)){var n,r,i,o=b._data(e),a=b._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)b.event.add(t,n,s[n][r])}a.data&&(a.data=b.extend({},a.data))}}function Ft(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!b.support.noCloneEvent&&t[b.expando]){i=b._data(t);for(r in i.events)b.removeEvent(t,r,i.handle);t.removeAttribute(b.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),b.support.html5Clone&&e.innerHTML&&!b.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Nt.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}b.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){b.fn[e]=function(e){var n,r=0,i=[],o=b(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),b(o[r])[t](n),d.apply(i,n.get());return this.pushStack(i)}});function Ot(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||b.nodeName(o,n)?s.push(o):b.merge(s,Ot(o,n));return n===t||n&&b.nodeName(e,n)?b.merge([e],s):s}function Bt(e){Nt.test(e.type)&&(e.defaultChecked=e.checked)}b.extend({clone:function(e,t,n){var r,i,o,a,s,u=b.contains(e.ownerDocument,e);if(b.support.html5Clone||b.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(b.support.noCloneEvent&&b.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||b.isXMLDoc(e)))for(r=Ot(o),s=Ot(e),a=0;null!=(i=s[a]);++a)r[a]&&Ft(i,r[a]);if(t)if(n)for(s=s||Ot(e),r=r||Ot(o),a=0;null!=(i=s[a]);a++)_t(i,r[a]);else _t(e,o);return r=Ot(o,"script"),r.length>0&&Mt(r,!u&&Ot(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,u,l,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===b.type(o))b.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),u=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[u]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!b.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!b.support.tbody){o="table"!==u||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)b.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l)
-}b.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),b.support.appendChecked||b.grep(Ot(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===b.inArray(o,r))&&(a=b.contains(o.ownerDocument,o),s=Ot(f.appendChild(o),"script"),a&&Mt(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,u=b.expando,l=b.cache,p=b.support.deleteExpando,f=b.event.special;for(;null!=(n=e[s]);s++)if((t||b.acceptData(n))&&(o=n[u],a=o&&l[o])){if(a.events)for(r in a.events)f[r]?b.event.remove(n,r):b.removeEvent(n,r,a.handle);l[o]&&(delete l[o],p?delete n[u]:typeof n.removeAttribute!==i?n.removeAttribute(u):n[u]=null,c.push(o))}}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+x+")(.*)$","i"),Yt=RegExp("^("+x+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+x+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===b.css(e,"display")||!b.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=b._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=b._data(r,"olddisplay",un(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&b._data(r,"olddisplay",i?n:b.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}b.fn.extend({css:function(e,n){return b.access(this,function(e,n,r){var i,o,a={},s=0;if(b.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=b.css(e,n[s],!1,o);return a}return r!==t?b.style(e,n,r):b.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?b(this).show():b(this).hide()})}}),b.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":b.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=b.camelCase(n),l=e.style;if(n=b.cssProps[u]||(b.cssProps[u]=tn(l,u)),s=b.cssHooks[n]||b.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(b.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||b.cssNumber[u]||(r+="px"),b.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=b.camelCase(n);return n=b.cssProps[u]||(b.cssProps[u]=tn(e.style,u)),s=b.cssHooks[n]||b.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||b.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||b.contains(e.ownerDocument,e)||(u=b.style(e,n)),Yt.test(u)&&Ut.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):o.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),Yt.test(u)&&!zt.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=b.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=b.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=b.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=b.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=b.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(b.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function un(e){var t=o,n=Gt[e];return n||(n=ln(e,t),"none"!==n&&n||(Pt=(Pt||b("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=ln(e,t),Pt.detach()),Gt[e]=n),n}function ln(e,t){var n=b(t.createElement(e)).appendTo(t.body),r=b.css(n[0],"display");return n.remove(),r}b.each(["height","width"],function(e,n){b.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(b.css(e,"display"))?b.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,b.support.boxSizing&&"border-box"===b.css(e,"boxSizing",!1,i),i):0)}}}),b.support.opacity||(b.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=b.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===b.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),b(function(){b.support.reliableMarginRight||(b.cssHooks.marginRight={get:function(e,n){return n?b.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!b.support.pixelPosition&&b.fn.position&&b.each(["top","left"],function(e,n){b.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?b(e).position()[n]+"px":r):t}}})}),b.expr&&b.expr.filters&&(b.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!b.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||b.css(e,"display"))},b.expr.filters.visible=function(e){return!b.expr.filters.hidden(e)}),b.each({margin:"",padding:"",border:"Width"},function(e,t){b.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(b.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;b.fn.extend({serialize:function(){return b.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=b.prop(this,"elements");return e?b.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!b(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Nt.test(e))}).map(function(e,t){var n=b(this).val();return null==n?null:b.isArray(n)?b.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),b.param=function(e,n){var r,i=[],o=function(e,t){t=b.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=b.ajaxSettings&&b.ajaxSettings.traditional),b.isArray(e)||e.jquery&&!b.isPlainObject(e))b.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(b.isArray(t))b.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==b.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}b.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){b.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),b.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var mn,yn,vn=b.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Nn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Cn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=b.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=a.href}catch(Ln){yn=o.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[];if(b.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(u){var l;return o[u]=!0,b.each(e[u]||[],function(e,u){var c=u(n,r,i);return"string"!=typeof c||a||o[c]?a?!(l=c):t:(n.dataTypes.unshift(c),s(c),!1)}),l}return s(n.dataTypes[0])||!o["*"]&&s("*")}function Mn(e,n){var r,i,o=b.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&b.extend(!0,e,r),e}b.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),b.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&b.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?b("<div>").append(b.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},b.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){b.fn[t]=function(e){return this.on(t,e)}}),b.each(["get","post"],function(e,n){b[n]=function(e,r,i,o){return b.isFunction(r)&&(o=o||i,i=r,r=t),b.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),b.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Nn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":b.parseJSON,"text xml":b.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Mn(Mn(e,b.ajaxSettings),t):Mn(b.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,u,l,c,p=b.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?b(f):b.event,h=b.Deferred(),g=b.Callbacks("once memory"),m=p.statusCode||{},y={},v={},x=0,T="canceled",N={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)m[t]=[m[t],e[t]];else N.always(e[N.status]);return this},abort:function(e){var t=e||T;return l&&l.abort(t),k(0,t),this}};if(h.promise(N).complete=g.add,N.success=N.done,N.error=N.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=b.trim(p.dataType||"*").toLowerCase().match(w)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?80:443))==(mn[3]||("http:"===mn[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=b.param(p.data,p.traditional)),qn(An,p,n,N),2===x)return N;u=p.global,u&&0===b.active++&&b.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Cn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(b.lastModified[o]&&N.setRequestHeader("If-Modified-Since",b.lastModified[o]),b.etag[o]&&N.setRequestHeader("If-None-Match",b.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&N.setRequestHeader("Content-Type",p.contentType),N.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)N.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,N,p)===!1||2===x))return N.abort();T="abort";for(i in{success:1,error:1,complete:1})N[i](p[i]);if(l=qn(jn,p,n,N)){N.readyState=1,u&&d.trigger("ajaxSend",[N,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){N.abort("timeout")},p.timeout));try{x=1,l.send(y,k)}catch(C){if(!(2>x))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,C=n;2!==x&&(x=2,s&&clearTimeout(s),l=t,a=i||"",N.readyState=e>0?4:0,r&&(w=_n(p,N,r)),e>=200&&300>e||304===e?(p.ifModified&&(T=N.getResponseHeader("Last-Modified"),T&&(b.lastModified[o]=T),T=N.getResponseHeader("etag"),T&&(b.etag[o]=T)),204===e?(c=!0,C="nocontent"):304===e?(c=!0,C="notmodified"):(c=Fn(p,w),C=c.state,y=c.data,v=c.error,c=!v)):(v=C,(e||!C)&&(C="error",0>e&&(e=0))),N.status=e,N.statusText=(n||C)+"",c?h.resolveWith(f,[y,C,N]):h.rejectWith(f,[N,C,v]),N.statusCode(m),m=t,u&&d.trigger(c?"ajaxSuccess":"ajaxError",[N,p,c?y:v]),g.fireWith(f,[N,C]),u&&(d.trigger("ajaxComplete",[N,p]),--b.active||b.event.trigger("ajaxStop")))}return N},getScript:function(e,n){return b.get(e,t,n,"script")},getJSON:function(e,t,n){return b.get(e,t,n,"json")}});function _n(e,n,r){var i,o,a,s,u=e.contents,l=e.dataTypes,c=e.responseFields;for(s in c)s in r&&(n[c[s]]=r[s]);while("*"===l[0])l.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in u)if(u[s]&&u[s].test(o)){l.unshift(s);break}if(l[0]in r)a=l[0];else{for(s in r){if(!l[0]||e.converters[s+" "+l[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==l[0]&&l.unshift(a),r[a]):t}function Fn(e,t){var n,r,i,o,a={},s=0,u=e.dataTypes.slice(),l=u[0];if(e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u[1])for(i in e.converters)a[i.toLowerCase()]=e.converters[i];for(;r=u[++s];)if("*"!==r){if("*"!==l&&l!==r){if(i=a[l+" "+r]||a["* "+r],!i)for(n in a)if(o=n.split(" "),o[1]===r&&(i=a[l+" "+o[0]]||a["* "+o[0]])){i===!0?i=a[n]:a[n]!==!0&&(r=o[0],u.splice(s--,0,r));break}if(i!==!0)if(i&&e["throws"])t=i(t);else try{t=i(t)}catch(c){return{state:"parsererror",error:i?c:"No conversion from "+l+" to "+r}}}l=r}return{state:"success",data:t}}b.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return b.globalEval(e),e}}}),b.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),b.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=o.head||b("head")[0]||o.documentElement;return{send:function(t,i){n=o.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var On=[],Bn=/(=)\?(?=&|$)|\?\?/;b.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=On.pop()||b.expando+"_"+vn++;return this[e]=!0,e}}),b.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=b.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||b.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,On.push(o)),s&&b.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}b.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=b.ajaxSettings.xhr(),b.support.cors=!!Rn&&"withCredentials"in Rn,Rn=b.support.ajax=!!Rn,Rn&&b.ajaxTransport(function(n){if(!n.crossDomain||b.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,p;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=b.noop,$n&&delete Pn[a]),i)4!==u.readyState&&u.abort();else{p={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(p.text=u.responseText);try{c=u.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,l)},n.async?4===u.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},b(e).unload($n)),Pn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+x+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=Yn.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(b.cssNumber[e]?"":"px"),"px"!==r&&s){s=b.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,b.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=b.now()}function Zn(e,t){b.each(t,function(t,n){var r=(Qn[t]||[]).concat(Qn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function er(e,t,n){var r,i,o=0,a=Gn.length,s=b.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,a=0,u=l.tweens.length;for(;u>a;a++)l.tweens[a].run(o);return s.notifyWith(e,[l,o,n]),1>o&&u?n:(s.resolveWith(e,[l]),!1)},l=s.promise({elem:e,props:b.extend({},t),opts:b.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=b.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?s.resolveWith(e,[l,t]):s.rejectWith(e,[l,t]),this}}),c=l.props;for(tr(c,l.opts.specialEasing);a>o;o++)if(r=Gn[o].call(l,e,c,l.opts))return r;return Zn(l,c),b.isFunction(l.opts.start)&&l.opts.start.call(e,l),b.fx.timer(b.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function tr(e,t){var n,r,i,o,a;for(i in e)if(r=b.camelCase(i),o=t[r],n=e[i],b.isArray(n)&&(o=n[1],n=e[i]=n[0]),i!==r&&(e[r]=n,delete e[i]),a=b.cssHooks[r],a&&"expand"in a){n=a.expand(n),delete e[r];for(i in n)i in e||(e[i]=n[i],t[i]=o)}else t[r]=o}b.Animation=b.extend(er,{tweener:function(e,t){b.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,u,l,c,p,f=this,d=e.style,h={},g=[],m=e.nodeType&&nn(e);n.queue||(c=b._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,p=c.empty.fire,c.empty.fire=function(){c.unqueued||p()}),c.unqueued++,f.always(function(){f.always(function(){c.unqueued--,b.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[d.overflow,d.overflowX,d.overflowY],"inline"===b.css(e,"display")&&"none"===b.css(e,"float")&&(b.support.inlineBlockNeedsLayout&&"inline"!==un(e.nodeName)?d.zoom=1:d.display="inline-block")),n.overflow&&(d.overflow="hidden",b.support.shrinkWrapBlocks||f.always(function(){d.overflow=n.overflow[0],d.overflowX=n.overflow[1],d.overflowY=n.overflow[2]}));for(i in t)if(a=t[i],Vn.exec(a)){if(delete t[i],u=u||"toggle"===a,a===(m?"hide":"show"))continue;g.push(i)}if(o=g.length){s=b._data(e,"fxshow")||b._data(e,"fxshow",{}),"hidden"in s&&(m=s.hidden),u&&(s.hidden=!m),m?b(e).show():f.done(function(){b(e).hide()}),f.done(function(){var t;b._removeData(e,"fxshow");for(t in h)b.style(e,t,h[t])});for(i=0;o>i;i++)r=g[i],l=f.createTween(r,m?s[r]:0),h[r]=s[r]||b.style(e,r),r in s||(s[r]=l.start,m&&(l.end=l.start,l.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}b.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(b.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?b.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=b.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){b.fx.step[e.prop]?b.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[b.cssProps[e.prop]]||b.cssHooks[e.prop])?b.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},b.each(["toggle","show","hide"],function(e,t){var n=b.fn[t];b.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),b.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=b.isEmptyObject(e),o=b.speed(t,n,r),a=function(){var t=er(this,b.extend({},e),o);a.finish=function(){t.stop(!0)},(i||b._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=b.timers,a=b._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&b.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=b._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=b.timers,a=r?r.length:0;for(n.finish=!0,b.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}b.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){b.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),b.speed=function(e,t,n){var r=e&&"object"==typeof e?b.extend({},e):{complete:n||!n&&t||b.isFunction(e)&&e,duration:e,easing:n&&t||t&&!b.isFunction(t)&&t};return r.duration=b.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in b.fx.speeds?b.fx.speeds[r.duration]:b.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){b.isFunction(r.old)&&r.old.call(this),r.queue&&b.dequeue(this,r.queue)},r},b.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},b.timers=[],b.fx=rr.prototype.init,b.fx.tick=function(){var e,n=b.timers,r=0;for(Xn=b.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||b.fx.stop(),Xn=t},b.fx.timer=function(e){e()&&b.timers.push(e)&&b.fx.start()},b.fx.interval=13,b.fx.start=function(){Un||(Un=setInterval(b.fx.tick,b.fx.interval))},b.fx.stop=function(){clearInterval(Un),Un=null},b.fx.speeds={slow:600,fast:200,_default:400},b.fx.step={},b.expr&&b.expr.filters&&(b.expr.filters.animated=function(e){return b.grep(b.timers,function(t){return e===t.elem}).length}),b.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){b.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,b.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},b.offset={setOffset:function(e,t,n){var r=b.css(e,"position");"static"===r&&(e.style.position="relative");var i=b(e),o=i.offset(),a=b.css(e,"top"),s=b.css(e,"left"),u=("absolute"===r||"fixed"===r)&&b.inArray("auto",[a,s])>-1,l={},c={},p,f;u?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),b.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(l.top=t.top-o.top+p),null!=t.left&&(l.left=t.left-o.left+f),"using"in t?t.using.call(e,l):i.css(l)}},b.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===b.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),b.nodeName(e[0],"html")||(n=e.offset()),n.top+=b.css(e[0],"borderTopWidth",!0),n.left+=b.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-b.css(r,"marginTop",!0),left:t.left-n.left-b.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||o.documentElement;while(e&&!b.nodeName(e,"html")&&"static"===b.css(e,"position"))e=e.offsetParent;return e||o.documentElement})}}),b.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);b.fn[e]=function(i){return b.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?b(a).scrollLeft():o,r?o:b(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return b.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}b.each({Height:"height",Width:"width"},function(e,n){b.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){b.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return b.access(this,function(n,r,i){var o;return b.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?b.css(n,r,s):b.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=b,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return b})})(window);
\ No newline at end of file
+/*! jQuery v3.4.1 | (c) JS Foundation and other contributors | jquery.org/license */
+!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],E=C.document,r=Object.getPrototypeOf,s=t.slice,g=t.concat,u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType},x=function(e){return null!=e&&e===e.window},c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.4.1",k=function(e,t){return new k.fn.init(e,t)},p=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}k.fn=k.prototype={jquery:f,constructor:k,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=k.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return k.each(this,e)},map:function(n){return this.pushStack(k.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},k.extend=k.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(k.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||k.isPlainObject(n)?n:{},i=!1,a[t]=k.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},k.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t){b(e,{nonce:t&&t.nonce})},each:function(e,t){var n,r=0;if(d(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},trim:function(e){return null==e?"":(e+"").replace(p,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(d(Object(e))?k.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(d(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g.apply([],a)},guid:1,support:y}),"function"==typeof Symbol&&(k.fn[Symbol.iterator]=t[Symbol.iterator]),k.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var h=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,k="sizzle"+1*new Date,m=n.document,S=0,r=0,p=ue(),x=ue(),N=ue(),A=ue(),D=function(e,t){return e===t&&(l=!0),0},j={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",$=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",F=new RegExp(M+"+","g"),B=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp($),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+$),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),ne=function(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCharCode(r+65536):String.fromCharCode(r>>10|55296,1023&r|56320)},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(m.childNodes),m.childNodes),t[m.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&((e?e.ownerDocument||e:m)!==C&&T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!A[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&U.test(t)){(s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=k),o=(l=h(t)).length;while(o--)l[o]="#"+s+" "+xe(l[o]);c=l.join(","),f=ee.test(t)&&ye(e.parentNode)||e}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){A(t,!0)}finally{s===k&&e.removeAttribute("id")}}}return g(t.replace(B,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[k]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:m;return r!==C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),m!==C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=k,!C.getElementsByName||!C.getElementsByName(k).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){a.appendChild(e).innerHTML="<a id='"+k+"'></a><select id='"+k+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+k+"-]").length||v.push("~="),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+k+"+*").length||v.push(".#.+[+~]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",$)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},D=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)===(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e===C||e.ownerDocument===m&&y(m,e)?-1:t===C||t.ownerDocument===m&&y(m,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e===C?-1:t===C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]===m?-1:s[r]===m?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if((e.ownerDocument||e)!==C&&T(e),d.matchesSelector&&E&&!A[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){A(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!==C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!==C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&j.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(D),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=p[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&p(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(F," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[S,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===S&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[k]||(a[k]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[S,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[k]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace(B,"$1"));return s[k]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[S,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[k]||(e[k]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===S&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[k]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace(B,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace(B," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=N[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[k]?i.push(a):o.push(a);(a=N(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=S+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t===C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument===C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(S=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(S=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=k.split("").sort(D).join("")===k,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);k.find=h,k.expr=h.selectors,k.expr[":"]=k.expr.pseudos,k.uniqueSort=k.unique=h.uniqueSort,k.text=h.getText,k.isXMLDoc=h.isXML,k.contains=h.contains,k.escapeSelector=h.escape;var T=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&k(e).is(n))break;r.push(e)}return r},S=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},N=k.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?k.grep(e,function(e){return e===n!==r}):"string"!=typeof n?k.grep(e,function(e){return-1<i.call(n,e)!==r}):k.filter(n,e,r)}k.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?k.find.matchesSelector(r,e)?[r]:[]:k.find.matches(e,k.grep(t,function(e){return 1===e.nodeType}))},k.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(k(e).filter(function(){for(t=0;t<r;t++)if(k.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)k.find(e,i[t],n);return 1<r?k.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&N.test(e)?k(e):e||[],!1).length}});var q,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(k.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||q,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof k?t[0]:t,k.merge(this,k.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),D.test(r[1])&&k.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(k):k.makeArray(e,this)}).prototype=k.fn,q=k(E);var H=/^(?:parents|prev(?:Until|All))/,O={children:!0,contents:!0,next:!0,prev:!0};function P(e,t){while((e=e[t])&&1!==e.nodeType);return e}k.fn.extend({has:function(e){var t=k(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(k.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&k(e);if(!N.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&k.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?k.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(k(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(k.uniqueSort(k.merge(this.get(),k(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),k.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return T(e,"parentNode")},parentsUntil:function(e,t,n){return T(e,"parentNode",n)},next:function(e){return P(e,"nextSibling")},prev:function(e){return P(e,"previousSibling")},nextAll:function(e){return T(e,"nextSibling")},prevAll:function(e){return T(e,"previousSibling")},nextUntil:function(e,t,n){return T(e,"nextSibling",n)},prevUntil:function(e,t,n){return T(e,"previousSibling",n)},siblings:function(e){return S((e.parentNode||{}).firstChild,e)},children:function(e){return S(e.firstChild)},contents:function(e){return"undefined"!=typeof e.contentDocument?e.contentDocument:(A(e,"template")&&(e=e.content||e),k.merge([],e.childNodes))}},function(r,i){k.fn[r]=function(e,t){var n=k.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=k.filter(t,n)),1<this.length&&(O[r]||k.uniqueSort(n),H.test(r)&&n.reverse()),this.pushStack(n)}});var R=/[^\x20\t\r\n\f]+/g;function M(e){return e}function I(e){throw e}function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}k.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},k.each(e.match(R)||[],function(e,t){n[t]=!0}),n):k.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){k.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return k.each(arguments,function(e,t){var n;while(-1<(n=k.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<k.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},k.extend({Deferred:function(e){var o=[["notify","progress",k.Callbacks("memory"),k.Callbacks("memory"),2],["resolve","done",k.Callbacks("once memory"),k.Callbacks("once memory"),0,"resolved"],["reject","fail",k.Callbacks("once memory"),k.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return k.Deferred(function(r){k.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,M,s),l(u,o,I,s)):(u++,t.call(e,l(u,o,M,s),l(u,o,I,s),l(u,o,M,o.notifyWith))):(a!==M&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){k.Deferred.exceptionHook&&k.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==I&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(k.Deferred.getStackHook&&(t.stackTrace=k.Deferred.getStackHook()),C.setTimeout(t))}}return k.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:M,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:M)),o[2][3].add(l(0,e,m(n)?n:I))}).promise()},promise:function(e){return null!=e?k.extend(e,a):a}},s={};return k.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=k.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(W(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)W(i[t],a(t),o.reject);return o.promise()}});var $=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;k.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&$.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},k.readyException=function(e){C.setTimeout(function(){throw e})};var F=k.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),k.ready()}k.fn.ready=function(e){return F.then(e)["catch"](function(e){k.readyException(e)}),this},k.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--k.readyWait:k.isReady)||(k.isReady=!0)!==e&&0<--k.readyWait||F.resolveWith(E,[k])}}),k.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(k.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var _=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)_(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(k(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},z=/^-ms-/,U=/-([a-z])/g;function X(e,t){return t.toUpperCase()}function V(e){return e.replace(z,"ms-").replace(U,X)}var G=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function Y(){this.expando=k.expando+Y.uid++}Y.uid=1,Y.prototype={cache:function(e){var t=e[this.expando];return t||(t={},G(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[V(t)]=n;else for(r in t)i[V(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][V(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(V):(t=V(t))in r?[t]:t.match(R)||[]).length;while(n--)delete r[t[n]]}(void 0===t||k.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!k.isEmptyObject(t)}};var Q=new Y,J=new Y,K=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(Z,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:K.test(i)?JSON.parse(i):i)}catch(e){}J.set(e,t,n)}else n=void 0;return n}k.extend({hasData:function(e){return J.hasData(e)||Q.hasData(e)},data:function(e,t,n){return J.access(e,t,n)},removeData:function(e,t){J.remove(e,t)},_data:function(e,t,n){return Q.access(e,t,n)},_removeData:function(e,t){Q.remove(e,t)}}),k.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=J.get(o),1===o.nodeType&&!Q.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=V(r.slice(5)),ee(o,r,i[r]));Q.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){J.set(this,n)}):_(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=J.get(o,n))?t:void 0!==(t=ee(o,n))?t:void 0;this.each(function(){J.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){J.remove(this,e)})}}),k.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Q.get(e,t),n&&(!r||Array.isArray(n)?r=Q.access(e,t,k.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=k.queue(e,t),r=n.length,i=n.shift(),o=k._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){k.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Q.get(e,n)||Q.access(e,n,{empty:k.Callbacks("once memory").add(function(){Q.remove(e,[t+"queue",n])})})}}),k.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?k.queue(this[0],t):void 0===n?this:this.each(function(){var e=k.queue(this,t,n);k._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&k.dequeue(this,t)})},dequeue:function(e){return this.each(function(){k.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=k.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Q.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var te=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ne=new RegExp("^(?:([+-])=|)("+te+")([a-z%]*)$","i"),re=["Top","Right","Bottom","Left"],ie=E.documentElement,oe=function(e){return k.contains(e.ownerDocument,e)},ae={composed:!0};ie.getRootNode&&(oe=function(e){return k.contains(e.ownerDocument,e)||e.getRootNode(ae)===e.ownerDocument});var se=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&oe(e)&&"none"===k.css(e,"display")},ue=function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];for(o in i=n.apply(e,r||[]),t)e.style[o]=a[o];return i};function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return k.css(e,t,"")},u=s(),l=n&&n[3]||(k.cssNumber[t]?"":"px"),c=e.nodeType&&(k.cssNumber[t]||"px"!==l&&+u)&&ne.exec(k.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)k.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,k.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ce={};function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Q.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&se(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ce[s])||(o=a.body.appendChild(a.createElement(s)),u=k.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ce[s]=u)))):"none"!==n&&(l[c]="none",Q.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}k.fn.extend({show:function(){return fe(this,!0)},hide:function(){return fe(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){se(this)?k(this).show():k(this).hide()})}});var pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i,ge={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?k.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",!t||Q.get(t[n],"globalEval"))}ge.optgroup=ge.option,ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td;var me,xe,be=/<|&#?\w+;/;function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))k.merge(p,o.nodeType?[o]:o);else if(be.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+k.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;k.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<k.inArray(o,r))i&&i.push(o);else if(l=oe(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}me=E.createDocumentFragment().appendChild(E.createElement("div")),(xe=E.createElement("input")).setAttribute("type","radio"),xe.setAttribute("checked","checked"),xe.setAttribute("name","t"),me.appendChild(xe),y.checkClone=me.cloneNode(!0).cloneNode(!0).lastChild.checked,me.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!me.cloneNode(!0).lastChild.defaultValue;var Te=/^key/,Ce=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Ee=/^([^.]*)(?:\.(.+)|)/;function ke(){return!0}function Se(){return!1}function Ne(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ae(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return k().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=k.guid++)),e.each(function(){k.event.add(this,t,i,r,n)})}function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Q.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(k.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Q.set(this,i,r),t=o(this,i),this[i](),r!==(n=Q.get(this,i))||t?Q.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n.value}else r.length&&(Q.set(this,i,{value:k.event.trigger(k.extend(r[0],k.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Q.get(e,i)&&k.event.add(e,i,ke)}k.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.get(t);if(v){n.handler&&(n=(o=n).handler,i=o.selector),i&&k.find.matchesSelector(ie,i),n.guid||(n.guid=k.guid++),(u=v.events)||(u=v.events={}),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof k&&k.event.triggered!==e.type?k.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(R)||[""]).length;while(l--)d=g=(s=Ee.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=k.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=k.event.special[d]||{},c=k.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&k.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),k.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Q.hasData(e)&&Q.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(R)||[""]).length;while(l--)if(d=g=(s=Ee.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=k.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||k.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)k.event.remove(e,d+t[l],n,r,!0);k.isEmptyObject(u)&&Q.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=k.event.fix(e),u=new Array(arguments.length),l=(Q.get(this,"events")||{})[s.type]||[],c=k.event.special[s.type]||{};for(u[0]=s,t=1;t<arguments.length;t++)u[t]=arguments[t];if(s.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,s)){a=k.event.handlers.call(this,s,l),t=0;while((i=a[t++])&&!s.isPropagationStopped()){s.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!s.isImmediatePropagationStopped())s.rnamespace&&!1!==o.namespace&&!s.rnamespace.test(o.namespace)||(s.handleObj=o,s.data=o.data,void 0!==(r=((k.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,u))&&!1===(s.result=r)&&(s.preventDefault(),s.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,s),s.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<k(i,this).index(l):k.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(k.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[k.expando]?e:new k.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click",ke),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&De(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Q.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},k.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},k.Event=function(e,t){if(!(this instanceof k.Event))return new k.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?ke:Se,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&k.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[k.expando]=!0},k.Event.prototype={constructor:k.Event,isDefaultPrevented:Se,isPropagationStopped:Se,isImmediatePropagationStopped:Se,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=ke,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=ke,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=ke,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},k.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(e){var t=e.button;return null==e.which&&Te.test(e.type)?null!=e.charCode?e.charCode:e.keyCode:!e.which&&void 0!==t&&Ce.test(e.type)?1&t?1:2&t?3:4&t?2:0:e.which}},k.event.addProp),k.each({focus:"focusin",blur:"focusout"},function(e,t){k.event.special[e]={setup:function(){return De(this,e,Ne),!1},trigger:function(){return De(this,e),!0},delegateType:t}}),k.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){k.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||k.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),k.fn.extend({on:function(e,t,n,r){return Ae(this,e,t,n,r)},one:function(e,t,n,r){return Ae(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,k(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Se),this.each(function(){k.event.remove(this,e,n,t)})}});var je=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,qe=/<script|<style|<link/i,Le=/checked\s*(?:[^=]|=\s*.checked.)/i,He=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&k(e).children("tbody")[0]||e}function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&&(o=Q.access(e),a=Q.set(t,o),l=o.events))for(i in delete a.handle,a.events={},l)for(n=0,r=l[i].length;n<r;n++)k.event.add(t,i,l[i][n]);J.hasData(e)&&(s=J.access(e),u=k.extend({},s),J.set(t,u))}}function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Le.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),Ie(t,r,i,o)});if(f&&(t=(e=we(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=k.map(ve(e,"script"),Pe)).length;c<f;c++)u=e,c!==p&&(u=k.clone(u,!0,!0),s&&k.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,k.map(a,Re),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Q.access(u,"globalEval")&&k.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?k._evalUrl&&!u.noModule&&k._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")}):b(u.textContent.replace(He,""),u,l))}return n}function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||k.cleanData(ve(r)),r.parentNode&&(n&&oe(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}k.extend({htmlPrefilter:function(e){return e.replace(je,"<$1></$2>")},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=oe(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||k.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Me(o[r],a[r]);else Me(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=k.event.special,o=0;void 0!==(n=e[o]);o++)if(G(n)){if(t=n[Q.expando]){if(t.events)for(r in t.events)i[r]?k.event.remove(n,r):k.removeEvent(n,r,t.handle);n[Q.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),k.fn.extend({detach:function(e){return We(this,e,!0)},remove:function(e){return We(this,e)},text:function(e){return _(this,function(e){return void 0===e?k.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return Ie(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Oe(this,e).appendChild(e)})},prepend:function(){return Ie(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Oe(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return Ie(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(k.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return k.clone(this,e,t)})},html:function(e){return _(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!qe.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=k.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(k.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return Ie(this,arguments,function(e){var t=this.parentNode;k.inArray(this,n)<0&&(k.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),k.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){k.fn[e]=function(e){for(var t,n=[],r=k(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),k(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var $e=new RegExp("^("+te+")(?!px)[a-z%]+$","i"),Fe=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Be=new RegExp(re.join("|"),"i");function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||oe(e)||(a=k.style(e,t)),!y.pixelBoxStyles()&&$e.test(a)&&Be.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(u){s.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",u.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",ie.appendChild(s).appendChild(u);var e=C.getComputedStyle(u);n="1%"!==e.top,a=12===t(e.marginLeft),u.style.right="60%",o=36===t(e.right),r=36===t(e.width),u.style.position="absolute",i=12===t(u.offsetWidth/3),ie.removeChild(s),u=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s=E.createElement("div"),u=E.createElement("div");u.style&&(u.style.backgroundClip="content-box",u.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===u.style.backgroundClip,k.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),a},scrollboxSize:function(){return e(),i}}))}();var Ue=["Webkit","Moz","ms"],Xe=E.createElement("div").style,Ve={};function Ge(e){var t=k.cssProps[e]||Ve[e];return t||(e in Xe?e:Ve[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Ue.length;while(n--)if((e=Ue[n]+t)in Xe)return e}(e)||e)}var Ye=/^(none|table(?!-c[ea]).+)/,Qe=/^--/,Je={position:"absolute",visibility:"hidden",display:"block"},Ke={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=k.css(e,n+re[a],!0,i)),r?("content"===n&&(u-=k.css(e,"padding"+re[a],!0,i)),"margin"!==n&&(u-=k.css(e,"border"+re[a]+"Width",!0,i))):(u+=k.css(e,"padding"+re[a],!0,i),"padding"!==n?u+=k.css(e,"border"+re[a]+"Width",!0,i):s+=k.css(e,"border"+re[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-box"===k.css(e,"boxSizing",!1,r),o=i,a=_e(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if($e.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||"auto"===a||!parseFloat(a)&&"inline"===k.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===k.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}k.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=_e(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=V(t),u=Qe.test(t),l=e.style;if(u||(t=Ge(s)),a=k.cssHooks[t]||k.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=ne.exec(n))&&i[1]&&(n=le(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(k.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=V(t);return Qe.test(t)||(t=Ge(s)),(a=k.cssHooks[t]||k.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=_e(e,t,r)),"normal"===i&&t in Ke&&(i=Ke[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),k.each(["height","width"],function(e,u){k.cssHooks[u]={get:function(e,t,n){if(t)return!Ye.test(k.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,u,n):ue(e,Je,function(){return tt(e,u,n)})},set:function(e,t,n){var r,i=Fe(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===k.css(e,"boxSizing",!1,i),s=n?et(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-et(e,u,"border",!1,i)-.5)),s&&(r=ne.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=k.css(e,u)),Ze(0,t,s)}}}),k.cssHooks.marginLeft=ze(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(_e(e,"marginLeft"))||e.getBoundingClientRect().left-ue(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),k.each({margin:"",padding:"",border:"Width"},function(i,o){k.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+re[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(k.cssHooks[i+o].set=Ze)}),k.fn.extend({css:function(e,t){return _(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Fe(e),i=t.length;a<i;a++)o[t[a]]=k.css(e,t[a],!1,r);return o}return void 0!==n?k.style(e,t,n):k.css(e,t)},e,t,1<arguments.length)}}),((k.Tween=nt).prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||k.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(k.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=k.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}}).init.prototype=nt.prototype,(nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=k.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){k.fx.step[e.prop]?k.fx.step[e.prop](e):1!==e.elem.nodeType||!k.cssHooks[e.prop]&&null==e.elem.style[Ge(e.prop)]?e.elem[e.prop]=e.now:k.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},k.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},k.fx=nt.prototype.init,k.fx.step={};var rt,it,ot,at,st=/^(?:toggle|show|hide)$/,ut=/queueHooks$/;function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(lt):C.setTimeout(lt,k.fx.interval),k.fx.tick())}function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=re[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=rt||ct(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:k.extend({},e),opts:k.extend(!0,{specialEasing:{},easing:k.easing._default},t),originalProperties:e,originalOptions:t,startTime:rt||ct(),duration:t.duration,tweens:[],createTween:function(e,t){var n=k.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=V(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=k.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=dt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(k._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return k.map(c,pt,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),k.fx.timer(k.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}k.Animation=k.extend(dt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return le(n.elem,e,ne.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(R);for(var n,r=0,i=e.length;r<i;r++)n=e[r],dt.tweeners[n]=dt.tweeners[n]||[],dt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&se(e),v=Q.get(e,"fxshow");for(r in n.queue||(null==(a=k._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,k.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],st.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||k.style(e,r)}if((u=!k.isEmptyObject(t))||!k.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Q.get(e,"display")),"none"===(c=k.css(e,"display"))&&(l?c=l:(fe([e],!0),l=e.style.display||l,c=k.css(e,"display"),fe([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===k.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Q.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&fe([e],!0),p.done(function(){for(r in g||fe([e]),Q.remove(e,"fxshow"),d)k.style(e,r,d[r])})),u=pt(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?dt.prefilters.unshift(e):dt.prefilters.push(e)}}),k.speed=function(e,t,n){var r=e&&"object"==typeof e?k.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return k.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in k.fx.speeds?r.duration=k.fx.speeds[r.duration]:r.duration=k.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&k.dequeue(this,r.queue)},r},k.fn.extend({fadeTo:function(e,t,n,r){return this.filter(se).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=k.isEmptyObject(t),o=k.speed(e,n,r),a=function(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&!1!==i&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=k.timers,r=Q.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&ut.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||k.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Q.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=k.timers,o=n?n.length:0;for(t.finish=!0,k.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),k.each(["toggle","show","hide"],function(e,r){var i=k.fn[r];k.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(ft(r,!0),e,t,n)}}),k.each({slideDown:ft("show"),slideUp:ft("hide"),slideToggle:ft("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){k.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),k.timers=[],k.fx.tick=function(){var e,t=0,n=k.timers;for(rt=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||k.fx.stop(),rt=void 0},k.fx.timer=function(e){k.timers.push(e),k.fx.start()},k.fx.interval=13,k.fx.start=function(){it||(it=!0,lt())},k.fx.stop=function(){it=null},k.fx.speeds={slow:600,fast:200,_default:400},k.fn.delay=function(r,e){return r=k.fx&&k.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},ot=E.createElement("input"),at=E.createElement("select").appendChild(E.createElement("option")),ot.type="checkbox",y.checkOn=""!==ot.value,y.optSelected=at.selected,(ot=E.createElement("input")).value="t",ot.type="radio",y.radioValue="t"===ot.value;var ht,gt=k.expr.attrHandle;k.fn.extend({attr:function(e,t){return _(this,k.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){k.removeAttr(this,e)})}}),k.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?k.prop(e,t,n):(1===o&&k.isXMLDoc(e)||(i=k.attrHooks[t.toLowerCase()]||(k.expr.match.bool.test(t)?ht:void 0)),void 0!==n?null===n?void k.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=k.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(R);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ht={set:function(e,t,n){return!1===t?k.removeAttr(e,n):e.setAttribute(n,n),n}},k.each(k.expr.match.bool.source.match(/\w+/g),function(e,t){var a=gt[t]||k.find.attr;gt[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=gt[o],gt[o]=r,r=null!=a(e,t,n)?o:null,gt[o]=i),r}});var vt=/^(?:input|select|textarea|button)$/i,yt=/^(?:a|area)$/i;function mt(e){return(e.match(R)||[]).join(" ")}function xt(e){return e.getAttribute&&e.getAttribute("class")||""}function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)||[]}k.fn.extend({prop:function(e,t){return _(this,k.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[k.propFix[e]||e]})}}),k.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&k.isXMLDoc(e)||(t=k.propFix[t]||t,i=k.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=k.find.attr(e,"tabindex");return t?parseInt(t,10):vt.test(e.nodeName)||yt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(k.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),k.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){k.propFix[this.toLowerCase()]=this}),k.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).addClass(t.call(this,e,xt(this)))});if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){k(this).removeClass(t.call(this,e,xt(this)))});if(!arguments.length)return this.attr("class","");if((e=bt(t)).length)while(n=this[u++])if(i=xt(n),r=1===n.nodeType&&" "+mt(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=mt(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){k(this).toggleClass(i.call(this,e,xt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=k(this),r=bt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=xt(this))&&Q.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Q.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+mt(xt(n))+" ").indexOf(t))return!0;return!1}});var wt=/\r/g;k.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,k(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=k.map(t,function(e){return null==e?"":e+""})),(r=k.valHooks[this.type]||k.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=k.valHooks[t.type]||k.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(wt,""):null==e?"":e:void 0}}),k.extend({valHooks:{option:{get:function(e){var t=k.find.attr(e,"value");return null!=t?t:mt(k.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=k(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=k.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<k.inArray(k.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),k.each(["radio","checkbox"],function(){k.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<k.inArray(k(e).val(),t)}},y.checkOn||(k.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var Tt=/^(?:focusinfocus|focusoutblur)$/,Ct=function(e){e.stopPropagation()};k.extend(k.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!Tt.test(d+k.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[k.expando]?e:new k.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:k.makeArray(t,[e]),c=k.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,Tt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Q.get(o,"events")||{})[e.type]&&Q.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&G(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!G(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),k.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,Ct),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,Ct),k.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=k.extend(new k.Event,n,{type:e,isSimulated:!0});k.event.trigger(r,null,t)}}),k.fn.extend({trigger:function(e,t){return this.each(function(){k.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return k.event.trigger(e,t,n,!0)}}),y.focusin||k.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){k.event.simulate(r,e.target,k.event.fix(e))};k.event.special[r]={setup:function(){var e=this.ownerDocument||this,t=Q.access(e,r);t||e.addEventListener(n,i,!0),Q.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this,t=Q.access(e,r)-1;t?Q.access(e,r,t):(e.removeEventListener(n,i,!0),Q.remove(e,r))}}});var Et=C.location,kt=Date.now(),St=/\?/;k.parseXML=function(e){var t;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||k.error("Invalid XML: "+e),t};var Nt=/\[\]$/,At=/\r?\n/g,Dt=/^(?:submit|button|image|reset|file)$/i,jt=/^(?:input|select|textarea|keygen)/i;function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r||Nt.test(n)?i(n,t):qt(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)qt(n+"["+t+"]",e[t],r,i)}k.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!k.isPlainObject(e))k.each(e,function(){i(this.name,this.value)});else for(n in e)qt(n,e[n],t,i);return r.join("&")},k.fn.extend({serialize:function(){return k.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=k.prop(this,"elements");return e?k.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!k(this).is(":disabled")&&jt.test(this.nodeName)&&!Dt.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=k(this).val();return null==n?null:Array.isArray(n)?k.map(n,function(e){return{name:t.name,value:e.replace(At,"\r\n")}}):{name:t.name,value:n.replace(At,"\r\n")}}).get()}});var Lt=/%20/g,Ht=/#.*$/,Ot=/([?&])_=[^&]*/,Pt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Rt=/^(?:GET|HEAD)$/,Mt=/^\/\//,It={},Wt={},$t="*/".concat("*"),Ft=E.createElement("a");function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(R)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!0,k.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&k.extend(!0,e,r),e}Ft.href=Et.href,k.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Et.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(Et.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":$t,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":k.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?zt(zt(e,k.ajaxSettings),t):zt(k.ajaxSettings,e)},ajaxPrefilter:Bt(It),ajaxTransport:Bt(Wt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=k.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?k(y):k.event,x=k.Deferred(),b=k.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=Pt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||Et.href)+"").replace(Mt,Et.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(R)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Ft.protocol+"//"+Ft.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=k.param(v.data,v.traditional)),_t(It,v,t,T),h)return T;for(i in(g=k.event&&v.global)&&0==k.active++&&k.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Rt.test(v.type),f=v.url.replace(Ht,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Lt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(St.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Ot,"$1"),o=(St.test(f)?"&":"?")+"_="+kt+++o),v.url=f+o),v.ifModified&&(k.lastModified[f]&&T.setRequestHeader("If-Modified-Since",k.lastModified[f]),k.etag[f]&&T.setRequestHeader("If-None-Match",k.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+$t+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=_t(Wt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(k.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(k.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--k.active||k.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return k.get(e,t,n,"json")},getScript:function(e,t){return k.get(e,void 0,t,"script")}}),k.each(["get","post"],function(e,i){k[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),k.ajax(k.extend({url:e,type:i,dataType:r,data:t,success:n},k.isPlainObject(e)&&e))}}),k._evalUrl=function(e,t){return k.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){k.globalEval(e,t)}})},k.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=k(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){k(this).wrapInner(n.call(this,e))}):this.each(function(){var e=k(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){k(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){k(this).replaceWith(this.childNodes)}),this}}),k.expr.pseudos.hidden=function(e){return!k.expr.pseudos.visible(e)},k.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},k.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},Xt=k.ajaxSettings.xhr();y.cors=!!Xt&&"withCredentials"in Xt,y.ajax=Xt=!!Xt,k.ajaxTransport(function(i){var o,a;if(y.cors||Xt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Ut[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),k.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),k.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return k.globalEval(e),e}}}),k.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),k.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=k("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var Vt,Gt=[],Yt=/(=)\?(?=&|$)|\?\?/;k.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Gt.pop()||k.expando+"_"+kt++;return this[e]=!0,e}}),k.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Yt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Yt,"$1"+r):!1!==e.jsonp&&(e.url+=(St.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||k.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?k(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Gt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((Vt=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===Vt.childNodes.length),k.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=D.exec(e))?[t.createElement(i[1])]:(i=we([e],t,o),o&&o.length&&k(o).remove(),k.merge([],i.childNodes)));var r,i,o},k.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=mt(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&k.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?k("<div>").append(k.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},k.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){k.fn[t]=function(e){return this.on(t,e)}}),k.expr.pseudos.animated=function(t){return k.grep(k.timers,function(e){return t===e.elem}).length},k.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=k.css(e,"position"),c=k(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=k.css(e,"top"),u=k.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,k.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},k.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){k.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===k.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===k.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=k(e).offset()).top+=k.css(e,"borderTopWidth",!0),i.left+=k.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-k.css(r,"marginTop",!0),left:t.left-i.left-k.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===k.css(e,"position"))e=e.offsetParent;return e||ie})}}),k.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;k.fn[t]=function(e){return _(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),k.each(["top","left"],function(e,n){k.cssHooks[n]=ze(y.pixelPosition,function(e,t){if(t)return t=_e(e,n),$e.test(t)?k(e).position()[n]+"px":t})}),k.each({Height:"height",Width:"width"},function(a,s){k.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){k.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return _(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?k.css(e,t,i):k.style(e,t,n,i)},s,n?e:void 0,n)}})}),k.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){k.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}}),k.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),k.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}}),k.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||k.guid++,i},k.holdReady=function(e){e?k.readyWait++:k.ready(!0)},k.isArray=Array.isArray,k.parseJSON=JSON.parse,k.nodeName=A,k.isFunction=m,k.isWindow=x,k.camelCase=V,k.type=w,k.now=Date.now,k.isNumeric=function(e){var t=k.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},"function"==typeof define&&define.amd&&define("jquery",[],function(){return k});var Qt=C.jQuery,Jt=C.$;return k.noConflict=function(e){return C.$===k&&(C.$=Jt),e&&C.jQuery===k&&(C.jQuery=Qt),k},e||(C.jQuery=C.$=k),k});
index 53fc685d3cbf794491fec3f653ebee601c731d51..d99f62c0a3ed0a65b4c4dd9b0158e5a3d9ed6c81 100644 (file)
@@ -65,7 +65,8 @@
                                 JSONFile: json,
 
                                 JSONDataType: 'json',
-                                {{--key                        : '<?php echo $configManager->getConfig('licensekey') ?>',--}}
+                                key: "{{config('flowpaper.key')}}",
+
 
                                 WMode: 'transparent',
                                 localeChain: 'fr_FR'
index a9769bac6f645fe3a8990a3c6045100a529644ca..d3f3b9945a8befb3a76bf6e7d9b2c273c9cb37b3 100644 (file)
@@ -45,8 +45,8 @@ Route::domain(env('CLIENT_DOMAIN_NAME'))->group(function() {
     /** Flowpaper viewer */
     Route::middleware('login.token')
         ->get('/view/{file:slug}', 'FlowpaperController@view')
-        ->name('flowpaper.view')
-        ->middleware('verified');
+        ->name('flowpaper.view');
+//        ->middleware('verified');
 
 
     Route::get('edition/{file:slug}', 'FileController@show');