/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number((((($n%10)==1)&&(($n%100)!=11))?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': { "Save": "Сохранить", "Your server has been successfully tested to support this feature.": "Ваш сервер был успешно протестирован на возможность использования этой особенности.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "Конфигурация вашей системы на данный момент не поддерживает этой функции. Дополнительная информация доступна на \x3ca href=\"http://drupal.org/node/15365\"\x3eстраницы документации о Clean URLs\x3c/a\x3e.", "Testing clean URLs...": "Тестирование чистых URL-ов...", "Select all rows in this table": "Отметить все колонки таблицы", "Deselect all rows in this table": "Снять отметку со всех колонок таблицы", "Join summary": "Объединить анонс", "Split summary at cursor": "Отделить анонс от основного материала", "Unspecified error": "Не специфичная ошибка", "An HTTP error @status occurred. \n@uri": "Произошла HTTP ошибка @status. \r\n@uri", "Changes made in this table will not be saved until the form is submitted.": "Изменения, сделанные в списке не вступят в силу пока вы не сохраните их.", "Drag to re-order": "Переместите для изменения порядка", "An error occurred. \n@uri\n@text": "Возникла ошибка. \r\n@uri\r\n@text", "An error occurred. \n@uri\n(no information available).": "Возникла ошибка. \r\n@uri\r\n(нет доступной информации).", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Изменения, сделанные в блоках не вступят в силу пока вы не нажмете кнопку \x3cem\x3eСохранить блоки\x3c/em\x3e.", "Are you sure you want to remove this item?": "Вы действительно хотите удалить данный элемент?" } };;
// $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $

/**
 * @file dhtml_menu.js
 * The Javascript code for DHTML Menu
 */
 
Drupal.dhtmlMenu = {};

/**
 * Initialize the module's JS functions
 */
Drupal.behaviors.dhtmlMenu = function() {
  // Do not run this function more than once.
  if (Drupal.dhtmlMenu.init) {
    return;
  }
  else {
    Drupal.dhtmlMenu.init = true;
  }

  // Get the settings.
  var effects = Drupal.settings.dhtmlMenu;

  $('.collapsed').removeClass('expanded');

  // Get cookie
  if (!effects.siblings) {
    var cookie = Drupal.dhtmlMenu.cookieGet();
    for (var i in cookie) {
      // If the cookie was not applied to the HTML code yet, do so now.
      var li = $('#dhtml_menu-' + cookie[i]).parents('li:first');
      if ($(li).hasClass('collapsed')) {
        Drupal.dhtmlMenu.toggleMenu(li);
      }
    }
  }

  /* Add jQuery effects and listeners to all menu items.
   * The ~ (sibling) selector is unidirectional and selects 
   * only the latter element, so we must use siblings() to get 
   * back to the link element.
   */
   $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() {
    var li = this;
    if (effects.clone) {
      var ul = $(li).find('ul:first');
      if (ul.length) {
        $(li).find('a:first').clone().prependTo(ul).wrap('<li class="leaf fake-leaf"></li>');
      }
    }

    if (effects.doubleclick) {
      $(li).find('a:first').dblclick(function(e) {
        window.location = this.href;
      });
    }

    $(li).find('a:first').click(function(e) {
      Drupal.dhtmlMenu.toggleMenu($(li));
      return false;
    });
  });
}

/**
 * Toggles the menu's state between open and closed.
 *
 * @param li
 *   Object. The <li> element that will be expanded or collapsed.
 */
Drupal.dhtmlMenu.toggleMenu = function(li) {
  var effects = Drupal.settings.dhtmlMenu;

  // If the menu is expanded, collapse it.
  if($(li).hasClass('expanded')) {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'none');

    // If children are closed automatically, find and close them now.
    if (effects.children) {
      if (effects.slide) {
        $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(li).find('li.expanded').find('ul:first').css('display', 'none');

      $(li).find('li.expanded').removeClass('expanded').addClass('collapsed')
    }

    $(li).removeClass('expanded').addClass('collapsed');
  }

  // Otherwise, expand it.
  else {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'block');
    $(li).removeClass('collapsed').addClass('expanded');

    // If the siblings effect is on, close all sibling menus.
    if (effects.siblings) {
      var id = $(li).find('a:first').attr('id');

      // Siblings are all open menus that are neither parents nor children of this menu.
      $(li).find('li').addClass('own-children-temp');
	  
      // If the relativity option is on, select only the siblings that have the same parent
      if (effects.relativity) {
        var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }
      // Otherwise, select all menus of the same level
      else {
        var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }

      // If children should not get closed automatically...
      if (!effects.children) {
        // Remove items that are currently hidden from view (do not close these).
        $('li.collapsed li.expanded').addClass('sibling-children-temp');
        // Only close the top-most open sibling, not its children.
        $(siblings).find('li.expanded').addClass('sibling-children-temp');
        siblings = $(siblings).not('.sibling-children-temp');
      }

      $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp');

      if (effects.slide) {
        $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(siblings).find('ul:first').css('display', 'none');

      $(siblings).removeClass('expanded').addClass('collapsed');
    }
  }

  // Save the current state of the menus in the cookie.
  Drupal.dhtmlMenu.cookieSet();
}

/**
 * Reads the dhtml_menu cookie.
 */
Drupal.dhtmlMenu.cookieGet = function() {
  var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie);
  if (c) {
    return c[1];
  }
  else return '';
}

/**
 * Saves the dhtml_menu cooki.
 */
Drupal.dhtmlMenu.cookieSet = function() {
  var expanded = new Array();
  $('li.expanded').each(function() {
    expanded.push($(this).find('a:first').attr('id').substr(5));
  });
  document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/';
}

;
Drupal.behaviors.spamspan=function(_1){$("span."+Drupal.settings.spamspan.m,_1).each(function(_2){var _3=($("span."+Drupal.settings.spamspan.u,this).text()+"@"+$("span."+Drupal.settings.spamspan.d,this).text()).replace(/\s+/g,"").replace(/\[dot\]/g,".");var _4=$("span."+Drupal.settings.spamspan.h,this).text().replace(/^ ?\((.*)\) ?$/,"$1");var _5=$.map(_4.split(/, /),function(n,i){return (n.replace(/: /,"="));});var _6=$("span."+Drupal.settings.spamspan.t,this).text().replace(/^ \((.*)\)$/,"$1");var _7="mailto:"+encodeURIComponent(_3);var _8=_5.join("&");_7+=_8?("?"+_8):"";$(this).after($("<a></a>").attr("href",_7).html(_6?_6:_3).addClass("spamspan")).remove();});};;
/** 
 * Name:    Highslide JS
 * Version: 4.1.9 (2010-07-05)
 * Author:  Torstein Hønsi
 * Support: www.highslide.com/support
 * License: www.highslide.com/#license
 */
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('q(!m){A m={14:{9s:\'ar\',al:\'eX...\',am:\'8R 2g eY\',bD:\'8R 2g eK 2g ek\',9v:\'en 2g eJ D (f)\',cu:\'ex by <i>ag ah</i>\',cs:\'ez 2g eB ag ah fN\',8t:\'aa\',8n:\'ao\',8f:\'an\',8l:\'af\',8i:\'af (fQ)\',b6:\'fH\',aT:\'ae\',b1:\'ae 1p (ad)\',aW:\'ab\',aU:\'ab 1p (ad)\',8s:\'aa (8Q 18)\',8w:\'ao (8Q 3o)\',8h:\'an\',bb:\'1:1\',3N:\'ff %1 fh %2\',9F:\'8R 2g 2b 2R, fj a8 fy 2g 3A. g3 8Q cR O 1C a8 2W.\'},5p:\'K/dW/\',7M:\'dZ.4X\',5w:\'e0.4X\',7s:5S,9Y:5S,4y:15,9h:15,4T:15,77:15,4t:e1,ak:0.75,91:M,9o:5,3F:2,dV:3,5A:1j,bR:\'4j 3o\',bP:1,c2:M,cp:\'dQ://K.dS/\',cx:\'dv\',az:M,9U:[\'a\',\'5j\'],3i:[],cz:5S,48:0,95:50,7N:1j,7G:M,4z:M,3J:\'5D\',9E:M,4l:\'1Q\',9n:\'1Q\',b7:I,b8:I,9N:M,4B:aZ,5G:aZ,5T:M,1Y:\'dp-dt\',9R:{35:\'<P 1W="K-35"><6c>\'+\'<1K 1W="K-2W">\'+\'<a 24="#" 2j="{m.14.8s}">\'+\'<1D>{m.14.8t}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-3I">\'+\'<a 24="#" 2j="{m.14.b1}">\'+\'<1D>{m.14.aT}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-3r">\'+\'<a 24="#" 2j="{m.14.aU}">\'+\'<1D>{m.14.aW}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-1C">\'+\'<a 24="#" 2j="{m.14.8w}">\'+\'<1D>{m.14.8n}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-3A">\'+\'<a 24="#" 2j="{m.14.8h}">\'+\'<1D>{m.14.8f}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-19-2H">\'+\'<a 24="#" 2j="{m.14.9v}">\'+\'<1D>{m.14.bb}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-2b">\'+\'<a 24="#" 2j="{m.14.8i}" >\'+\'<1D>{m.14.8l}</1D></a>\'+\'</1K>\'+\'</6c></P>\',aK:\'<P 1W="K-fq"><6c>\'+\'<1K 1W="K-2W">\'+\'<a 24="#" 2j="{m.14.8s}" 2n="E m.2W(k)">\'+\'<1D>{m.14.8t}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-1C">\'+\'<a 24="#" 2j="{m.14.8w}" 2n="E m.1C(k)">\'+\'<1D>{m.14.8n}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-3A">\'+\'<a 24="#" 2j="{m.14.8h}" 2n="E 1j">\'+\'<1D>{m.14.8f}</1D></a>\'+\'</1K>\'+\'<1K 1W="K-2b">\'+\'<a 24="#" 2j="{m.14.8i}" 2n="E m.2b(k)">\'+\'<1D>{m.14.8l}</1D></a>\'+\'</1K>\'+\'</6c></P>\'+\'<P 1W="K-1f"></P>\'+\'<P 1W="K-cV"><P>\'+\'<1D 1W="K-4g" 2j="{m.14.b6}"><1D></1D></1D>\'+\'</P></P>\'},6s:[],a0:M,16:[],a1:[\'5T\',\'3x\',\'4l\',\'9n\',\'b7\',\'b8\',\'1Y\',\'3F\',\'cW\',\'cP\',\'dU\',\'aR\',\'e3\',\'eb\',\'ea\',\'aS\',\'cr\',\'9N\',\'4d\',\'64\',\'3i\',\'48\',\'L\',\'N\',\'7X\',\'7N\',\'7G\',\'4z\',\'e9\',\'e5\',\'e4\',\'2F\',\'9E\',\'4f\',\'4m\',\'3J\',\'8e\',\'8Y\',\'4B\',\'5G\',\'6J\',\'8W\',\'aM\',\'2N\',\'2O\',\'cw\',\'ct\',\'1e\'],1T:[],61:0,88:{x:[\'c5\',\'18\',\'4J\',\'3o\',\'c6\'],y:[\'5X\',\'Y\',\'9i\',\'4j\',\'7w\']},7u:{},aS:{},aR:{},8e:{aF:{},2c:{},ax:{}},44:[],5O:[],4A:{},4s:[],6S:[],5b:[],6F:{},a5:{},7l:[],3f:/e8\\/4\\.0/.1a(56.6y)?8:8C((56.6y.6p().31(/.+(?:aB|dO|dN|1E)[\\/: ]([\\d.]+)/)||[0,\'0\'])[1]),1E:(W.6w&&!1S.3u),4H:/dw/.1a(56.6y),5I:/dy.+aB:1\\.[0-8].+dD/.1a(56.6y),$:C(1x){q(1x)E W.92(1x)},2k:C(26,3g){26[26.V]=3g},1b:C(aA,46,3W,5v,au){A el=W.1b(aA);q(46)m.3s(el,46);q(au)m.R(el,{8O:0,8g:\'1F\',97:0});q(3W)m.R(el,3W);q(5v)5v.21(el);E el},3s:C(el,46){O(A x 3e 46)el[x]=46[x];E el},R:C(el,3W){O(A x 3e 3W){q(m.1E&&x==\'1z\'){q(3W[x]>0.99)el.G.dE(\'60\');J el.G.60=\'aN(1z=\'+(3W[x]*2x)+\')\'}J el.G[x]=3W[x]}},2u:C(el,1d,3B){A 4F,54,4v;q(1G 3B!=\'7F\'||3B===I){A 2G=ck;3B={45:2G[2],2O:2G[3],6O:2G[4]}}q(1G 3B.45!=\'3N\')3B.45=5S;3B.2O=1i[3B.2O]||1i.aq;3B.7o=m.3s({},1d);O(A 2X 3e 1d){A e=1J m.fx(el,3B,2X);4F=8C(m.8p(el,2X))||0;54=8C(1d[2X]);4v=2X!=\'1z\'?\'F\':\'\';e.3y(4F,54,4v)}},8p:C(el,1d){q(el.G[1d]){E el.G[1d]}J q(W.84){E W.84.cf(el,I).bB(1d)}J{q(1d==\'1z\')1d=\'60\';A 3g=el.5H[1d.2d(/\\-(\\w)/g,C(a,b){E b.aE()})];q(1d==\'60\')3g=3g.2d(/aN\\(1z=([0-9]+)\\)/,C(a,b){E b/2x});E 3g===\'\'?1:3g}},7k:C(){A d=W,w=1S,6k=d.7t&&d.7t!=\'8I\'?d.59:d.1f;A L=m.1E?6k.8F:(d.59.8F||7q.dM),N=m.1E?6k.ca:7q.dL;m.4e={L:L,N:N,6v:m.1E?6k.6v:dK,69:m.1E?6k.69:dB};E m.4e},71:C(el){q(/5j/i.1a(el.3O)){A 6V=W.2A(\'1R\');O(A i=0;i<6V.V;i++){A u=6V[i].dA;q(u&&u.2d(/^.*?#/,\'\')==el.22.2X){el=6V[i];5a}}}A p={x:el.4O,y:el.8K};5o(el.aO){el=el.aO;p.x+=el.4O;p.y+=el.8K;q(el!=W.1f&&el!=W.59){p.x-=el.6v;p.y-=el.69}}E p},2H:C(a,2c,3y,T){q(!a)a=m.1b(\'a\',I,{1o:\'1F\'},m.29);q(1G a.6d==\'C\')E 2c;q(T==\'3w\'){O(A i=0;i<m.4s.V;i++){q(m.4s[i]&&m.4s[i].a==a){m.4s[i].bt();m.4s[i]=I;E 1j}}m.bd=M}1t{1J m.6l(a,2c,3y,T);E 1j}1v(e){E M}},9T:C(a,2c,3y){E m.2H(a,2c,3y,\'3w\')},7Y:C(){E m.1b(\'P\',{1c:\'K-3w-S\',2i:m.9Q(m.9R.aK)})},4K:C(el,3O,1c){A 1m=el.2A(3O);O(A i=0;i<1m.V;i++){q((1J 5s(1c)).1a(1m[i].1c)){E 1m[i]}}E I},9Q:C(s){s=s.2d(/\\s/g,\' \');A 2o=/{m\\.14\\.([^}]+)\\}/g,6m=s.31(2o),14;q(6m)O(A i=0;i<6m.V;i++){14=6m[i].2d(2o,"$1");q(1G m.14[14]!=\'1V\')s=s.2d(6m[i],m.14[14])}E s},bl:C(){A 1m=W.2A(\'a\');O(A i=0;i<1m.V;i++){A T=m.aI(1m[i]);q(T&&!1m[i].aJ){(C(){A t=T;q(m.1A(m,\'du\',{6A:1m[i],T:t})){1m[i].2n=(T==\'2R\')?C(){E m.2H(k)}:C(){E m.9T(k,{2F:t})}}})();1m[i].aJ=M}}m.5R()},aI:C(el){q(el.6X==\'K\')E\'2R\';J q(el.6X==\'K-2U\')E\'2U\';J q(el.6X==\'K-1k\')E\'1k\';J q(el.6X==\'K-3t\')E\'3t\'},8c:C(a){O(A i=0;i<m.5b.V;i++){q(m.5b[i][0]==a){A c=m.5b[i][1];m.5b[i][1]=c.5B(1);E c}}E I},bw:C(e){A 26=m.5R();O(A i=0;i<26.5t.V;i++){A a=26.5t[i];q(m.43(a,\'2F\')==\'2U\'&&m.43(a,\'9E\'))m.2k(m.6S,a)}m.9A(0)},9A:C(i){q(!m.6S[i])E;A a=m.6S[i];A 6r=m.4o(m.43(a,\'7X\'));q(!6r)6r=m.7Y();A 2U=1J m.7E(a,6r,1);2U.9a=C(){};2U.3z=C(){m.2k(m.5b,[a,6r]);m.9A(i+1)};2U.9C()},b9:C(){A a2=0,7c=-1,16=m.16,B,1B;O(A i=0;i<16.V;i++){B=16[i];q(B){1B=B.U.G.1B;q(1B&&1B>a2){a2=1B;7c=i}}}q(7c==-1)m.2Y=-1;J 16[7c].3P()},43:C(a,6j){a.6d=a.2n;A p=a.6d?a.6d():I;a.6d=I;E(p&&1G p[6j]!=\'1V\')?p[6j]:(1G m[6j]!=\'1V\'?m[6j]:I)},7L:C(a){A 1e=m.43(a,\'1e\');q(1e)E 1e;E a.24},4o:C(1x){A 1O=m.$(1x),4S=m.a5[1x],a={};q(!1O&&!4S)E I;q(!4S){4S=1O.5B(M);4S.1x=\'\';m.a5[1x]=4S;E 1O}J{E 4S.5B(M)}},3v:C(d){q(d)m.8X.21(d);m.8X.2i=\'\'},1w:C(B){q(!m.2S){m.2S=m.1b(\'P\',{1c:\'K-ee K-2t-D\',67:\'\',2n:C(){q(m.1A(m,\'ed\'))m.2b()}},{1n:\'1X\',1z:0},m.29,M)}m.2S.G.1o=\'\';m.2S.67+=\'|\'+B.Q;q(m.5I&&m.ay)m.R(m.2S,{9k:\'7R(\'+m.5p+\'ec.bf)\',1z:1});J m.2u(m.2S,{1z:B.48},m.95)},9H:C(Q){q(!m.2S)E;q(1G Q!=\'1V\')m.2S.67=m.2S.67.2d(\'|\'+Q,\'\');q((1G Q!=\'1V\'&&m.2S.67!=\'\')||(m.2s&&m.43(m.2s,\'48\')))E;q(m.5I&&m.ay)m.2S.G.1o=\'1F\';J m.2u(m.2S,{1z:0},m.95,I,C(){m.2S.G.1o=\'1F\'})},8A:C(78,B){A 1h=B||m.2B();B=1h;q(m.2s)E 1j;J m.1h=1h;m.4R(W,1S.3u?\'7f\':\'7b\',m.5V);1t{m.2s=78;78.2n()}1v(e){m.1h=m.2s=I}1t{q(!78||B.3i[1]!=\'42\')B.2b()}1v(e){}E 1j},6B:C(el,2q){A B=m.2B(el);q(B)E m.8A(B.8J(2q),B);J E 1j},2W:C(el){E m.6B(el,-1)},1C:C(el){E m.6B(el,1)},5V:C(e){q(!e)e=1S.2v;q(!e.2C)e.2C=e.9X;q(1G e.2C.a3!=\'1V\')E M;q(!m.1A(m,\'dR\',e))E M;A B=m.2B();A 2q=I;ba(e.do){28 70:q(B)B.74();E M;28 32:2q=2;5a;28 34:28 39:28 40:2q=1;5a;28 8:28 33:28 37:28 38:2q=-1;5a;28 27:28 13:2q=0}q(2q!==I){m.4R(W,1S.3u?\'7f\':\'7b\',m.5V);q(!m.az)E M;q(e.5g)e.5g();J e.cv=1j;q(B){q(2q==0){B.2b()}J q(2q==2){q(B.1p)B.1p.bi()}J{q(B.1p)B.1p.3r();m.6B(B.Q,2q)}E 1j}}E M},cO:C(11){m.2k(m.1T,m.3s(11,{23:\'23\'+m.61++}))},cQ:C(1r){A 2Z=1r.2N;q(1G 2Z==\'7F\'){O(A i=0;i<2Z.V;i++){A o={};O(A x 3e 1r)o[x]=1r[x];o.2N=2Z[i];m.2k(m.5O,o)}}J{m.2k(m.5O,1r)}},82:C(6A,6P){A el,2o=/^K-U-([0-9]+)$/;el=6A;5o(el.22){q(el.6I!==1V)E el.6I;q(el.1x&&2o.1a(el.1x))E el.1x.2d(2o,"$1");el=el.22}q(!6P){el=6A;5o(el.22){q(el.3O&&m.6U(el)){O(A Q=0;Q<m.16.V;Q++){A B=m.16[Q];q(B&&B.a==el)E Q}}el=el.22}}E I},2B:C(el,6P){q(1G el==\'1V\')E m.16[m.2Y]||I;q(1G el==\'3N\')E m.16[el]||I;q(1G el==\'9p\')el=m.$(el);E m.16[m.82(el,6P)]||I},6U:C(a){E(a.2n&&a.2n.cB().2d(/\\s/g,\' \').31(/m.(cU|e)cT/))},bM:C(){O(A i=0;i<m.16.V;i++)q(m.16[i]&&m.16[i].5i)m.b9()},1A:C(6u,9l,2G){E 6u&&6u[9l]?(6u[9l](6u,2G)!==1j):M},7Z:C(e){q(!e)e=1S.2v;q(e.dn>1)E M;q(!e.2C)e.2C=e.9X;A el=e.2C;5o(el.22&&!(/K-(2R|3A|3w|4g)/.1a(el.1c))){el=el.22}A B=m.2B(el);q(B&&(B.5J||!B.5i))E M;q(B&&e.T==\'7W\'){q(e.2C.a3)E M;A 31=el.1c.31(/K-(2R|3A|4g)/);q(31){m.2w={B:B,T:31[1],18:B.x.H,L:B.x.D,Y:B.y.H,N:B.y.D,b4:e.7r,b3:e.7P};m.2m(W,\'7x\',m.7n);q(e.5g)e.5g();q(/K-(2R|3w)-9K/.1a(B.S.1c)){B.3P();m.9f=M}E 1j}J q(/K-3w/.1a(el.1c)&&m.2Y!=B.Q){B.3P();B.5l(\'1q\')}}J q(e.T==\'bh\'){m.4R(W,\'7x\',m.7n);q(m.2w){q(m.58&&m.2w.T==\'2R\')m.2w.B.S.G.4w=m.58;A 3G=m.2w.3G;q(!3G&&!m.9f&&!/(3A|4g)/.1a(m.2w.T)){q(m.1A(B,\'dg\'))B.2b()}J q(3G||(!3G&&m.bd)){m.2w.B.5l(\'1q\')}q(m.2w.B.3H)m.2w.B.3H.G.1o=\'1F\';q(3G)m.1A(m.2w.B,\'df\',m.2w);m.9f=1j;m.2w=I}J q(/K-2R-9K/.1a(el.1c)){el.G.4w=m.58}}E 1j},7n:C(e){q(!m.2w)E M;q(!e)e=1S.2v;A a=m.2w,B=a.B;q(B.1k){q(!B.3H)B.3H=m.1b(\'P\',I,{1l:\'2l\',L:B.x.D+\'F\',N:B.y.D+\'F\',18:B.x.cb+\'F\',Y:B.y.cb+\'F\',1B:4,9k:(m.1E?\'dc\':\'1F\'),1z:0.dh},B.U,M);q(B.3H.G.1o==\'1F\')B.3H.G.1o=\'\'}a.dX=e.7r-a.b4;a.dY=e.7P-a.b3;A 9x=1i.dl(1i.aX(a.dX,2)+1i.aX(a.dY,2));q(!a.3G)a.3G=(a.T!=\'2R\'&&9x>0)||(9x>(m.db||5));q(a.3G&&e.7r>5&&e.7P>5){q(!m.1A(B,\'d1\',a))E 1j;q(a.T==\'4g\')B.4g(a);J{B.9B(a.18+a.dX,a.Y+a.dY);q(a.T==\'2R\')B.S.G.4w=\'3A\'}}E 1j},aL:C(e){1t{q(!e)e=1S.2v;A 6f=/d0/i.1a(e.T);q(!e.2C)e.2C=e.9X;q(m.1E)e.98=6f?e.cZ:e.d3;A B=m.2B(e.2C);q(!B.5i)E;q(!B||!e.98||m.2B(e.98,M)==B||m.2w)E;m.1A(B,6f?\'d8\':\'d6\',e);O(A i=0;i<B.1T.V;i++)(C(){A o=m.$(\'23\'+B.1T[i]);q(o&&o.7J){q(6f)m.R(o,{1n:\'1X\',1o:\'\'});m.2u(o,{1z:6f?o.1z:0},o.4b)}})()}1v(e){}},2m:C(el,2v,3E){q(el==W&&2v==\'41\'){m.2k(m.7l,3E)}1t{el.2m(2v,3E,1j)}1v(e){1t{el.a9(\'68\'+2v,3E);el.fd(\'68\'+2v,3E)}1v(e){el[\'68\'+2v]=3E}}},4R:C(el,2v,3E){1t{el.4R(2v,3E,1j)}1v(e){1t{el.a9(\'68\'+2v,3E)}1v(e){el[\'68\'+2v]=I}}},7B:C(i){q(m.a0&&m.6s[i]&&m.6s[i]!=\'1V\'){A 1R=W.1b(\'1R\');1R.4L=C(){1R=I;m.7B(i+1)};1R.1e=m.6s[i]}},bu:C(3N){q(3N&&1G 3N!=\'7F\')m.9o=3N;A 26=m.5R();O(A i=0;i<26.5r.V&&i<m.9o;i++){m.2k(m.6s,m.7L(26.5r[i]))}q(m.1Y)1J m.5L(m.1Y,C(){m.7B(0)});J m.7B(0);q(m.5w)A 4X=m.1b(\'1R\',{1e:m.5p+m.5w})},7A:C(){q(!m.29){m.7k();m.5h=m.1E&&m.3f<7;m.bX=m.5h&&8a.fY==\'fT:\';O(A x 3e m.6N){q(1G m[x]!=\'1V\')m.14[x]=m[x];J q(1G m.14[x]==\'1V\'&&1G m.6N[x]!=\'1V\')m.14[x]=m.6N[x]}m.29=m.1b(\'P\',{1c:\'K-29\'},{1l:\'2l\',18:0,Y:0,L:\'2x%\',1B:m.4t,9t:\'ar\'},W.1f,M);m.2r=m.1b(\'a\',{1c:\'K-2r\',2j:m.14.am,2i:m.14.al,24:\'bZ:;\'},{1l:\'2l\',Y:\'-4k\',1z:m.ak,1B:1},m.29);m.8X=m.1b(\'P\',I,{1o:\'1F\'},m.29);m.2t=m.1b(\'P\',{1c:\'K-2t K-2t-D\'},{1n:(m.4H&&m.3f<7O)?\'1X\':\'1q\'},m.29,1);m.3D=m.1b(\'P\',I,{aD:\'aC\',fw:\'fv\'},I,M);1i.fu=C(t,b,c,d){E c*t/d+b};1i.aq=C(t,b,c,d){E c*(t/=d)*t+b};1i.8d=C(t,b,c,d){E-c*(t/=d)*(t-2)+b};m.cG=m.5h;m.cF=((1S.3u&&m.3f<9)||56.aV==\'b0\'||(m.1E&&m.3f<5.5));m.1A(k,\'ft\')}},41:C(){q(m.a4)E;m.a4=M;O(A i=0;i<m.7l.V;i++)m.7l[i]()},93:C(){A el,1m,6w=[],5r=[],5t=[],3h={},2o;O(A i=0;i<m.9U.V;i++){1m=W.2A(m.9U[i]);O(A j=0;j<1m.V;j++){el=1m[j];2o=m.6U(el);q(2o){m.2k(6w,el);q(2o[0]==\'m.2H\')m.2k(5r,el);J q(2o[0]==\'m.9T\')m.2k(5t,el);A g=m.43(el,\'2N\')||\'1F\';q(!3h[g])3h[g]=[];m.2k(3h[g],el)}}}m.4P={6w:6w,3h:3h,5r:5r,5t:5t};E m.4P},5R:C(){E m.4P||m.93()},2b:C(el){A B=m.2B(el);q(B)B.2b();E 1j}};m.fx=C(30,1r,1d){k.1r=1r;k.30=30;k.1d=1d;q(!1r.aH)1r.aH={}};m.fx.5e={9m:C(){(m.fx.3U[k.1d]||m.fx.3U.a7)(k);q(k.1r.3U)k.1r.3U.aj(k.30,k.4i,k)},3y:C(8m,2g,4v){k.8U=(1J 7C()).7D();k.4F=8m;k.54=2g;k.4v=4v;k.4i=k.4F;k.H=k.9r=0;A 7q=k;C t(7v){E 7q.3U(7v)}t.30=k.30;q(t()&&m.44.2k(t)==1){m.ai=fB(C(){A 44=m.44;O(A i=0;i<44.V;i++)q(!44[i]())44.fr(i--,1);q(!44.V){eg(m.ai)}},13)}},3U:C(7v){A t=(1J 7C()).7D();q(7v||t>=k.1r.45+k.8U){k.4i=k.54;k.H=k.9r=1;k.9m();k.1r.7o[k.1d]=M;A 94=M;O(A i 3e k.1r.7o)q(k.1r.7o[i]!==M)94=1j;q(94){q(k.1r.6O)k.1r.6O.aj(k.30)}E 1j}J{A n=t-k.8U;k.9r=n/k.1r.45;k.H=k.1r.2O(n,0,1,k.1r.45);k.4i=k.4F+((k.54-k.4F)*k.H);k.9m()}E M}};m.3s(m.fx,{3U:{1z:C(fx){m.R(fx.30,{1z:fx.4i})},a7:C(fx){1t{q(fx.30.G&&fx.30.G[fx.1d]!=I)fx.30.G[fx.1d]=fx.4i+fx.4v;J fx.30[fx.1d]=fx.4i}1v(e){}}}});m.5L=C(1Y,3z){k.3z=3z;k.1Y=1Y;A v=m.3f,3X;k.9e=m.1E&&v>=5.5&&v<7;q(!1Y){q(3z)3z();E}m.7A();k.2h=m.1b(\'2h\',{fo:0},{1n:\'1q\',1l:\'2l\',fm:\'fE\',L:0},m.29,M);A 4q=m.1b(\'4q\',I,I,k.2h,1);k.2E=[];O(A i=0;i<=8;i++){q(i%3==0)3X=m.1b(\'3X\',I,{N:\'1Q\'},4q,M);k.2E[i]=m.1b(\'2E\',I,I,3X,M);A G=i!=4?{fF:0,fW:0}:{1l:\'4n\'};m.R(k.2E[i],G)}k.2E[4].1c=1Y+\' K-1g\';k.ap()};m.5L.5e={ap:C(){A 1e=m.5p+(m.fU||"fX/")+k.1Y+".bf";A b2=m.4H&&m.3f<7O?m.29:I;k.3L=m.1b(\'1R\',I,{1l:\'2l\',Y:\'-4k\'},b2,M);A 3C=k;k.3L.4L=C(){3C.aY()};k.3L.1e=1e},aY:C(){A o=k.1y=k.3L.L/4,H=[[0,0],[0,-4],[-2,0],[0,-8],0,[-2,-8],[0,-2],[0,-6],[-2,-2]],1w={N:(2*o)+\'F\',L:(2*o)+\'F\'};O(A i=0;i<=8;i++){q(H[i]){q(k.9e){A w=(i==1||i==7)?\'2x%\':k.3L.L+\'F\';A P=m.1b(\'P\',I,{L:\'2x%\',N:\'2x%\',1l:\'4n\',2e:\'1q\'},k.2E[i],M);m.1b(\'P\',I,{60:"fZ:fS.bT.fR(fK=fJ, 1e=\'"+k.3L.1e+"\')",1l:\'2l\',L:w,N:k.3L.N+\'F\',18:(H[i][0]*o)+\'F\',Y:(H[i][1]*o)+\'F\'},P,M)}J{m.R(k.2E[i],{9k:\'7R(\'+k.3L.1e+\') \'+(H[i][0]*o)+\'F \'+(H[i][1]*o)+\'F\'})}q(1S.3u&&(i==3||i==5))m.1b(\'P\',I,1w,k.2E[i],M);m.R(k.2E[i],1w)}}k.3L=I;q(m.4A[k.1Y])m.4A[k.1Y].6q();m.4A[k.1Y]=k;q(k.3z)k.3z()},4G:C(H,1y,at,4b,2O){A B=k.B,5K=B.U.G,1y=1y||0,H=H||{x:B.x.H+1y,y:B.y.H+1y,w:B.x.Z(\'2f\')-2*1y,h:B.y.Z(\'2f\')-2*1y};q(at)k.2h.G.1n=(H.h>=4*k.1y)?\'1X\':\'1q\';m.R(k.2h,{18:(H.x-k.1y)+\'F\',Y:(H.y-k.1y)+\'F\',L:(H.w+2*k.1y)+\'F\'});H.w-=2*k.1y;H.h-=2*k.1y;m.R(k.2E[4],{L:H.w>=0?H.w+\'F\':0,N:H.h>=0?H.h+\'F\':0});q(k.9e)k.2E[3].G.N=k.2E[5].G.N=k.2E[4].G.N},6q:C(be){q(be)k.2h.G.1n=\'1q\';J m.3v(k.2h)}};m.6T=C(B,1w){k.B=B;k.1w=1w;k.3n=1w==\'x\'?\'bH\':\'bI\';k.3l=k.3n.6p();k.5Q=1w==\'x\'?\'bv\':\'bG\';k.7a=k.5Q.6p();k.9q=1w==\'x\'?\'cg\':\'bF\';k.b5=k.9q.6p();k.1H=k.3b=0};m.6T.5e={Z:C(Q){ba(Q){28\'9G\':E k.1L+k.3m+(k.t-m.2r[\'1y\'+k.3n])/2;28\'9I\':E k.H+k.cb+k.1H+(k.D-m.2r[\'1y\'+k.3n])/2;28\'2f\':E k.D+2*k.cb+k.1H+k.3b;28\'5c\':E k.4E-k.3p-k.4D;28\'89\':E k.Z(\'5c\')-2*k.cb-k.1H-k.3b;28\'63\':E k.H-(k.B.1g?k.B.1g.1y:0);28\'83\':E k.Z(\'2f\')+(k.B.1g?2*k.B.1g.1y:0);28\'2I\':E k.1Z?1i.3c((k.D-k.1Z)/2):0}},86:C(){k.cb=(k.B.S[\'1y\'+k.3n]-k.t)/2;k.4D=m[\'97\'+k.9q]},9w:C(){k.t=k.B.el[k.3l]?3M(k.B.el[k.3l]):k.B.el[\'1y\'+k.3n];k.1L=k.B.1L[k.1w];k.3m=(k.B.el[\'1y\'+k.3n]-k.t)/2;q(k.1L==0||k.1L==-1){k.1L=(m.4e[k.3l]/2)+m.4e[\'2a\'+k.5Q]}},87:C(){A B=k.B;k.2Q=\'1Q\';q(B.9n==\'4J\')k.2Q=\'4J\';J q(1J 5s(k.7a).1a(B.4l))k.2Q=I;J q(1J 5s(k.b5).1a(B.4l))k.2Q=\'4x\';k.H=k.1L-k.cb+k.3m;q(k.8W&&k.1w==\'x\')B.6J=1i.3d(B.6J||k.19,B.8W*k.19/B.y.19);k.D=1i.3d(k.19,B[\'4x\'+k.3n]||k.19);k.2L=B.5T?1i.3d(B[\'3d\'+k.3n],k.19):k.19;q(B.2D&&B.3x){k.D=B[k.3l];k.1Z=k.19}q(k.1w==\'x\'&&m.5A)k.2L=B.4B;k.2C=B[\'2C\'+k.1w.aE()];k.3p=m[\'97\'+k.5Q];k.2a=m.4e[\'2a\'+k.5Q];k.4E=m.4e[k.3l]},73:C(i){A B=k.B;q(B.2D&&(B.3x||m.5A)){k.1Z=i;k.D=1i.4x(k.D,k.1Z);B.S.G[k.7a]=k.Z(\'2I\')+\'F\'}J k.D=i;B.S.G[k.3l]=i+\'F\';B.U.G[k.3l]=k.Z(\'2f\')+\'F\';q(B.1g)B.1g.4G();q(B.3H)B.3H.G[k.3l]=i+\'F\';q(k.1w==\'y\'&&B.5U&&B.1f.G.N!=\'1Q\')1t{B.5U.1f.G.2e=\'1Q\'}1v(e){}q(B.2y){A d=B.2p;q(k.9S===1V)k.9S=B.1s[\'1y\'+k.3n]-d[\'1y\'+k.3n];d.G[k.3l]=(k.D-k.9S)+\'F\';q(k.1w==\'x\')B.3V.G.L=\'1Q\';q(B.1f)B.1f.G[k.3l]=\'1Q\'}q(k.1w==\'x\'&&B.1u)B.55(M);q(k.1w==\'x\'&&B.1p&&B.2D){q(i==k.19)B.1p.53(\'19-2H\');J B.1p.4N(\'19-2H\')}},9z:C(i){k.H=i;k.B.U.G[k.7a]=i+\'F\';q(k.B.1g)k.B.1g.4G()}};m.6l=C(a,2c,3y,36){q(W.bW&&m.1E&&!m.a4){m.2m(W,\'41\',C(){1J m.6l(a,2c,3y,36)});E}k.a=a;k.3y=3y;k.36=36||\'2R\';k.2y=(36==\'3w\');k.2D=!k.2y;m.a0=1j;k.1T=[];k.1h=m.1h;m.1h=I;m.7A();A Q=k.Q=m.16.V;O(A i=0;i<m.a1.V;i++){A 2X=m.a1[i];k[2X]=2c&&1G 2c[2X]!=\'1V\'?2c[2X]:m[2X]}q(!k.1e)k.1e=a.24;A el=(2c&&2c.a6)?m.$(2c.a6):a;el=k.aQ=el.2A(\'1R\')[0]||el;k.7m=el.1x||a.1x;q(!m.1A(k,\'eC\'))E M;O(A i=0;i<m.16.V;i++){q(m.16[i]&&m.16[i].a==a&&!(k.1h&&k.3i[1]==\'42\')){m.16[i].3P();E 1j}}q(!m.eA)O(A i=0;i<m.16.V;i++){q(m.16[i]&&m.16[i].aQ!=el&&!m.16[i].6R){m.16[i].7d()}}m.16[Q]=k;q(!m.91&&!m.2s){q(m.16[Q-1])m.16[Q-1].2b();q(1G m.2Y!=\'1V\'&&m.16[m.2Y])m.16[m.2Y].2b()}k.el=el;k.1L=k.aM||m.71(el);m.7k();A x=k.x=1J m.6T(k,\'x\');x.9w();A y=k.y=1J m.6T(k,\'y\');y.9w();q(/5j/i.1a(el.3O))k.ac(el);k.U=m.1b(\'P\',{1x:\'K-U-\'+k.Q,1c:\'K-U \'+k.8Y},{1n:\'1q\',1l:\'2l\',1B:m.4t+=2},I,M);k.U.eD=k.U.eE=m.aL;q(k.36==\'2R\'&&k.3F==2)k.3F=0;q(!k.1Y||(k.1h&&k.2D&&k.3i[1]==\'42\')){k[k.36+\'9y\']()}J q(m.4A[k.1Y]){k.8S();k[k.36+\'9y\']()}J{k.65();A B=k;1J m.5L(k.1Y,C(){B.8S();B[B.36+\'9y\']()})}E M};m.6l.5e={9L:C(e){q(m.eI)eH(\'eF \'+e.eG+\': \'+e.ew);J 1S.8a.24=k.1e},8S:C(){A 1g=k.1g=m.4A[k.1Y];1g.B=k;1g.2h.G.1B=k.U.G.1B-1;m.4A[k.1Y]=I},65:C(){q(k.6R||k.2r)E;k.2r=m.2r;A B=k;k.2r.2n=C(){B.7d()};q(!m.1A(k,\'em\'))E;A B=k,l=k.x.Z(\'9G\')+\'F\',t=k.y.Z(\'9G\')+\'F\';q(!2K&&k.1h&&k.3i[1]==\'42\')A 2K=k.1h;q(2K){l=2K.x.Z(\'9I\')+\'F\';t=2K.y.Z(\'9I\')+\'F\';k.2r.G.1B=m.4t++}47(C(){q(B.2r)m.R(B.2r,{18:l,Y:t,1B:m.4t++})},2x)},ej:C(){A B=k;A 1R=W.1b(\'1R\');k.S=1R;1R.4L=C(){q(m.16[B.Q])B.5Y()};q(m.eh)1R.ei=C(){E 1j};1R.1c=\'K-2R\';m.R(1R,{1n:\'1q\',1o:\'3Q\',1l:\'2l\',6J:\'4k\',1B:3});1R.2j=m.14.9F;q(m.4H&&m.3f<7O)m.29.21(1R);q(m.1E&&m.eo)1R.1e=I;1R.1e=k.1e;k.65()},ep:C(){q(!m.1A(k,\'eu\'))E;k.S=m.8c(k.a);q(!k.S)k.S=m.4o(k.7X);q(!k.S)k.S=m.7Y();k.9V([\'72\']);q(k.72){A 1f=m.4K(k.S,\'P\',\'K-1f\');q(1f)1f.21(k.72);k.72.G.1o=\'3Q\'}m.1A(k,\'et\');A 1s=k.1s=k.S;q(/(3t|1k)/.1a(k.2F))k.8r(1s);m.29.21(k.U);m.R(k.U,{1l:\'es\',8O:\'0 \'+m.9h+\'F 0 \'+m.4y+\'F\'});k.S=m.1b(\'P\',{1c:\'K-3w\'},{1l:\'4n\',1B:3,N:0,2e:\'1q\'},k.U);k.3V=m.1b(\'P\',I,I,k.S,1);k.3V.21(1s);m.R(1s,{1l:\'4n\',1o:\'3Q\',9t:m.14.9s||\'\'});q(k.L)1s.G.L=k.L+\'F\';q(k.N)m.R(1s,{N:k.N+\'F\',2e:\'1q\'});q(1s.1N<k.4B)1s.G.L=k.4B+\'F\';q(k.2F==\'2U\'&&!m.8c(k.a)){k.65();A B=k;A 2U=1J m.7E(k.a,1s);2U.1e=k.1e;2U.3z=C(){q(m.16[B.Q])B.5Y()};2U.9a=C(){8a.24=B.1e};2U.9C()}J q(k.2F==\'1k\'&&k.3J==\'5D\'){k.6L()}J k.5Y()},5Y:C(){1t{q(!k.S)E;k.S.4L=I;q(k.6R)E;J k.6R=M;A x=k.x,y=k.y;q(k.2r){m.R(k.2r,{Y:\'-4k\'});k.2r=I;m.1A(k,\'ch\')}q(k.2D){x.19=k.S.L;y.19=k.S.N;m.R(k.S,{L:x.t+\'F\',N:y.t+\'F\'});k.U.21(k.S);m.29.21(k.U)}J q(k.8B)k.8B();x.86();y.86();m.R(k.U,{18:(x.1L+x.3m-x.cb)+\'F\',Y:(y.1L+x.3m-y.cb)+\'F\'});k.90();k.c3();A 2V=x.19/y.19;x.87();k.2Q(x);y.87();k.2Q(y);q(k.2y)k.bc();q(k.1u)k.55(0,1);q(k.5T){q(k.2D)k.cl(2V);J k.7T();A 1P=k.1p;q(1P&&k.1h&&1P.35&&1P.aP){A H=1P.cA.1l||\'\',p;O(A 1w 3e m.88)O(A i=0;i<5;i++){p=k[1w];q(H.31(m.88[1w][i])){p.H=k.1h[1w].H+(k.1h[1w].1H-p.1H)+(k.1h[1w].D-p.D)*[0,0,.5,1,1][i];q(1P.aP==\'eL\'){q(p.H+p.D+p.1H+p.3b>p.2a+p.4E-p.4D)p.H=p.2a+p.4E-p.D-p.3p-p.4D-p.1H-p.3b;q(p.H<p.2a+p.3p)p.H=p.2a+p.3p}}}}q(k.2D&&k.x.19>(k.x.1Z||k.x.D)){k.c0();q(k.1T.V==1)k.55()}}k.8Z()}1v(e){k.9L(e)}},8r:C(5v,1Q){A c=m.4K(5v,\'79\',\'K-1f\');q(/(1k|3t)/.1a(k.2F)){q(k.4f)c.G.L=k.4f+\'F\';q(k.4m)c.G.N=k.4m+\'F\'}},6L:C(){q(k.aw)E;A B=k;k.1f=m.4K(k.1s,\'79\',\'K-1f\');q(k.2F==\'1k\'){k.65();A 5m=m.3D.5B(1);k.1f.21(5m);k.f5=k.1s.1N;q(!k.4f)k.4f=5m.1N;A 5k=k.1s.1U-k.1f.1U,h=k.4m||m.4e.N-5k-m.4T-m.77,4L=k.3J==\'5D\'?\' 4L="q (m.16[\'+k.Q+\']) m.16[\'+k.Q+\'].5Y()" \':\'\';k.1f.2i+=\'<1k 2X="m\'+(1J 7C()).7D()+\'" f1="0" Q="\'+k.Q+\'" \'+\' G="L:\'+k.4f+\'F; N:\'+h+\'F" \'+4L+\' 1e="\'+k.1e+\'" ></1k>\';k.5m=k.1f.2A(\'P\')[0];k.1k=k.1f.2A(\'1k\')[0];q(k.3J==\'5P\')k.7U()}q(k.2F==\'3t\'){k.1f.1x=k.1f.1x||\'m-f6-1x-\'+k.Q;A a=k.8e;q(!a.2c)a.2c={};q(1G a.2c.aG==\'1V\')a.2c.aG=\'f7\';q(96)96.fc(k.1e,k.1f.1x,k.4f,k.4m,a.fb||\'7\',a.fa,a.aF,a.2c,a.ax)}k.aw=M},8B:C(){q(k.1k&&!k.4m){k.1k.G.N=k.1f.G.N=k.8E()+\'F\'}k.1s.21(m.3D);q(!k.x.19)k.x.19=k.1s.1N;k.y.19=k.1s.1U;k.1s.8T(m.3D);q(m.1E&&k.av>3M(k.1s.5H.N)){k.av=3M(k.1s.5H.N)}m.R(k.U,{1l:\'2l\',8O:\'0\'});m.R(k.S,{L:k.x.t+\'F\',N:k.y.t+\'F\'})},8E:C(){A h;1t{A 2z=k.5U=k.1k.9c||k.1k.6i.W;A 3D=2z.1b(\'P\');3D.G.aD=\'aC\';2z.1f.21(3D);h=3D.8K;q(m.1E)h+=3M(2z.1f.5H.4T)+3M(2z.1f.5H.77)-1}1v(e){h=eZ}E h},7U:C(){A 5n=k.1s.1N-k.5m.1N;m.3v(k.5m);q(5n<0)5n=0;A 5k=k.1s.1U-k.1k.1U;q(k.5U&&!k.4m&&!k.N&&k.y.D==k.y.19)1t{k.5U.1f.G.2e=\'1q\'}1v(e){}m.R(k.1k,{L:1i.9D(k.x.D-5n)+\'F\',N:1i.9D(k.y.D-5k)+\'F\'});m.R(k.1f,{L:k.1k.G.L,N:k.1k.G.N});k.4Z=k.1k;k.2p=k.4Z},bc:C(){k.8r(k.1s);q(k.2F==\'3t\'&&k.3J==\'5D\')k.6L();q(k.x.D<k.x.19&&!k.7N)k.x.D=k.x.19;q(k.y.D<k.y.19&&!k.7G)k.y.D=k.y.19;k.2p=k.1s;m.R(k.3V,{1l:\'4n\',L:k.x.D+\'F\'});m.R(k.1s,{8g:\'1F\',L:\'1Q\',N:\'1Q\'});A 1O=m.4K(k.1s,\'79\',\'K-1f\');q(1O&&!/(1k|3t)/.1a(k.2F)){A 5d=1O;1O=m.1b(5d.eP,I,{2e:\'1q\'},I,M);5d.22.eO(1O,5d);1O.21(m.3D);1O.21(5d);A 5n=k.1s.1N-1O.1N;A 5k=k.1s.1U-1O.1U;1O.8T(m.3D);A 7I=m.4H||56.aV==\'b0\'?1:0;m.R(1O,{L:(k.x.D-5n-7I)+\'F\',N:(k.y.D-5k)+\'F\',2e:\'1Q\',1l:\'4n\'});q(7I&&5d.1U>1O.1U){1O.G.L=(3M(1O.G.L)+7I)+\'F\'}k.4Z=1O;k.2p=k.4Z}q(k.1k&&k.3J==\'5D\')k.7U();q(!k.4Z&&k.y.D<k.3V.1U)k.2p=k.S;q(k.2p==k.S&&!k.7N&&!/(1k|3t)/.1a(k.2F)){k.x.D+=17}q(k.2p&&k.2p.1U>k.2p.22.1U){47("1t { m.16["+k.Q+"].2p.G.2e = \'1Q\'; } 1v(e) {}",m.7s)}},ac:C(5j){A c=5j.eU.6z(\',\');O(A i=0;i<c.V;i++)c[i]=3M(c[i]);q(5j.g1.6p()==\'eV\'){k.x.1L+=c[0]-c[2];k.y.1L+=c[1]-c[2];k.x.t=k.y.t=2*c[2]}J{A 5M,5N,5y=5M=c[0],62=5N=c[1];O(A i=0;i<c.V;i++){q(i%2==0){5y=1i.3d(5y,c[i]);5M=1i.4x(5M,c[i])}J{62=1i.3d(62,c[i]);5N=1i.4x(5N,c[i])}}k.x.1L+=5y;k.x.t=5M-5y;k.y.1L+=62;k.y.t=5N-62}},2Q:C(p,5f){A 4M,2K=p.2C,1w=p==k.x?\'x\':\'y\';q(2K&&2K.31(/ /)){4M=2K.6z(\' \');2K=4M[0]}q(2K&&m.$(2K)){p.H=m.71(m.$(2K))[1w];q(4M&&4M[1]&&4M[1].31(/^[-]?[0-9]+F$/))p.H+=3M(4M[1]);q(p.D<p.2L)p.D=p.2L}J q(p.2Q==\'1Q\'||p.2Q==\'4J\'){A 8b=1j;A 52=p.B.5T;q(p.2Q==\'4J\')p.H=1i.3c(p.2a+(p.4E+p.3p-p.4D-p.Z(\'2f\'))/2);J p.H=1i.3c(p.H-((p.Z(\'2f\')-p.t)/2));q(p.H<p.2a+p.3p){p.H=p.2a+p.3p;8b=M}q(!5f&&p.D<p.2L){p.D=p.2L;52=1j}q(p.H+p.Z(\'2f\')>p.2a+p.4E-p.4D){q(!5f&&8b&&52){p.D=1i.3d(p.D,p.Z(1w==\'y\'?\'5c\':\'89\'))}J q(p.Z(\'2f\')<p.Z(\'5c\')){p.H=p.2a+p.4E-p.4D-p.Z(\'2f\')}J{p.H=p.2a+p.3p;q(!5f&&52)p.D=p.Z(1w==\'y\'?\'5c\':\'89\')}}q(!5f&&p.D<p.2L){p.D=p.2L;52=1j}}J q(p.2Q==\'4x\'){p.H=1i.eW(p.H-p.D+p.t)}q(p.H<p.3p){A co=p.H;p.H=p.3p;q(52&&!5f)p.D=p.D-(p.H-co)}},cl:C(2V){A x=k.x,y=k.y,3K=1j,3a=1i.3d(x.19,x.D),4c=1i.3d(y.19,y.D),3x=(k.3x||m.5A);q(3a/4c>2V){ 3a=4c*2V;q(3a<x.2L){3a=x.2L;4c=3a/2V}3K=M}J q(3a/4c<2V){ 4c=3a/2V;3K=M}q(m.5A&&x.19<x.2L){x.1Z=x.19;y.D=y.1Z=y.19}J q(k.3x){x.1Z=3a;y.1Z=4c}J{x.D=3a;y.D=4c}3K=k.7T(k.3x?I:2V,3K);q(3x&&y.D<y.1Z){y.1Z=y.D;x.1Z=y.D*2V}q(3K||3x){x.H=x.1L-x.cb+x.3m;x.2L=x.D;k.2Q(x,M);y.H=y.1L-y.cb+y.3m;y.2L=y.D;k.2Q(y,M);q(k.1u)k.55()}},7T:C(2V,3K){A x=k.x,y=k.y;q(k.1u&&(k.2D||k.7G)){5o(y.D>k.5G&&x.D>k.4B&&y.Z(\'2f\')>y.Z(\'5c\')){y.D-=10;q(2V)x.D=y.D*2V;k.55(0,1);3K=M}}E 3K},eT:C(){q(k.2p){A h=/1k/i.1a(k.2p.3O)?(k.8E()+1)+\'F\':\'1Q\';q(k.1f)k.1f.G.N=h;k.2p.G.N=h;k.y.73(k.1s.1U)}},8Z:C(){A x=k.x,y=k.y;k.5l(\'1q\');m.1A(k,\'eS\');q(k.1p&&k.1p.2J)k.1p.2J.4W();k.9Z(1,{U:{L:x.Z(\'2f\'),N:y.Z(\'2f\'),18:x.H,Y:y.H},S:{18:x.1H+x.Z(\'2I\'),Y:y.1H+y.Z(\'2I\'),L:x.1Z||x.D,N:y.1Z||y.D}},m.7s)},9Z:C(1I,2g,4b){A 5x=k.3i,8G=1I?(k.1h?k.1h.a:I):m.2s,t=(5x[1]&&8G&&m.43(8G,\'3i\')[1]==5x[1])?5x[1]:5x[0];q(k[t]&&t!=\'2H\'){k[t](1I,2g);E}q(k.1g&&!k.3F){q(1I)k.1g.4G();J k.1g.6q((k.2y&&k.4z))}q(!1I)k.7H();A B=k,x=B.x,y=B.y,2O=k.2O;q(!1I)2O=k.cw||2O;A 5P=1I?C(){q(B.1g)B.1g.2h.G.1n="1X";47(C(){B.6C()},50)}:C(){B.5z()};q(1I)m.R(k.U,{L:x.t+\'F\',N:y.t+\'F\'});q(1I&&k.2y){m.R(k.U,{18:(x.1L-x.cb+x.3m)+\'F\',Y:(y.1L-y.cb+y.3m)+\'F\'})}q(k.ct){m.R(k.U,{1z:1I?0:1});m.3s(2g.U,{1z:1I})}m.2u(k.U,2g.U,{45:4b,2O:2O,3U:C(3g,2G){q(B.1g&&B.3F&&2G.1d==\'Y\'){A 5C=1I?2G.H:1-2G.H;A H={w:x.t+(x.Z(\'2f\')-x.t)*5C,h:y.t+(y.Z(\'2f\')-y.t)*5C,x:x.1L+(x.H-x.1L)*5C,y:y.1L+(y.H-y.1L)*5C};B.1g.4G(H,0,1)}q(B.2y){q(2G.1d==\'18\')B.3V.G.18=(x.H-3g)+\'F\';q(2G.1d==\'Y\')B.3V.G.Y=(y.H-3g)+\'F\'}}});m.2u(k.S,2g.S,4b,2O,5P);q(1I){k.U.G.1n=\'1X\';k.S.G.1n=\'1X\';q(k.2y)k.1s.G.1n=\'1X\';k.a.1c+=\' K-57-4l\'}},6b:C(1I,2g){k.3F=1j;A B=k,t=1I?m.7s:0;q(1I){m.2u(k.U,2g.U,0);m.R(k.U,{1z:0,1n:\'1X\'});m.2u(k.S,2g.S,0);k.S.G.1n=\'1X\';m.2u(k.U,{1z:1},t,I,C(){B.6C()})}q(k.1g){k.1g.2h.G.1B=k.U.G.1B;A 7z=1I||-1,1y=k.1g.1y,8y=1I?3:1y,8L=1I?1y:3;O(A i=8y;7z*i<=7z*8L;i+=7z,t+=25){(C(){A o=1I?8L-i:8y-i;47(C(){B.1g.4G(0,o,1)},t)})()}}q(1I){}J{47(C(){q(B.1g)B.1g.6q(B.4z);B.7H();m.2u(B.U,{1z:0},m.9Y,I,C(){B.5z()})},t)}},42:C(1I,2g,8m){q(!1I)E;A B=k,1h=k.1h,x=k.x,y=k.y,3k=1h.x,3q=1h.y,U=k.U,S=k.S,1u=k.1u;m.4R(W,\'7x\',m.7n);m.R(S,{L:(x.1Z||x.D)+\'F\',N:(y.1Z||y.D)+\'F\'});q(1u)1u.G.2e=\'1X\';k.1g=1h.1g;q(k.1g)k.1g.B=B;1h.1g=I;A 5u=m.1b(\'P\',{1c:\'K-\'+k.36},{1l:\'2l\',1B:4,2e:\'1q\',1o:\'1F\'});A 8j={cI:1h,cC:k};O(A n 3e 8j){k[n]=8j[n].S.5B(1);m.R(k[n],{1l:\'2l\',8g:0,1n:\'1X\'});5u.21(k[n])}U.21(5u);q(k.2y)m.R(k.3V,{18:0,Y:0});q(1u){1u.1c=\'\';U.21(1u)}5u.G.1o=\'\';1h.S.G.1o=\'1F\';q(m.4H&&m.3f<7O){k.U.G.1n=\'1X\'}m.2u(U,{L:x.D},{45:m.cz,3U:C(3g,2G){A H=2G.H,4C=1-H;A 1d,D={},8v=[\'H\',\'D\',\'1H\',\'3b\'];O(A n 3e 8v){1d=8v[n];D[\'x\'+1d]=1i.3c(4C*3k[1d]+H*x[1d]);D[\'y\'+1d]=1i.3c(4C*3q[1d]+H*y[1d]);D.cq=1i.3c(4C*(3k.1Z||3k.D)+H*(x.1Z||x.D));D.7h=1i.3c(4C*3k.Z(\'2I\')+H*x.Z(\'2I\'));D.cL=1i.3c(4C*(3q.1Z||3q.D)+H*(y.1Z||y.D));D.6E=1i.3c(4C*3q.Z(\'2I\')+H*y.Z(\'2I\'))}q(B.1g)B.1g.4G({x:D.3j,y:D.4u,w:D.5F+D.49+D.8q+2*x.cb,h:D.5Z+D.4a+D.8z+2*y.cb});1h.U.G.eN=\'eM(\'+(D.4u-3q.H)+\'F, \'+(D.5F+D.49+D.8q+D.3j+2*3k.cb-3k.H)+\'F, \'+(D.5Z+D.4a+D.8z+D.4u+2*3q.cb-3q.H)+\'F, \'+(D.3j-3k.H)+\'F)\';m.R(S,{Y:(D.4a+y.Z(\'2I\'))+\'F\',18:(D.49+x.Z(\'2I\'))+\'F\',4T:(y.H-D.4u)+\'F\',4y:(x.H-D.3j)+\'F\'});m.R(U,{Y:D.4u+\'F\',18:D.3j+\'F\',L:(D.49+D.8q+D.5F+2*x.cb)+\'F\',N:(D.4a+D.8z+D.5Z+2*y.cb)+\'F\'});m.R(5u,{L:(D.cq||D.5F)+\'F\',N:(D.cL||D.5Z)+\'F\',18:(D.49+D.7h)+\'F\',Y:(D.4a+D.6E)+\'F\',1n:\'1X\'});m.R(B.cI,{Y:(3q.H-D.4u+3q.1H-D.4a+3q.Z(\'2I\')-D.6E)+\'F\',18:(3k.H-D.3j+3k.1H-D.49+3k.Z(\'2I\')-D.7h)+\'F\'});m.R(B.cC,{1z:H,Y:(y.H-D.4u+y.1H-D.4a+y.Z(\'2I\')-D.6E)+\'F\',18:(x.H-D.3j+x.1H-D.49+x.Z(\'2I\')-D.7h)+\'F\'});q(1u)m.R(1u,{L:D.5F+\'F\',N:D.5Z+\'F\',18:(D.49+x.cb)+\'F\',Y:(D.4a+y.cb)+\'F\'})},6O:C(){U.G.1n=S.G.1n=\'1X\';S.G.1o=\'3Q\';m.3v(5u);B.6C();1h.5z();B.1h=I}})},br:C(o,el){q(!k.1h)E 1j;O(A i=0;i<k.1h.1T.V;i++){A 6M=m.$(\'23\'+k.1h.1T[i]);q(6M&&6M.23==o.23){k.8V();6M.eR=k.Q;m.2k(k.1T,k.1h.1T[i]);E M}}E 1j},6C:C(){k.5i=M;k.3P();q(k.2y&&k.3J==\'5P\')k.6L();q(k.1k){1t{A B=k,2z=k.1k.9c||k.1k.6i.W;m.2m(2z,\'7W\',C(){q(m.2Y!=B.Q)B.3P()})}1v(e){}q(m.1E&&1G k.5J!=\'eQ\')k.1k.G.L=(k.4f-1)+\'F\'}q(k.48)m.1w(k);q(m.2s&&m.2s==k.a)m.2s=I;k.cD();A p=m.4e,8k=m.7u.x+p.6v,8x=m.7u.y+p.69;k.9b=k.x.H<8k&&8k<k.x.H+k.x.Z(\'2f\')&&k.y.H<8x&&8x<k.y.H+k.y.Z(\'2f\');q(k.1u)k.cc();m.1A(k,\'f0\')},cD:C(){A Q=k.Q;A 1Y=k.1Y;1J m.5L(1Y,C(){1t{m.16[Q].cJ()}1v(e){}})},cJ:C(){A 1C=k.8J(1);q(1C&&1C.2n.cB().31(/m\\.2H/))A 1R=m.1b(\'1R\',{1e:m.7L(1C)})},8J:C(2q){A 8M=k.6Q(),as=m.4P.3h[k.2N||\'1F\'];q(as&&!as[8M+2q]&&k.1p&&k.1p.bs){q(2q==1)E as[0];J q(2q==-1)E as[as.V-1]}E(as&&as[8M+2q])||I},6Q:C(){A 26=m.5R().3h[k.2N||\'1F\'];q(26)O(A i=0;i<26.V;i++){q(26[i]==k.a)E i}E I},c1:C(){q(k[k.64]){A 26=m.4P.3h[k.2N||\'1F\'];q(26){A s=m.14.3N.2d(\'%1\',k.6Q()+1).2d(\'%2\',26.V);k[k.64].2i=\'<P 1W="K-3N">\'+s+\'</P>\'+k[k.64].2i}}},90:C(){q(!k.1h){O(A i=0;i<m.5O.V;i++){A 1P=m.5O[i],2Z=1P.2N;q(1G 2Z==\'1V\'||2Z===I||2Z===k.2N)k.1p=1J m.9W(k.Q,1P)}}J{k.1p=k.1h.1p}A 1P=k.1p;q(!1P)E;A Q=1P.4h=k.Q;1P.bp();1P.53(\'19-2H\');q(1P.35){k.4p(m.3s(1P.cA||{},{4I:1P.35,23:\'35\',1B:5}))}q(1P.2J)1P.2J.6K(k);q(!k.1h&&k.4d)1P.3I(M);q(1P.4d){1P.4d=47(C(){m.1C(Q)},(1P.f9||f8))}},7d:C(){m.3v(k.U);m.16[k.Q]=I;q(m.2s==k.a)m.2s=I;m.9H(k.Q);q(k.2r)m.2r.G.18=\'-4k\';m.1A(k,\'ch\')},c8:C(){q(k.5W)E;k.5W=m.1b(\'a\',{24:m.cp,2C:m.cx,1c:\'K-5W\',2i:m.14.cu,2j:m.14.cs});k.4p({4I:k.5W,1l:k.cr||\'Y 18\',23:\'5W\'})},9V:C(8D,cK){O(A i=0;i<8D.V;i++){A T=8D[i],s=I;q(T==\'9M\'&&!m.1A(k,\'f2\'))E;J q(T==\'4U\'&&!m.1A(k,\'f3\'))E;q(!k[T+\'5q\']&&k.7m)k[T+\'5q\']=T+\'-O-\'+k.7m;q(k[T+\'5q\'])k[T]=m.4o(k[T+\'5q\']);q(!k[T]&&!k[T+\'7S\']&&k[T+\'cj\'])1t{s=f4(k[T+\'cj\'])}1v(e){}q(!k[T]&&k[T+\'7S\']){s=k[T+\'7S\']}q(!k[T]&&!s){k[T]=m.4o(k.a[\'ci\'+T+\'5q\']);q(!k[T]){A 1C=k.a.cn;5o(1C&&!m.6U(1C)){q((1J 5s(\'K-\'+T)).1a(1C.1c||I)){q(!1C.1x)k.a[\'ci\'+T+\'5q\']=1C.1x=\'23\'+m.61++;k[T]=m.4o(1C.1x);5a}1C=1C.cn}}}q(!k[T]&&!s&&k.64==T)s=\'\\n\';q(!k[T]&&s)k[T]=m.1b(\'P\',{1c:\'K-\'+T,2i:s});q(cK&&k[T]){A o={1l:(T==\'4U\')?\'5X\':\'7w\'};O(A x 3e k[T+\'cH\'])o[x]=k[T+\'cH\'][x];o.4I=k[T];k.4p(o)}}},5l:C(1n){q(m.cG)k.6W(\'er\',1n);q(m.cF)k.6W(\'eq\',1n);q(m.5I)k.6W(\'*\',1n)},6W:C(3O,1n){A 1m=W.2A(3O);A 1d=3O==\'*\'?\'2e\':\'1n\';O(A i=0;i<1m.V;i++){q(1d==\'1n\'||(W.84.cf(1m[i],"").bB(\'2e\')==\'1Q\'||1m[i].bC(\'1q-by\')!=I)){A 2P=1m[i].bC(\'1q-by\');q(1n==\'1X\'&&2P){2P=2P.2d(\'[\'+k.Q+\']\',\'\');1m[i].5E(\'1q-by\',2P);q(!2P)1m[i].G[1d]=1m[i].9d}J q(1n==\'1q\'){A 3T=m.71(1m[i]);3T.w=1m[i].1N;3T.h=1m[i].1U;q(!k.48){A bz=(3T.x+3T.w<k.x.Z(\'63\')||3T.x>k.x.Z(\'63\')+k.x.Z(\'83\'));A bg=(3T.y+3T.h<k.y.Z(\'63\')||3T.y>k.y.Z(\'63\')+k.y.Z(\'83\'))}A 6Z=m.82(1m[i]);q(!bz&&!bg&&6Z!=k.Q){q(!2P){1m[i].5E(\'1q-by\',\'[\'+k.Q+\']\');1m[i].9d=1m[i].G[1d];1m[i].G[1d]=\'1q\'}J q(2P.bx(\'[\'+k.Q+\']\')==-1){1m[i].5E(\'1q-by\',2P+\'[\'+k.Q+\']\')}}J q((2P==\'[\'+k.Q+\']\'||m.2Y==6Z)&&6Z!=k.Q){1m[i].5E(\'1q-by\',\'\');1m[i].G[1d]=1m[i].9d||\'\'}J q(2P&&2P.bx(\'[\'+k.Q+\']\')>-1){1m[i].5E(\'1q-by\',2P.2d(\'[\'+k.Q+\']\',\'\'))}}}}},3P:C(){k.U.G.1B=m.4t+=2;O(A i=0;i<m.16.V;i++){q(m.16[i]&&i==m.2Y){A 4r=m.16[i];4r.S.1c+=\' K-\'+4r.36+\'-9K\';q(4r.2D){4r.S.G.4w=m.1E?\'bJ\':\'7i\';4r.S.2j=m.14.bD}m.1A(4r,\'ev\')}}q(k.1g)k.1g.2h.G.1B=k.U.G.1B-1;k.S.1c=\'K-\'+k.36;q(k.2D){k.S.2j=m.14.9F;q(m.5w){m.58=1S.3u?\'7i\':\'7R(\'+m.5p+m.5w+\'), 7i\';q(m.1E&&m.3f<6)m.58=\'bJ\';k.S.G.4w=m.58}}m.2Y=k.Q;m.2m(W,1S.3u?\'7f\':\'7b\',m.5V);m.1A(k,\'ey\')},9B:C(x,y){k.x.9z(x);k.y.9z(y)},4g:C(e){A w,h,r=e.L/e.N;w=1i.4x(e.L+e.dX,1i.3d(k.4B,k.x.19));q(k.2D&&1i.9D(w-k.x.19)<12)w=k.x.19;h=k.2y?e.N+e.dY:w/r;q(h<1i.3d(k.5G,k.y.19)){h=1i.3d(k.5G,k.y.19);q(k.2D)w=h*r}k.9P(w,h)},9P:C(w,h){k.y.73(h);k.x.73(w);k.U.G.N=k.y.Z(\'2f\')+\'F\'},2b:C(){q(k.5J||!k.5i)E;q(k.3i[1]==\'42\'&&m.2s){m.2B(m.2s).7d();m.2s=I}q(!m.1A(k,\'fe\'))E;k.5J=M;q(k.1p&&!m.2s)k.1p.3r();m.4R(W,1S.3u?\'7f\':\'7b\',m.5V);1t{q(k.2y)k.bj();k.S.G.4w=\'fp\';k.9Z(0,{U:{L:k.x.t,N:k.y.t,18:k.x.1L-k.x.cb+k.x.3m,Y:k.y.1L-k.y.cb+k.y.3m},S:{18:0,Y:0,L:k.x.t,N:k.y.t}},m.9Y)}1v(e){k.5z()}},bj:C(){q(m.5I){q(!m.66)m.66=m.1b(\'P\',I,{1l:\'2l\'},m.29);m.R(m.66,{L:k.x.D+\'F\',N:k.y.D+\'F\',18:k.x.H+\'F\',Y:k.y.H+\'F\',1o:\'3Q\'})}q(k.2F==\'3t\')1t{m.$(k.1f.1x).fO()}1v(e){}q(k.3J==\'5P\'&&!k.4z)k.bn();q(k.2p&&k.2p!=k.4Z)k.2p.G.2e=\'1q\'},bn:C(){q(m.1E&&k.1k)1t{k.1k.6i.W.1f.2i=\'\'}1v(e){}q(k.2F==\'3t\')96.fP(k.1f.1x);k.1f.2i=\'\'},bO:C(){q(k.1g)k.1g.2h.G.1o=\'1F\';k.3H=I;k.U.G.1o=\'1F\';k.5i=1j;m.2k(m.4s,k)},bt:C(){1t{m.16[k.Q]=k;q(!m.91&&m.2Y!=k.Q){1t{m.16[m.2Y].2b()}1v(e){}}A z=m.4t++,5K={1o:\'\',1B:z};m.R(k.U,5K);k.5J=1j;A o=k.1g||0;q(o){q(!k.3F)5K.1n=\'1q\';m.R(o.2h,5K)}q(k.1p){k.90()}k.8Z()}1v(e){}},4p:C(o){A el=o.4I,4Y=(o.bq==\'2t\'&&!/7K$/.1a(o.1l));q(1G el==\'9p\')el=m.4o(el);q(o.3w)el=m.1b(\'P\',{2i:o.3w});q(!el||1G el==\'9p\')E;q(!m.1A(k,\'fM\',{11:el}))E;el.G.1o=\'3Q\';o.23=o.23||o.4I;q(k.3i[1]==\'42\'&&k.br(o,el))E;k.8V();A L=o.L&&/^[0-9]+(F|%)$/.1a(o.L)?o.L:\'1Q\';q(/^(18|3o)7K$/.1a(o.1l)&&!/^[0-9]+F$/.1a(o.L))L=\'fG\';A 11=m.1b(\'P\',{1x:\'23\'+m.61++,23:o.23},{1l:\'2l\',1n:\'1q\',L:L,9t:m.14.9s||\'\',1z:0},4Y?m.2t:k.1u,M);q(4Y)11.6I=k.Q;11.21(el);m.3s(11,{1z:1,bK:0,bL:0,4b:(o.6b===0||o.6b===1j||(o.6b==2&&m.1E))?0:5S});m.3s(11,o);q(k.ce){k.6e(11);q(!11.7J||k.9b)m.2u(11,{1z:11.1z},11.4b)}m.2k(k.1T,m.61-1)},6e:C(11){A p=11.1l||\'9i 4J\',4Y=(11.bq==\'2t\'),6D=11.bK,6H=11.bL;q(4Y){m.2t.G.1o=\'3Q\';11.6I=k.Q;q(11.1N>11.22.1N)11.G.L=\'2x%\'}J q(11.22!=k.1u)k.1u.21(11);q(/18$/.1a(p))11.G.18=6D+\'F\';q(/4J$/.1a(p))m.R(11,{18:\'50%\',4y:(6D-1i.3c(11.1N/2))+\'F\'});q(/3o$/.1a(p))11.G.3o=-6D+\'F\';q(/^c5$/.1a(p)){m.R(11,{3o:\'2x%\',9h:k.x.cb+\'F\',Y:-k.y.cb+\'F\',4j:-k.y.cb+\'F\',2e:\'1Q\'});k.x.1H=11.1N}J q(/^c6$/.1a(p)){m.R(11,{18:\'2x%\',4y:k.x.cb+\'F\',Y:-k.y.cb+\'F\',4j:-k.y.cb+\'F\',2e:\'1Q\'});k.x.3b=11.1N}A 9j=11.22.1U;11.G.N=\'1Q\';q(4Y&&11.1U>9j)11.G.N=m.5h?9j+\'F\':\'2x%\';q(/^Y/.1a(p))11.G.Y=6H+\'F\';q(/^9i/.1a(p))m.R(11,{Y:\'50%\',4T:(6H-1i.3c(11.1U/2))+\'F\'});q(/^4j/.1a(p))11.G.4j=-6H+\'F\';q(/^5X$/.1a(p)){m.R(11,{18:(-k.x.1H-k.x.cb)+\'F\',3o:(-k.x.3b-k.x.cb)+\'F\',4j:\'2x%\',77:k.y.cb+\'F\',L:\'1Q\'});k.y.1H=11.1U}J q(/^7w$/.1a(p)){m.R(11,{1l:\'4n\',18:(-k.x.1H-k.x.cb)+\'F\',3o:(-k.x.3b-k.x.cb)+\'F\',Y:\'2x%\',4T:k.y.cb+\'F\',L:\'1Q\'});k.y.3b=11.1U;11.G.1l=\'2l\'}},c3:C(){k.9V([\'4U\',\'9M\'],M);k.c1();q(k.9M)m.1A(k,\'g2\');q(k.4U)m.1A(k,\'fV\');q(k.4U&&k.9N)k.4U.1c+=\' K-3A\';q(m.c2)k.c8();O(A i=0;i<m.1T.V;i++){A o=m.1T[i],7p=o.a6,2Z=o.2N;q((!7p&&!2Z)||(7p&&7p==k.7m)||(2Z&&2Z===k.2N)){q(k.2D||(k.2y&&o.fk))k.4p(o)}}A 7y=[];O(A i=0;i<k.1T.V;i++){A o=m.$(\'23\'+k.1T[i]);q(/7K$/.1a(o.1l))k.6e(o);J m.2k(7y,o)}O(A i=0;i<7y.V;i++)k.6e(7y[i]);k.ce=M},8V:C(){q(!k.1u)k.1u=m.1b(\'P\',{1c:k.8Y},{1l:\'2l\',L:(k.x.D||(k.3x?k.L:I)||k.x.19)+\'F\',N:(k.y.D||k.y.19)+\'F\',1n:\'1q\',2e:\'1q\',1B:m.1E?4:\'1Q\'},m.29,M)},55:C(9g,cd){A 1u=k.1u,x=k.x,y=k.y;m.R(1u,{L:x.D+\'F\',N:y.D+\'F\'});q(9g||cd){O(A i=0;i<k.1T.V;i++){A o=m.$(\'23\'+k.1T[i]);A 9u=(m.5h||W.7t==\'8I\');q(o&&/^(5X|7w)$/.1a(o.1l)){q(9u){o.G.L=(1u.1N+2*x.cb+x.1H+x.3b)+\'F\'}y[o.1l==\'5X\'?\'1H\':\'3b\']=o.1U}q(o&&9u&&/^(18|3o)7K$/.1a(o.1l)){o.G.N=(1u.1U+2*y.cb)+\'F\'}}}q(9g){m.R(k.S,{Y:y.1H+\'F\'});m.R(1u,{Y:(y.1H+y.cb)+\'F\'})}},cc:C(){A b=k.1u;b.1c=\'\';m.R(b,{Y:(k.y.1H+k.y.cb)+\'F\',18:(k.x.1H+k.x.cb)+\'F\',2e:\'1X\'});q(m.4H)b.G.1n=\'1X\';k.U.21(b);O(A i=0;i<k.1T.V;i++){A o=m.$(\'23\'+k.1T[i]);o.G.1B=o.1B||4;q(!o.7J||k.9b){o.G.1n=\'1X\';m.R(o,{1n:\'1X\',1o:\'\'});m.2u(o,{1z:o.1z},o.4b)}}},7H:C(){q(!k.1T.V)E;q(k.1p){A c=k.1p.35;q(c&&m.2B(c)==k)c.22.8T(c)}O(A i=0;i<k.1T.V;i++){A o=m.$(\'23\'+k.1T[i]);q(o&&o.22==m.2t&&m.2B(o)==k)m.3v(o)}q(k.2y&&k.4z){k.1u.G.Y=\'-4k\';m.29.21(k.1u)}J m.3v(k.1u)},c0:C(){q(k.1p&&k.1p.35){k.1p.4N(\'19-2H\');E}k.7j=m.1b(\'a\',{24:\'bZ:m.16[\'+k.Q+\'].74();\',2j:m.14.9v,1c:\'K-19-2H\'});q(!m.1A(k,\'fi\'))E;k.4p({4I:k.7j,1l:m.bR,7J:M,1z:m.bP})},74:C(){1t{q(!m.1A(k,\'fC\'))E;q(k.7j)m.3v(k.7j);k.3P();A 3a=k.x.D;k.9P(k.x.19,k.y.19);A 3j=k.x.H-(k.x.D-3a)/2;q(3j<m.4y)3j=m.4y;k.9B(3j,k.y.H);k.5l(\'1q\')}1v(e){k.9L(e)}},5z:C(){k.a.1c=k.a.1c.2d(\'K-57-4l\',\'\');k.5l(\'1X\');q(k.2y&&k.4z&&k.3i[1]!=\'42\'){k.bO()}J{q(k.1g&&k.3F)k.1g.6q();m.3v(k.U)}q(m.66)m.66.G.1o=\'1F\';k.7H();q(!m.2t.7Q.V)m.2t.G.1o=\'1F\';q(k.48)m.9H(k.Q);m.1A(k,\'fD\');m.16[k.Q]=I;m.bM()}};m.7E=C(a,S,6G){k.a=a;k.S=S;k.6G=6G};m.7E.5e={9C:C(){A 2T;q(!k.1e)k.1e=m.7L(k.a);q(k.1e.31(\'#\')){A 26=k.1e.6z(\'#\');k.1e=26[0];k.1x=26[1]}q(m.6F[k.1e]){k.bN=m.6F[k.1e];q(k.1x)k.9O();J k.6h();E}1t{2T=1J bU()}1v(e){1t{2T=1J bS("fz.bY")}1v(e){1t{2T=1J bS("bT.bY")}1v(e){k.9a()}}}A 3C=k;2T.fs=C(){q(3C.2T.bW==4){q(3C.1x)3C.9O();J 3C.6h()}};A 1e=k.1e;k.2T=2T;q(m.fA)1e=1e.2d(/$/,(/\\?/.1a(1e)?\'&\':\'?\')+\'fl=\'+(1J 7C()).7D());2T.c7(\'fn\',1e,M);2T.bV(\'X-g0-fI\',\'bU\');2T.bV(\'fL-dx\',\'d9/x-d4-a3-cY\');2T.d2(I)},9O:C(){m.7A();A 46=1S.3u||m.bX?{1e:\'dk:dm\'}:I;k.1k=m.1b(\'1k\',46,{1l:\'2l\',Y:\'-4k\'},m.29);k.6h()},6h:C(){A s=k.bN||k.2T.cX,7g;q(k.6G)m.6F[k.1e]=s;q(!m.1E||m.3f>=5.5){s=s.2d(1J 5s(\'<cM[^>]*>\',\'c9\'),\'\').2d(1J 5s(\'<bQ[^>]*>.*?</bQ>\',\'c9\'),\'\');q(k.1k){A 2z=k.1k.9c;q(!2z&&k.1k.6i)2z=k.1k.6i.W;q(!2z){A 3C=k;47(C(){3C.6h()},25);E}2z.c7();2z.cN(s);2z.2b();1t{s=2z.92(k.1x).2i}1v(e){1t{s=k.1k.W.92(k.1x).2i}1v(e){}}m.3v(k.1k)}J{7g=/(<1f[^>]*>|<\\/1f>)/de;q(7g.1a(s))s=s.6z(7g)[m.1E?1:2]}}m.4K(k.S,\'79\',\'K-1f\').2i=s;k.3z();O(A x 3e k)k[x]=I}};m.9W=C(4h,1r){q(m.dT!==1j)m.93();k.4h=4h;O(A x 3e 1r)k[x]=1r[x];q(k.e2)k.c4();q(k.2J)k.2J=m.bm(k)};m.9W.5e={c4:C(){k.35=m.1b(\'P\',{2i:m.9Q(m.9R.35)},I,m.29);A 6a=[\'3I\',\'3r\',\'2W\',\'1C\',\'3A\',\'19-2H\',\'2b\'];k.1M={};A 3C=k;O(A i=0;i<6a.V;i++){k.1M[6a[i]]=m.4K(k.35,\'1K\',\'K-\'+6a[i]);k.4N(6a[i])}k.1M.3r.G.1o=\'1F\'},bp:C(){q(k.bs||!k.35)E;A B=m.16[k.4h],4X=B.6Q(),2o=/7e$/;q(4X==0)k.53(\'2W\');J q(2o.1a(k.1M.2W.2A(\'a\')[0].1c))k.4N(\'2W\');q(4X+1==m.4P.3h[B.2N||\'1F\'].V){k.53(\'1C\');k.53(\'3I\')}J q(2o.1a(k.1M.1C.2A(\'a\')[0].1c)){k.4N(\'1C\');k.4N(\'3I\')}},4N:C(1M){q(!k.1M)E;A bo=k,a=k.1M[1M].2A(\'a\')[0],2o=/7e$/;a.2n=C(){bo[1M]();E 1j};q(2o.1a(a.1c))a.1c=a.1c.2d(2o,\'\')},53:C(1M){q(!k.1M)E;A a=k.1M[1M].2A(\'a\')[0];a.2n=C(){E 1j};q(!/7e$/.1a(a.1c))a.1c+=\' 7e\'},bi:C(){q(k.4d)k.3r();J k.3I()},3I:C(bk){q(k.1M){k.1M.3I.G.1o=\'1F\';k.1M.3r.G.1o=\'\'}k.4d=M;q(!bk)m.1C(k.4h)},3r:C(){q(k.1M){k.1M.3r.G.1o=\'1F\';k.1M.3I.G.1o=\'\'}e7(k.4d);k.4d=I},2W:C(){k.3r();m.2W(k.1M.2W)},1C:C(){k.3r();m.1C(k.1M.1C)},3A:C(){},\'19-2H\':C(){m.2B().74()},2b:C(){m.2b(k.1M.2b)}};m.bm=C(1p){C 6K(B){m.3s(1r||{},{4I:4Q,23:\'2J\',1c:\'K-2J-\'+51+\'-11 \'+(1r.1c||\'\')});q(m.5h)1r.6b=0;B.4p(1r);m.R(4Q.22,{2e:\'1q\'})};C 2a(3S){4W(1V,1i.3c(3S*4Q[3R?\'1N\':\'1U\']*0.7))};C 4W(i,9J){q(i===1V)O(A j=0;j<6x.V;j++){q(6x[j]==m.16[1p.4h].a){i=j;5a}}q(i===1V)E;A as=4Q.2A(\'a\'),57=as[i],3Y=57.22,18=3R?\'bv\':\'bG\',3o=3R?\'cg\':\'bF\',L=3R?\'bH\':\'bI\',4O=\'1y\'+18,1N=\'1y\'+L,6Y=P.22.22[1N],4V=6Y-2h[1N],6n=3M(2h.G[3R?\'18\':\'Y\'])||0,2M=6n,dz=20;q(9J!==1V){2M=6n-9J;q(4V>0)4V=0;q(2M>0)2M=0;q(2M<4V)2M=4V}J{O(A j=0;j<as.V;j++)as[j].1c=\'\';57.1c=\'K-57-4l\';A 85=i>0?as[i-1].22[4O]:3Y[4O],80=3Y[4O]+3Y[1N]+(as[i+1]?as[i+1].22[1N]:0);q(80>6Y-6n)2M=6Y-80;J q(85<-6n)2M=-85}A 7V=3Y[4O]+(3Y[1N]-76[1N])/2+2M;m.2u(2h,3R?{18:2M}:{Y:2M},I,\'8d\');m.2u(76,3R?{18:7V}:{Y:7V},I,\'8d\');8P.G.1o=2M<0?\'3Q\':\'1F\';8N.G.1o=(2M>4V)?\'3Q\':\'1F\'};A 6x=m.4P.3h[m.16[1p.4h].2N||\'1F\'],1r=1p.2J,51=1r.51||\'bE\',8H=(51==\'dr\'),3Z=8H?[\'P\',\'6c\',\'1K\',\'1D\']:[\'2h\',\'4q\',\'3X\',\'2E\'],3R=(51==\'bE\'),4Q=m.1b(\'P\',{1c:\'K-2J K-2J-\'+51,2i:\'<P 1W="K-2J-dJ">\'+\'<\'+3Z[0]+\'><\'+3Z[1]+\'></\'+3Z[1]+\'></\'+3Z[0]+\'></P>\'+\'<P 1W="K-2a-1I"><P></P></P>\'+\'<P 1W="K-2a-dI"><P></P></P>\'+\'<P 1W="K-76"><P></P></P>\'},{1o:\'1F\'},m.29),6t=4Q.7Q,P=6t[0],8P=6t[1],8N=6t[2],76=6t[3],2h=P.dH,4q=4Q.2A(3Z[1])[0],3X;O(A i=0;i<6x.V;i++){q(i==0||!3R)3X=m.1b(3Z[2],I,I,4q);(C(){A a=6x[i],3Y=m.1b(3Z[3],I,I,3X),dC=i;m.1b(\'a\',{24:a.24,2n:C(){m.2B(k).3P();E m.8A(a)},2i:m.bA?m.bA(a):a.2i},I,3Y)})()}q(!8H){8P.2n=C(){2a(-1)};8N.2n=C(){2a(1)};m.2m(4q,W.dG!==1V?\'dF\':\'ds\',C(e){A 3S=0;e=e||1S.2v;q(e.cy){3S=e.cy/e6;q(m.3u)3S=-3S}J q(e.cE){3S=-e.cE/3}q(3S)2a(-3S*0.2);q(e.5g)e.5g();e.cv=1j})}E{6K:6K,4W:4W}};m.6N=m.14;A dd=m.6l;q(m.1E&&1S==1S.Y){(C(){1t{W.59.di(\'18\')}1v(e){47(ck.dj,50);E}m.41()})()}m.2m(W,\'d7\',m.41);m.2m(1S,\'81\',m.41);m.2m(W,\'41\',C(){q(m.7M||m.48){A G=m.1b(\'G\',{T:\'d5/8p\'},I,W.2A(\'da\')[0]);C 6o(8u,8o){q(!m.1E){G.21(W.cS(8u+" {"+8o+"}"))}J{A 1h=W.cm[W.cm.V-1];q(1G(1h.6o)=="7F")1h.6o(8u,8o)}}C 6g(1d){E\'dP( ( ( dq = W.59.\'+1d+\' ? W.59.\'+1d+\' : W.1f.\'+1d+\' ) ) + \\\'F\\\' );\'}q(m.7M)6o(\'.K 1R\',\'4w: 7R(\'+m.5p+m.7M+\'), 7i !ef;\');6o(\'.K-2t-D\',m.1E&&(m.3f<7||W.7t==\'8I\')?\'1l: 2l; \'+\'18:\'+6g(\'6v\')+\'Y:\'+6g(\'69\')+\'L:\'+6g(\'8F\')+\'N:\'+6g(\'ca\'):\'1l: fg; L: 2x%; N: 2x%; 18: 0; Y: 0\')}});m.2m(1S,\'4g\',C(){m.7k();q(m.2t)O(A i=0;i<m.2t.7Q.V;i++){A 1O=m.2t.7Q[i],B=m.2B(1O);B.6e(1O);q(1O.23==\'2J\')B.1p.2J.4W()}});m.2m(W,\'7x\',C(e){m.7u={x:e.7r,y:e.7P}});m.2m(W,\'7W\',m.7Z);m.2m(W,\'bh\',m.7Z);m.2m(W,\'41\',m.bl);m.2m(1S,\'81\',m.bu);m.2m(1S,\'81\',m.bw)}',62,996,'||||||||||||||||||||this||hs||||if||||||||||var|exp|function|size|return|px|style|pos|null|else|highslide|width|true|height|for|div|key|setStyles|content|type|wrapper|length|document||top|get||overlay|||lang||expanders||left|full|test|createElement|className|prop|src|body|outline|last|Math|false|iframe|position|els|visibility|display|slideshow|hidden|options|innerContent|try|overlayBox|catch|dim|id|offset|opacity|fireEvent|zIndex|next|span|ie|none|typeof|p1|up|new|li|tpos|btn|offsetWidth|node|ss|auto|img|window|overlays|offsetHeight|undefined|class|visible|outlineType|imgSize||appendChild|parentNode|hsId|href||arr||case|container|scroll|close|params|replace|overflow|wsize|to|table|innerHTML|title|push|absolute|addEventListener|onclick|re|scrollerDiv|op|loading|upcoming|viewport|animate|event|dragArgs|100|isHtml|doc|getElementsByTagName|getExpander|target|isImage|td|objectType|args|expand|imgPad|thumbstrip|tgt|minSize|tblPos|slideshowGroup|easing|hiddenBy|justify|image|dimmer|xhr|ajax|ratio|previous|name|focusKey|sg|elem|match||||controls|contentType||||xSize|p2|round|min|in|uaVersion|val|groups|transitions|xpos|lastX|wh|tb|ucwh|right|marginMin|lastY|pause|extend|swf|opera|discardElement|html|useBox|custom|onLoad|move|opt|pThis|clearing|func|outlineWhileAnimating|hasDragged|releaseMask|play|objectLoadTime|changed|graphic|parseInt|number|tagName|focus|block|isX|delta|elPos|step|mediumContent|styles|tr|cell|tree||ready|crossfade|getParam|timers|duration|attribs|setTimeout|dimmingOpacity|xp1|yp1|dur|ySize|autoplay|page|objectWidth|resize|expKey|now|bottom|9999px|anchor|objectHeight|relative|getNode|createOverlay|tbody|blurExp|sleeping|zIndexCounter|ypos|unit|cursor|max|marginLeft|preserveContent|pendingOutlines|minWidth|invPos|marginMax|clientSize|start|setPosition|safari|overlayId|center|getElementByClass|onload|tgtArr|enable|offsetLeft|anchors|dom|removeEventListener|clone|marginTop|heading|minTblPos|selectThumb|cur|relToVP|scrollingContent||mode|allowReduce|disable|end|sizeOverlayBox|navigator|active|styleRestoreCursor|documentElement|break|cacheBindings|fitsize|cNode|prototype|moveOnly|preventDefault|ieLt7|isExpanded|area|hDiff|doShowHide|ruler|wDiff|while|graphicsDir|Id|images|RegExp|htmls|fadeBox|parent|restoreCursor|trans|minX|afterClose|padToMinWidth|cloneNode|fac|before|setAttribute|xsize|minHeight|currentStyle|geckoMac|isClosing|stl|Outline|maxX|maxY|slideshows|after|uclt|getAnchors|250|allowSizeReduction|iDoc|keyHandler|credits|above|contentLoaded|ysize|filter|idCounter|minY|opos|numberPosition|showLoading|mask|owner|on|scrollTop|buttons|fade|ul|getParams|positionOverlay|over|fix|loadHTML|contentWindow|param|iebody|Expander|matches|curTblPos|addRule|toLowerCase|destroy|cache|preloadTheseImages|domCh|obj|scrollLeft|all|group|userAgent|split|element|previousOrNext|afterExpand|offX|yimgPad|cachedGets|pre|offY|hsKey|maxWidth|add|writeExtendedContent|oDiv|langDefaults|complete|expOnly|getAnchorIndex|onLoadStarted|preloadTheseAjax|Dimension|isHsAnchor|imgs|showHideElements|rel|overlayWidth|wrapperKey||getPosition|maincontent|setSize|doFullExpand||marker|marginBottom|adj|DIV|lt|keydown|topmostKey|cancelLoading|disabled|keypress|regBody|ximgPad|pointer|fullExpandLabel|getPageSize|onReady|thumbsUserSetId|dragHandler|curAnim|tId|self|clientX|expandDuration|compatMode|mouse|gotoEnd|below|mousemove|os|dir|init|preloadFullImage|Date|getTime|Ajax|object|allowHeightReduction|destroyOverlays|kdeBugCorr|hideOnMouseOut|panel|getSrc|expandCursor|allowWidthReduction|525|clientY|childNodes|url|Text|fitOverlayBox|correctIframeSize|markerPos|mousedown|contentId|getSelfRendered|mouseClickHandler|activeRight|load|getWrapperKey|osize|defaultView|activeLeft|calcBorders|calcExpanded|oPos|maxsize|location|hasMovedMin|getCacheBinding|easeOutQuad|swfOptions|moveText|border|moveTitle|closeTitle|names|mX|closeText|from|nextText|dec|css|xp2|setObjContainerSize|previousTitle|previousText|sel|props|nextTitle|mY|startOff|yp2|transit|htmlGetSize|parseFloat|types|getIframePageHeight|clientWidth|other|floatMode|BackCompat|getAdjacentAnchor|offsetTop|endOff|current|scrollDown|padding|scrollUp|arrow|Click|connectOutline|removeChild|startTime|genOverlayBox|maxHeight|garbageBin|wrapperClassName|show|initSlideshow|allowMultipleInstances|getElementById|updateAnchors|done|dimmingDuration|swfobject|margin|relatedTarget||onError|mouseIsOver|contentDocument|origProp|hasAlphaImageLoader|hasFocused|doWrapper|marginRight|middle|parOff|background|evt|update|align|numberOfImagesToPreload|string|ucrb|state|cssDirection|direction|ie6|fullExpandTitle|calcThumb|distance|Create|setPos|preloadAjaxElement|moveTo|run|abs|cacheAjax|restoreTitle|loadingPos|undim|loadingPosXfade|scrollBy|blur|error|caption|dragByHeading|getElementContent|resizeTo|replaceLang|skin|sizeDiff|htmlExpand|openerTagNames|getInline|Slideshow|srcElement|restoreDuration|changeSize|continuePreloading|overrides|topZ|form|isReady|clones|thumbnailId|_default|and|detachEvent|Previous|Pause|getImageMapAreaCorrection|spacebar|Play|Close|Highslide|JS|timerId|call|loadingOpacity|loadingText|loadingTitle|Move|Next|preloadGraphic|easeInQuad|ltr||vis|nopad|newHeight|hasExtendedContent|attributes|dimmingGeckoFix|enableKeyListener|tag|rv|both|clear|toUpperCase|flashvars|wmode|orig|isUnobtrusiveAnchor|hsHasSetClick|contentWrapper|wrapperMouseHandler|pageOrigin|alpha|offsetParent|fixedControls|thumb|captionOverlay|headingOverlay|playText|pauseTitle|vendor|pauseText|pow|onGraphicLoad|200|KDE|playTitle|appendTo|clickY|clickX|rb|resizeTitle|targetX|targetY|focusTopmost|switch|fullExpandText|htmlSizeOperations|hasHtmlExpanders|hide|png|clearsY|mouseup|hitSpace|htmlPrepareClose|wait|setClickEvents|Thumbstrip|destroyObject|sls|checkFirstAndLast|relativeTo|reuseOverlay|repeat|awake|preloadImages|Left|preloadAjax|indexOf||clearsX|stripItemFormatter|getPropertyValue|getAttribute|focusTitle|horizontal|Bottom|Top|Width|Height|hand|offsetX|offsetY|reOrder|cachedGet|sleep|fullExpandOpacity|script|fullExpandPosition|ActiveXObject|Microsoft|XMLHttpRequest|setRequestHeader|readyState|ie6SSL|XMLHTTP|javascript|createFullExpand|getNumber|showCredits|getOverlays|getControls|leftpanel|rightpanel|open|writeCredits|gi|clientHeight||showOverlays|doPanels|gotOverlays|getComputedStyle|Right|onHideLoading|_|Eval|arguments|correctRatio|styleSheets|nextSibling|tmpMin|creditsHref|ximgSize|creditsPosition|creditsTitle|fadeInOut|creditsText|returnValue|easingClose|creditsTarget|wheelDelta|transitionDuration|overlayOptions|toString|newImg|prepareNextOutline|detail|hideIframes|hideSelects|Overlay|oldImg|preloadNext|addOverlay|yimgSize|link|write|registerOverlay|captionText|addSlideshow|keys|createTextNode|xpand|htmlE|footer|captionId|responseText|urlencoded|fromElement|mouseover|onDrag|send|toElement|www|text|onMouseOut|DOMContentLoaded|onMouseOver|application|HEAD|dragSensitivity|white|HsExpander|ig|onDrop|onImageClick|01|doScroll|callee|about|sqrt|blank|button|keyCode|drop|ignoreMe|float|DOMMouseScroll|shadow|onSetClickEvent|_self|Safari|Type|Macintosh|mgnRight|useMap|pageYOffset|pI|Gecko|removeAttribute|mousewheel|onmousewheel|firstChild|down|inner|pageXOffset|innerHeight|innerWidth|ra|it|expression|http|onKeyDown|com|dynamicallyUpdateAnchors|captionEval|outlineStartOffset|graphics|||zoomin|zoomout|1001|useControls|headingId|maincontentEval|maincontentText|120|clearTimeout|Trident|maincontentId|headingEval|headingText|geckodimmer|onDimmerClick|dimming|important|clearInterval|blockRightClick|oncontextmenu|imageCreate|front||onShowLoading|Expand|flushImgSize|htmlCreate|IFRAME|SELECT|static|onAfterGetContent|onBeforeGetContent|onBlur|message|Powered|onFocus|Go|allowSimultaneousLoading|the|onInit|onmouseover|onmouseout|Line|lineNumber|alert|debug|actual|bring|fit|rect|clip|insertBefore|nodeName|boolean|reuse|onBeforeExpand|reflow|coords|circle|floor|Loading|cancel|300|onAfterExpand|frameborder|onBeforeGetCaption|onBeforeGetHeading|eval|newWidth|flash|transparent|500|interval|expressInstallSwfurl|version|embedSWF|attachEvent|onBeforeClose|Image|fixed|of|onCreateFullExpand|click|useOnHtml|dummy|borderCollapse|GET|cellSpacing|default|header|splice|onreadystatechange|onActivate|linearTween|1px|paddingTop||drag|Msxml2|forceAjaxReload|setInterval|onDoFullExpand|onAfterClose|collapse|lineHeight|200px|Resize|With|scale|sizingMethod|Content|onCreateOverlay|homepage|StopPlay|removeSWF|esc|AlphaImageLoader|DXImageTransform|https|outlinesDir|onAfterGetHeading|fontSize|outlines|protocol|progid|Requested|shape|onAfterGetCaption|Use'.split('|'),0,{}))
;
function setFlash(src,params){
  if(!src||!params.width||!params.height)return ''
  var lparams={align:'middle',allowScriptAccess:'sameDomain',menu:'false',quality:'high',flashvars:'',scale:'noscale',wmode:'transparent'},
      plist='<param name="movie" value="'+src+'" />',
      elist='src="'+src+'"'
  for(var k in params){lparams[k]=params[k]}
  for(var k in lparams){
    plist=plist+'<param name="'+k+'" value="'+lparams[k].replace('&','&amp;')+'" />'
    elist=elist+' '+k+'="'+lparams[k].replace('&','&amp;')+'"'
  }
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'+
    ' codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'+
    ' width="'+lparams.width+'" height="'+lparams.height+'" align="middle">'+plist+'<embed '+elist+
    ' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>')
}

$(function(){
  $('a[href]').focus(function(){this.blur()})
});

