From: dpvc v. a. <we...@ma...> - 2008-03-27 01:27:11
|
Log Message: ----------- Bring jsMath up to version 3.5. Changes include: * Fixed a problem with the boldsymbol extension where it could leave the fonts set to the bold fonts, so that all the rest of the mathematics on the page would be in bold. (This would occur if a jsMath auxiliary file had to be autoloaded by the \boldsymbol command.) * Fixed a timing problem with easy/load.js when autoloading and tex2math are both used (the default) that could cause some internal routines to run in the wrong order. * Fixed a problem in detecting a font size change in MSIE when the font used at one location on the page is only slightly smaller or larger than that used at the previous location. * Added ability for extra fonts to specify how they are handled in symbols-only image mode. This is used by the cmmib10 font to specify that the italic letters should be handled by bold italic letters in the serif font rather than by images, which was the old behaviour. You will need to replace the jsMath/fonts/cmmib10/def.js file with the new one to take advantage of this. * Added a new autobold extension that allows jsMath to detect the presence of a <B>...</B> tags (or CSS that sets font-weight:bold) surrounding the mathematics and automatically apply \boldsymbol to the mathematics. Since this requires the extra cmmib10 and cmmsy10 fonts, this is an extension that you must activate yourself. See the autobold documentation for details * Implemented the \verb command for entering verbatim material. See the verb extension documentation for details. * Added aligned and gathered environments to the AMSmath plugin. * Added equation and equation* environments. (Since tex2math now processes LaTeX environments within the text of the page, it makes more sense to have these defined.) * Fixed a problem with \newcommand where it would reject control-sequence names that included upper-case letters. * Fixed a problem with the \font command where the control sequence would be lost when the font was loaded (if it wasn't already loaded when the \font command was issued). * Fixed a timing bug with easy/load.js when there are files specified in the loadFiles array. The bug only occurred with the Opera browser. * Worked around a problem with Opera where the autoload plugin could hang when trying to load the jsMath.js file. * Worked around a spacing problem in IE7 where some elements in an array or fraction could be misaligned. * Worked around a problem in IE7 where accented characters could disappear under some circumstances (particularly when they appear by themselves). * Fixed a problem with Firefox3 where the control panel would not open. * Firefox3's new single-origin policy restricts access to file outside the currect directory when local files (i.e., file: URL's) are used. JsMath now uses the new window.postMessage() facilty to work around this. If you use window.postMessage() yourself you should be aware that jsMath is also using window messages, and so you should be careful to properly identify your own messages so as not to confuse them with the ones used by jsMath. All messages used by jsMath will begin with jsMLD:, jsMCP:, or jsMAL: so you can filter these out of our own message-processing code. * Disabled the BaKoMa font processing in Firefox3 since jsMath no longer works properly with those fonts in Firefox3. Modified Files: -------------- webwork2/htdocs/jsMath: jsMath-controls.html jsMath-easy-load.js jsMath-loader.html jsMath-ww.js jsMath.js webwork2/htdocs/jsMath/extensions: bbox.js boldsymbol.js font.js newcommand.js webwork2/htdocs/jsMath/plugins: CHMmode.js autoload.js noImageFonts.js webwork2/htdocs/jsMath/uncompressed: jsMath-fallback-mac.js jsMath.js Added Files: ----------- webwork2/htdocs/jsMath: jsMath-loader-post.html webwork2/htdocs/jsMath/extensions: autobold.js verb.js Revision Data ------------- Index: jsMath-loader.html =================================================================== RCS file: /webwork/cvs/system/webwork2/htdocs/jsMath/jsMath-loader.html,v retrieving revision 1.4 retrieving revision 1.5 diff -Lhtdocs/jsMath/jsMath-loader.html -Lhtdocs/jsMath/jsMath-loader.html -u -r1.4 -r1.5 --- htdocs/jsMath/jsMath-loader.html +++ htdocs/jsMath/jsMath-loader.html @@ -7,7 +7,7 @@ | | This file is used for jsMath components when the browser doesn't | handle the XmlHttpRequest function, or when they must be obtained - | from a server other than the one server the page that is using jsMath. + | from a server other than the one serving the page that is using jsMath. | | --------------------------------------------------------------------- | Index: jsMath-controls.html =================================================================== RCS file: /webwork/cvs/system/webwork2/htdocs/jsMath/jsMath-controls.html,v retrieving revision 1.12 retrieving revision 1.13 diff -Lhtdocs/jsMath/jsMath-controls.html -Lhtdocs/jsMath/jsMath-controls.html -u -r1.12 -r1.13 --- htdocs/jsMath/jsMath-controls.html +++ htdocs/jsMath/jsMath-controls.html @@ -28,6 +28,8 @@ <script> var showWarning = 0; +var domain = document.domain || ""; +var mustPost = ((domain == "" || domain == "localhost") && window.postMessage); while (!window.jsMath && !showWarning) { try { window.jsMath = window.parent.jsMath; @@ -58,8 +60,16 @@ ); } -if (showWarning) {setTimeout("Warning()",1)} else { -var debug = window.parent.debug; var show = window.parent.show; +if (showWarning) { + if (!mustPost) setTimeout("Warning()",1); +} else { + var debug = window.parent.debug; + var show = window.parent.show; +} +</SCRIPT> + +<SCRIPT ID="jsMath_script"> +if (window.jsMath) { jsMath.Add(jsMath.Controls,{ @@ -87,7 +97,7 @@ Main: function () { this.oldCookie = {}; jsMath.Add(this.oldCookie,this.cookie); - this.GetPanel("panel"); + this.GetPanel("main"); jsMath.Element("_version").innerHTML = jsMath.version; @@ -192,13 +202,13 @@ } }, + HTML: {}, // storage for panels for Firefox3 in local mode + GetPanel: function (name) { this.panel.innerHTML = ""; // for MSIE on the Mac - if (jsMath.browser == 'Mozilla') { - this.panel.appendChild(document.getElementById("jsMath_"+name).cloneNode(true)); - } else { - this.panel.innerHTML = document.getElementById("jsMath_"+name).innerHTML; - } + var html = this.HTML[name]; + if (html == null) {html = document.getElementById("jsMath_"+name).innerHTML} + this.panel.innerHTML = html; }, SaveOptions: function (close) { @@ -249,12 +259,23 @@ }); +jsMath.Add(jsMath.Post.Commands,{ + PAN: function (message) {jsMath.Controls.HTML.main = message}, + OPT: function (message) {jsMath.Controls.HTML.options = message}, + + PST: function (message) { + jsMath.Controls.Main(); + jsMath.Script.endLoad(); + jsMath.Message.doClear(); + } +}); + } </script> <!------------------------------------------------------------> -<div id="jsMath_panel"> +<div id="jsMath_main"> <div style="text-align:center"> <b style="font-size:133%">jsMath v<span ID="jsMath__version"></span></b> (<span id="jsMath__fontType">type</span> fonts) @@ -434,7 +455,19 @@ <!------------------------------------------------------------> <script> - if (!showWarning) {jsMath.Controls.Main()} + if (showWarning) { + if (mustPost) { + var scr = document.getElementById("jsMath_script"); + window.parent.postMessage("jsMCP:SCR:"+scr.innerHTML); + var main = document.getElementById("jsMath_main"); + window.parent.postMessage("jsMCP:PAN:"+main.innerHTML); + var options = document.getElementById("jsMath_options"); + window.parent.postMessage("jsMCP:OPT:"+options.innerHTML); + window.parent.postMessage("jsMCP:PST:"); + } + } else { + jsMath.Controls.Main() + } </script> <script> if (window.jsMath) { Index: jsMath-easy-load.js =================================================================== RCS file: /webwork/cvs/system/webwork2/htdocs/jsMath/jsMath-easy-load.js,v retrieving revision 1.3 retrieving revision 1.4 diff -Lhtdocs/jsMath/jsMath-easy-load.js -Lhtdocs/jsMath/jsMath-easy-load.js -u -r1.3 -r1.4 --- htdocs/jsMath/jsMath-easy-load.js +++ htdocs/jsMath/jsMath-easy-load.js @@ -91,9 +91,8 @@ jsMath.Autoload.findCustomSettings = jsMath.Easy.findCustomSettings; jsMath.Autoload.loadFiles = jsMath.Easy.loadFiles; jsMath.Autoload.loadFonts = jsMath.Easy.loadFonts; - - if (!document.body) {jsMath.Easy.autoloadCheck = 1} - else {jsMath.Easy.autoloadReCheck = 1} + jsMath.Autoload.delayCheck = 1; + jsMath.Easy.autoloadCheck = 1; document.write('<script src="'+jsMath.Autoload.root+'plugins/autoload.js"></script>'); } else { @@ -122,7 +121,6 @@ jsMath.Easy.onload = function () { if (jsMath.Easy.loaded) {return} else {jsMath.Easy.loaded = 1} if (jsMath.Easy.autoloadCheck) jsMath.Autoload.Check(); - if (jsMath.Easy.autoloadReCheck) jsMath.Autoload.ReCheck(); if (jsMath.Easy.tex2math) { jsMath.Synchronize(function () { if (jsMath.Easy.findCustomSettings) Index: jsMath.js =================================================================== RCS file: /webwork/cvs/system/webwork2/htdocs/jsMath/jsMath.js,v retrieving revision 1.40 retrieving revision 1.41 diff -Lhtdocs/jsMath/jsMath.js -Lhtdocs/jsMath/jsMath.js -u -r1.40 -r1.41 --- htdocs/jsMath/jsMath.js +++ htdocs/jsMath/jsMath.js @@ -40,11 +40,11 @@ //start = new Date().getTime(); jsMath.Script.Uncompress([ - ['if(!','window','.jsMath','||!',1,'.','jsMath.','loaded','){var ','jsMath_old','=',1,2,';',0,'document.','getElementById','||!',15,'childNodes||!',15,'createElement','){','alert("','The',' mathematics ','on this page requires W3C DOM support in its JavaScript. "+"Unfortunately, your ','browser',' doesn\'t seem to have this.")}','else{',1,2,'={version:"3.4f",document:document,',1,':',1,',','platform',':(','navigator.',37,'.match(/','Mac/)?"mac":',39,37,41,'Win/)?"pc":"unix"),','sizes',':[50,60,70,85,100,120,144,173,207,249],','styles',':{".math','":"font-family:serif; font-style:normal; font-weight:normal','",".typeset',51,'; ','line-height:normal','","div.','typeset','":"text-align',':center; margin:1em 0px;","span.',57,58,':left',52,' span',58,62,'; border:','0px; margin:0px; ','padding:0px','",".typeset .','normal',51,70,'size0','":"font-size:','50','%",".typeset .','size1',75,'60',77,'size2',75,'70',77,'size3',75,'85',77,'size4',75,'100',77,'size5',75,'120',77,'size6'! ,75,'144',77,'size7',75,'173',77,'size8',75,'207',77,'size9',75,'249',77,'cmr10','":"font-family:jsMath-','cmr10, serif',70,'cmbx10',115,118,', ','jsMath-cmr10',70,'cmti10',115,124,', ',122,70,'cmmi10',115,130,70,'cmsy10',115,134,70,'cmex10',115,138,70,'textit":"','font-family',':serif; ','font-style:italic',70,'textbf":"',143,':serif; font-weight:bold',70,'link":"','text-decoration:none',70,'error',75,'10pt; ',145,'; "+"','background-color',':#FFFFCC; padding:1px',158,'border:','1px solid',' #CC0000',70,'blank":"','display:inline-block','; ','overflow:hidden',67,'0px none; width:0px','; height:','0px;",".',57,' .','spacer','":"',167,'","#jsMath_hiddenSpan":"','visibility',':','hidden','; ','position:absolute','; top:0px',';left:0px',158,55,'; text-indent:0px","#','jsMath_message','":"','position:fixed','; bottom:','1px; left:2px; ',159,':#E6E6E6','; "+"border:solid 1px #959595; margin:0px; padding:','1px 8px','; "+"z-index:102; color',': black','; font-size:','small; ','wi! dth:auto',';","#','jsMath_panel','":"',192,193,'1.5em; right:1! .5em','; padding:.8em 1.6em',158,159,':#DDDDDD',67,'outset 2px',158,'z-index:103; ',203,'; color:black',201,'10pt; font-style:normal","#',205,' .disabled":"color:#888888","#',205,' .infoLink',75,'85%","#',205,' *":"','font-size:inherit; font-style:inherit; font-family:inherit','; ',55,'","#',205,' div":"',159,':inherit; color:inherit;","#',205,' span":"',159,237,205,' td','":"border:0px; padding:0px; margin:0px; background-color:inherit; color:inherit;","#',205,' tr',244,205,' table',244,'jsMath_button','":"',192,193,'1px; right:2px; ',159,':white',197,'0px 3px 1px 3px',199,':black; ',152,201,'x-small',158,203,'; cursor:hand;","#',251,229,69,67,68,55,158,230,'","#jsMath_global":"',145,';","#jsMath_float','":"',184,185,'; left:0px; max-width:80%; "+"z-index:101; ',203,'; height:auto',278,' .drag":"',159,':#DDDDDD',67,'outset 1px',172,'12px',201,'1px',278,' .close":"',159,196,67,'inset 1px; width:8px',172,'8px; margin:1px 2px',278,' .source":"',159,':#E2E2E2',67,290,158,203,284,'; pad! ding:8px 15px',158,143,':courier, fixed',201,'90%","#jsMath_noFont .message',58,': center',210,67,'3px solid #DD0000',158,159,':#FFF8F8; color: #AA0000',201,202,203,204,'jsMath_noFont .link','":"',69,' 5px 2px 5px',67,'2px outset; ',159,':#E8E8E8',158,'color:black',201,'80%; ',203,267,'jsMath_PrintWarning',' .message',58,':center',210,67,'3px solid #DD0000',158,159,': #FFF8F8; color: #AA0000',201,'x-',202,203,';","@media print":"#',251,' {display:none','}\\n"+"#jsMath_Warning',360,'}","@media screen":"#',344,360,'}"},Element',':function(','A){return ',6,15,16,'("jsMath_"+A)},','BBoxFor',367,'A','){this.','hidden.innerHTML','="<nobr><','span class=\\"',57,'\\"><',379,'scale\\">"+A+"</span></span></nobr>";var B={w:this.',182,'.offsetWidth',',h:this.',182,'.offsetHeight','};this.',377,'="";return B},EmBoxFor',367,'B){var A=',6,'Global.cache.R;if(!A[this.em]){A[this.em]={}}if(!A[this.em][B]){var C=this.BBoxFor(B);','A[this.em][B]={w:C.w/this.em,h:C.h/this.em}}return A[this.em][! B]},','EmBoxForItalics',367,393,6,395,'if(B.match(/<i>|class=\! \"(icm|i talic|igreek|iaccent)/i)){C.w=C.Mw','=this.BBoxFor','(B+',6,'Browser.','italicString',').w-',6,406,'italicCorrection','}',396,'Init',':function(){','if(',6,'Setup.inited','!=1){',0,6,418,'){',6,'Setup.','Body()}if(',6,418,'!=1){if(',6,418,'==-100','){return }',23,'It looks like jsMath failed to set up properly (error code "+',6,418,'+"). "+"I will try to keep going, but it could get ugly.");',6,418,'=1}}this.em',403,'("<span style=\\""+',6,406,'block+";','width:13em;height:1em','\\"></span','>").w/13;','if(this.','em==0',376,'em',403,'("<img src=\\""+',6,'blank+"\\" style=\\"',447,'\\"/>").w/13}','var A=',6,'Global.cache','.B;',0,'A[this.em]){A[this.em]={};','A[this.em].','bb',403,'("x");','var C=',466,'bb.h;',466,'d',403,'("x"+',6,'HTML.Rule(1,','C/',6,'em)).h-C;if(',6,406,407,'){',466,'ic=',6,373,'(',6,406,407,').w}}',6,406,411,'=',466,'ic;var F=',466,'bb;var D=F.h;var E=',466,'d;this.h=(D-E)/this.em;this.d=E/this.em;this.hd=this.h+this.d;this.xWidth=F.w;this.',425,'TeXfo! nts','();var B=this.EmBoxFor("<',379,'cmr10\\">M</span>").w/2;this.TeX.M_height=B*(26/14);this.TeX.h=this.h;this.TeX.d=this.d;this.TeX.hd=this.hd;this.Img.Scale();',0,'this.initialized',376,425,'Sizes','();this.','Img.UpdateFonts()}this.p_height=(','this.TeX.cmex10[0].','h+',517,'d)/0.85;',511,'=1},ReInit',415,'var A',403,'("x").w;if(A!=this.xWidth',376,'Init()}},Loaded',415,'if(',9,8,'B=["Process","ProcessBeforeShowing","ConvertTeX","ConvertTeX2","ConvertLaTeX","ConvertCustom","CustomSearch","Synchronize","Macro","document"];','for(var A=0;A<','B','.length;A++){','if(',9,'[B[A]]){','delete ',9,'[B[A]]}}}if(',9,376,'Insert(jsMath,',9,')}',9,'=null;',6,7,'=1},Add',367,'C,A){for(var B in A){','C[B]=A[B]}},Insert',367,554,'if(C[B]&&typeof (A[B])=="object"&&(','typeof (C[B])=="','object"||',559,'function")){this.Insert(C[B],A[B])}',29,'C[B]=A[B]}}},Package',367,'B,A',376,'Insert(B.prototype,A)}};',6,'Global={isLocal:1,cache:{','T:{},D:{},R:{},B',':{}},ClearCache',415,6,462,'={'! ,571,':{}}},GoGlobal',367,393,'String(',6,1,'.','location);var! C','=(' ,6,'isCHMmode','?"#":"?");if(B){A=A.replace(/\\?.*/,"")+"?"+B}',6,'Controls.','Reload(',6,'root+"jsMath-','global.html"+C+escape(A))},Init',415,'if(',6,'Controls.cookie.','global=="always"&&!',6,'noGoGlobal','){','if(navigator.','accentColorName',433,0,6,1,'){',6,1,'=',1,'}',6,591,7,'=1;',6,591,'defaults.hiddenGlobal',549,'this.GoGlobal(',6,591,'SetCookie(2))}},Register',415,460,6,1,'.parent;',0,6,'isCHMode){',6,588,'=(',6,1,'.','location.','protocol=="mk:")}try{',0,6,588,376,'Domain()}if(A',2,'&&A.',6,'isGlobal){A.',6,'Register(',6,1,')}}catch(B){',6,602,'=1}},Domain',415,604,'appName=="Microsoft Internet Explorer"&&',6,37,'=="mac"&&',39,'userProfile','!=null',433,'if(',1,'==parent',433,'var B=',6,15,'domain;try{while(true){try{if(parent.',15,'title',669,'){return }}','catch(A){}',0,15,'domain.match(/\\..*\\./)){break}',6,15,'domain=',6,15,'domain.replace(/^[^.]*\\./,"")}}',683,6,15,689,'B}};',6,'Script={request:null,Init',415,'if(!(',6,599,'asynch&&',6,599,'progress',')){i! f(',1,'.XMLHttpRequest','&&!(',6,15,'URL&&',6,15,'URL.match(/^file:\\/\\/.*\\\\/))){try{','this.request','=new XMLHttpRequest}catch(C){}}',0,718,'&&',1,'.','ActiveXObject',8,'A=["MSXML2.XMLHTTP.5','.0","MSXML2.XMLHTTP','.4',728,'.3',728,'","Microsoft.XMLHTTP"];','for(var B=0;B<','A.length&&!',718,';B++){try{',718,'=new ',725,'(A[B])}catch(C){}}}}',0,718,'||',6,425,'domainChanged',376,'Load=this.delayedLoad;this.needsBody=1}},Load',367,'B,A){','if(A){',6,'Message.Set("Loading "+','B);',6,'Script.','Delay(1);',6,'Script.Push(','this,"xmlRequest",B',');',6,760,6,'Message',',"Clear")}',29,6,760,761,')}},xmlRequest',367,'url){','this.blocking','=1;try{',718,'.open("GET",url,false);',718,'.send(null)}catch(err){',775,'=0;if(',6,'Translate.','restart&&',6,'Translate.asynchronous){return""}throw"jsMath can\'t load the file \'"+url+"\'\\n"+"',766,': "+err.message}if(',718,'.status','&&',718,791,'>=400){',775,782,6,784,'restart&&',6,787,'Error status: "+',718,791,'}',0,'url','.match(! /\\.js$/)){','return(',718,'.responseText',')}var tmpQueue','=! this.que ue;this.queue','=[];',6,1,'.eval(',718,812,');',775,'=0;','this.queue=this.queue.','concat(','tmpQueue);this.Process();return""},cancelTimeout:30*1000,iframe:null,blocking:0,cancelTimer:null,needsBody:0,queue:[],Synchronize',367,'A,B){','if(typeof (','A)!="string"){',6,760,'null,A,B)}',29,6,760,6,1,',"eval",A)}},Push',367,'A,C,B',376,'queue[','this.queue.length',']=[A,C,B];if(!(',775,'||(this.needsBody&&!',6,15,'body))){this.Process()}},Process',415,'while(',844,'&&!',775,8,'C=this.queue[0];',824,'slice(1);',460,'this.SaveQueue();var B=C[0];var E=C[1];var D=C[2];if(B){B[E](D)}',29,'if(E){E(D)}}this.','RestoreQueue','(A)}},SaveQueue',415,'var A',814,'=[];return A},',864,367,'A){',824,825,'A)},delayedLoad',367,'A',376,'Push(this,"startLoad",A)},startLoad',367,'A){','this.iframe','=',6,15,21,'("iframe");','this.iframe.style.',180,'="',182,'";',888,'position="absolute";',888,'width="0px";',888,'height="0px','";if(',6,15,'body.firstChild','){',6,15,'body.insertBefore(',882,',',6,! 15,902,')}',29,6,15,'body','.appendChild(',882,')}',775,'=1;this.','url=A;',0,'A',809,882,'.src=A}',29,882,'.src=',6,594,'loader.html"}if(A.substr(0,',6,'root.length',')==',6,'root){A=A.substr(',6,935,')}',6,754,'A);','this.cancelTimer','=setTimeout("',6,757,'cancelLoad','()",this.cancelTimeout)},endLoad',367,'A){if(',945,'){clearTimeout(',945,');',945,'=null}',6,766,'.Clear();if(A!="cancel"){',775,'=0;this.Process','()}},Start',415,'this.tmpQueue',814,'=[]},End',415,824,825,966,');',540,966,'},',949,415,945,549,6,766,'.Set("Can\'t load file");this.endLoad("cancel")},Delay',367,'A){',775,'=1;setTimeout("',6,757,'endDelay','()",A)},',990,415,775,963,'()},','imageCount',':0,WaitForImage',367,'B){',775,921,997,'++;',450,'img==null',376,'img=[]}',460,'new Image',515,'img[this.img.length]=A;A.onload=function(){if(--',6,757,997,'==0){',6,757,990,'()}};A.onerror=A.onload;A.onabort=A.onload;A.src=B},Uncompress',367,'data){for(var k=0;k<data.length;k++){var d=data[k];var n=d.length;! for(var i=0;i<n;i++){',829,'d[i])=="number"){d[i]=d[d[i]]}}dat! a[k]=d.j oin("")}',1,818,'data.join(""))}};',6,766,'={blank:null,message:null,text:null,clear:null,Init',415,0,6,15,'body||!',6,599,707,433,'if(',6,425,'stylesReady){','this.message','=',6,'Setup.DIV("message",{visibility:"hidden','"})}',29,1044,'=',6,1047,'",position:"absolute",','bottom:"1px",left:"2px",','backgroundColor',':"#E6E6E6",border:"solid 1px #959595",margin:"0px",padding:"1px 8px",zIndex:102,color:"black",fontSize:"small",width:"auto"})}','this.text','=',6,15,'createTextNode','("");',1044,917,1058,');',1044,'.onmousedown=',6,784,'Cancel},Set',367,751,'if(this.clear){clearTimeout(this.clear',');this.clear=null}if(',6,599,707,'){',0,1058,376,'Init();',0,1058,682,'if(',6,406,'textNodeBug','){',1044,'.innerHTML','=B}',29,1058,'.nodeValue','=B}','this.message.style.',180,'="visible";',752,1100,'cursor="pointer";',0,1100,'cursor){',1100,'cursor="hand"}',1044,'.title=" Cancel Processing of Math "}',29,1100,'cursor="";',1044,'.title=""}}',29,'if(B.substr(0,8)!="Loading "){',6,1,! 791,'=B}}},Clear',415,1075,')}this.clear=setTimeout("',6,766,'.doClear()",1000)},doClear',415,450,'clear',376,'clear',549,6,1,791,'="";if(',1058,'){',1058,1098,'=""}if(',1044,'){',1100,180,'="',182,'"}}},Blank',415,'if(','this.blank','||!',6,15,'body',433,1154,'=',6,425,'DIV("blank",{position:(',6,406,'msiePositionFixedBug','?"absolute":"fixed"),top:"0px",left:"0px",bottom:"0px",right:"0px",zIndex:101,',1056,':"white"});if(',6,406,'msieBlankBug){',1154,1094,'=" ";',1154,'.style.width="110%";',1154,'.style.height="110%"}},UnBlank',415,'if(',1154,'){',6,15,'body.removeChild(',1154,')}',1154,'=null}};',6,'Setup={',7,':[],DIV',367,'D,B',8,'C=',6,15,21,'("div");C.id="jsMath_"+D;','for(var A in ','B){C.style[A]=B[A]}',0,6,15,'body.hasChildNodes){',6,15,'body',917,'C)}',29,6,15,906,'C,',6,15,902,')}return C},Script',367,751,450,7,'[B]){return }',29,'this.',7,'[B]=1}',0,'B.match("^([a-zA-Z]+:/?)?/")){B=',6,'root+B}',6,757,'Load(B,A)},Hidden',415,6,182,'=this.DIV("Hidden",{',18! 0,':"',182,1054,'top:0,left:0,border:0,padding:0,margin:0});',! 6,'hidde nTop=',6,182,';return },Source',415,'if(',6,'Autoload','&&',6,1257,'.root){',6,'root=',6,1257,'.','root}',29,6,'root="";',460,6,15,'getElementsByTagName("','script");',752,734,'A.','length;B++){','var D=A[B].src;if(D&&D.match("(^|/|\\\\\\\\)',6,'js$")){',6,1263,'D.','replace(/',6,'js$/,"");break}}}}if(',6,'root.charAt(','0)=="\\\\"){',6,1263,6,'root.replace','(/\\\\/g,"/")}if(',6,1290,'0)=="/"){if(',6,1290,'1)!="/"){if(',6,15,642,'port){',6,'root=":"+',6,15,642,'port+',6,1267,6,'root="//"+',6,15,642,'host+',6,1267,6,1263,6,15,642,'protocol+',6,1267,29,0,6,'root.match','(/^[a-z]+:/i)){var D=','new String(',6,15,585,'=new RegExp("/[^/]*/\\\\.\\\\./");',6,1263,'D.replace(new RegExp("[^/]*$"),"")+',6,'root;while(',6,1334,'(C)){',6,1263,6,1295,'(C,"/")}}}',6,'Img.',1263,6,'root+"fonts/";',6,'blank=',6,'root+"blank.gif";this.Domain()},Domain',415,'try{',6,15,'domain}catch(D',433,'var C="";',460,6,15,'domain;if(',6,1334,'("://([^/]*)/")){C=RegExp.$1}C=C.replace(/:\\d+$/,"");if(C=="! "||C==A',433,604,'appName=="Microsoft Internet Explorer"&&',6,37,'=="mac"&&',39,'onLine&&',39,668,'&&',6,15,'all',433,'C=C.split(/\\./);A=A.split(/\\./);if(C.length<2||A.length<2||','C[C.length-','1',']!=A[A.length-','1]||',1393,'2',1395,'2]){this.','DomainWarning','();return }var E=',1393,'2]+"."+',1393,'1];for(var B=3;B<=C.length&&B<=A.',1279,'if(',1393,'B',1395,'B]){break}E=',1393,'B]+"."+E}',6,15,689,'E;this.',747,'=1},',1401,415,23,'In order for jsMath to be able to load the additional "+"components that it may need, the ',6,'js file must be "+"',7,' from a server in the same domain as the page that "+"contains it. Because that is not the case for this page, "+"the',25,'displayed here may not appear correctly.")},','EncodeFont',367,'C',8,'B=',6,'TeX[C];if(B','[0].c',669,433,534,'128;A++){var D=B[A];B[A]=D[3];if(B[A]==null){B[A]={}}B[A].w=D[0];B[A].h=D[1];if(D[2]!=null){B[A].d=D[2]}B[A].c=',6,'TeX.encoding[A]}},Fonts',415,734,6,'TeX.fam.length;','B++){',460,6,'TeX.fam[! ','B];if(A',376,1431,'(A)}}},TeXfont',367,'C',8,'B=',6,1437,'=! =null',4 33,460,6,'EmBoxFor("<span class=\\""+C+"\\">"+B[65].c','+"</span>");B.hd=A.h;B.dh=0.05;B.d=',6,1467,'+',6,478,'B.hd)+"</span>").h-B.hd;B.h=B.hd-B.d;','if(C=="',130,'"){B.skewchar=','127}',29,1475,134,1477,'48}}},',506,415,534,6,1448,'A++){if(',6,1452,'A]){this.TeXfont(',6,1452,'A])}}},Sizes',415,6,'TeXparams','=[];var B;var A;for(A=0;A<',6,47,536,6,1498,'[A]={}}for(B in ',6,'TeX){',829,6,'TeX[B])!="object"){for(A=0;A<',6,47,536,6,1498,'[A][B]=',6,47,'[A]*',6,'TeX[B]/100}}}},Styles',367,'A){',0,'A){A=',6,49,';A[".',57,' .scale"]="font-size:"+',6,599,'scale+"%";this.stylesReady=1}',6,760,'this,"','AddStyleSheet','",A);if(',6,406,'styleChangeDelay','){',6,760,6,'Script,"Delay",1)}},',1537,367,'D',8,'B=',6,15,1274,'head")[0];var A="";for(var E in D){A+=E+" {"+D[E]+"}\\n"}if(',6,15,'createStyleSheet){B.insertAdjacentHTML("beforeEnd","<','span style=\\"','display:none\\">x</span>"+"<style type=\\"text/css\\">"+A+"</style>")}',29,470,6,15,21,'("style");C.type="text/css";C',917,6,15! ,1062,'(A));B',917,'C)}},Body',415,450,'inited',433,'this.inited=-','1;',6,425,'Hidden();',1578,'2;',6,406,1084,1578,'3;if(',6,599,'blank){',6,766,'.Blank()}',1578,'4;',6,425,'Styles();',1578,'5;',6,591,1084,1578,'6;',6,760,6,'Setup,"User","pre-font");',1578,'7;',6,760,6,'Font,"Check");if(',6,'Font.register.length){',6,760,6,'Font,"LoadRegistered")}this.inited=1},User',367,952,6,'Setup.UserEvent[A',']){(',6,1627,'])()}},UserEvent:{"pre-font":null,"onload":null}};',6,'Update={',506,367,'D){',1204,'D){for(var B in D[A]){for(var C in D[A][B]){',6,'TeX[A][B][C]=D[A][B][C]}}}},TeXfontCodes',367,'C){',1204,'C){',734,'C[A].',1279,6,'TeX[A][B].c=C[A][B]}}}};',6,'Browser={allowAbsolute:1,allowAbsoluteDelim:0,separateSkips:0,valignBug:0,operaHiddenFix:"",','msieCenterBugFix',':"",','msieInlineBlockFix',':"",','msieSpaceFix',':"",imgScale:1,renameOK:1,',1541,':0,delay:1,version:0,','TestSpanHeight',415,6,377,'="<span','><','span style=\\""+this.block+";','height:2em;width:','1px',448,! '></span>";var B=',6,'hidden.firstChild;',460,'B.firstChild;',! 'this.sp anHeightVaries','=(B',388,'>=A',388,'&&B',388,'>0);','this.spanHeightTooBig','=(B',388,'>A',388,');',6,377,'=""},','TestInlineBlock',415,'this.block','="display:-moz-inline-box";','this.hasInlineBlock','=',6,'BBoxFor("<span style=\\""+this.block+";','width:10px;height:5px\\"></span>").w>0;if','(',1696,'){',6,'styles[".typeset .','blank"]=',6,1705,'blank','"].replace(/',167,'/,',1694,');',6,1705,176,'"]=',6,1705,176,1710,167,'/,"")}',29,1694,'="',167,'";',1696,'=',6,1699,1700,'(!',1696,682,1694,'+=";',169,'";',460,6,373,'("x").h;this.mozInlineBlockBug=',6,1699,'height:"+A+"px;width:1px',448,'>x"+"<',1666,1748,';vertical-align:-"+A+"px',448,'>").h>2*A;this.widthAddsBorder=',6,1699,169,';height:1px;width:10px',';border-left:','10px solid',448,'>").w>10;','this.msieBorderBug','=',6,1699,1748,448,'>x").h!=',6,1699,1748,1760,163,448,'>x").h;','this.blankWidthBug=',1764,'||',6,1699,1667,'0px',448,'>").h==0},','TestRenameOK',415,6,377,1664,'></span>";',460,6,1672,'A.setAttribute("na! me","','jsMath_test','");this.renameOK=(',6,15,'getElementsByName("',1797,'").length>0);',6,377,1691,'TestStyleChange',415,6,377,1664,' ID=\\"',1797,'\\">x</span>";var B=',6,1672,460,'B',385,';',6,425,1537,'({"#',1797,75,'200%"});this.',1541,'=(B',385,'==A);',6,377,1691,'VersionAtLeast',367,393,1336,'this.version',').split(".");','B=',1336,'B',1840,'if(B[1]==null){B[1]="0"}return A[0]>B[0]||(A[0]==B[0]&&A[1]>=B[1])},Init',415,6,27,'="unknown";this.',1692,515,1660,515,1787,515,1807,515,'MSIE',515,'Mozilla',515,'Opera',515,'OmniWeb',515,'Safari',515,'Konqueror','();if(','this.allowAbsoluteDelim','){',6,'Box.DelimExtend=',6,'Box.DelimExtendAbsolute;',6,'Box.Layout=',6,'Box.LayoutAbsolute}',29,6,'Box.DelimExtend=',6,'Box.DelimExtendRelative;',6,'Box.Layout=',6,'Box.LayoutRelative}if(','this.separateSkips','){',6,'HTML.Place=',6,'HTML.','PlaceSeparateSkips',';',6,'Typeset.prototype.','Place=',6,1898,1895,'}},MSIE',415,'if(',1675,'&&!',1683,'){',6,27,'="MSIE',899,6,37,'=="pc"){th! is.','IE7=(',1,710,669,');','this.quirks','=(',6,15,'compatMod! e=="Back Compat");this.msieStandard6=!',1922,'&&!','this.IE7',';',1870,'=1;',1889,'=1',';this.buttonCheck=1;this.','msieBlankBug=1;this.','msieAccentBug',921,'msieRelativeClipBug','=1;this.msieDivWidthBug=1;this.',1167,921,'msieIntegralBug',921,'waitForImages',921,'msieAlphaBug=!',1929,';this.','alphaPrintBug','=!',1929,';this.',1652,'="position:relative; ";this.',1654,'=" ',167,';";this.msieTeXfontBaselineBug=!',1922,';',1764,'=',1778,'1;',0,1929,376,1656,'="<',1559,167,448,'>"}',6,'Macro("joinrel","\\\\mathrel{\\\\kern-5mu}"),',6,'Parser.prototype.mathchardef.','mapstocharOrig','=',6,1978,'mapstochar;',540,6,1978,1983,6,'Macro("mapstochar","\\\\rlap{\\\\',1979,'\\\\,}\\\\kern1mu"),',6,1705,'arial"]="',143,': \'Arial unicode MS\'";',0,1929,'||',1922,'){',6,'styles["#',190,'"]=',6,2003,190,1710,192,'/,"',184,'").',1286,203,'/,"");',6,2003,205,'"]=',6,2003,205,1710,192,'/,"',184,'").',1286,203,'/,"");',6,2003,251,'"]="width:','1px; "+',6,2003,251,1710,192,'/,"',184,'").',1286,203,'/,"! ");',6,1,'.attachEvent("','onscroll",',6,591,'MoveButton',');if(',1929,'){',6,1,2050,'onresize",',6,591,2054,')}this.msieMoveButtonHack=',1929,'}',6,2003,330,'"]+=" ','display: inline-block',';";',6,1705,176,'"]=',6,1705,176,1710,167,'/,"");',6,49,'[".tex2math_div"]=',6,49,'["div.',57,'"]+"; width: 100%; ',2072,899,'screen.deviceXDPI','&&','screen.logicalXDPI','&&',2094,'!=',2096,376,'imgScale*=',2096,'/',2094,';',6,599,'alpha=0}this.',407,'="<i>x</i>";',6,'EmBoxFor=',6,397,'}',29,'if(',6,37,'=="mac"){this.msieAbsoluteBug',921,'msieButtonBug',1940,1936,'quirks=1;',6,425,'Script("jsMath-msie-mac.js");',6,'Parser.prototype.macros.angle=["Replace","ord","<font face=\\"Symbol\\">‹</font>","normal"];',6,2003,205,2035,'42em; "+',6,2003,205,1710,203,'/,"");',6,599,'printwarn=0}}',6,'Macro("not","\\\\mathrel{\\\\rlap{\\\\kern3mu','/}}")}},',1860,415,'if(',6,182,'.ATTRIBUTE_NODE){',6,27,'="',1860,899,6,37,1916,1950,'=1}',1870,'=1;',6,2003,251,'"]=',6,2003,251,1710,'cursor:hand'! ,'/,"cursor:pointer");',6,2003,330,'"]=',6,2003,330,1710,2175,! '/,"curs or:pointer");',6,2147,'/}}");',604,'vendor=="Firefox"){',1839,'=',39,'vendorSub}',29,604,'userAgent.match','(" Firefox/([0-9.]+)( |$)")){',1839,'=RegExp.$1}}}},',1864,415,604,'accentColorName){',6,27,'="',1864,'";','this.allowAbsolute','=',1696,';',1870,'=',2211,';this.valignBug=!',2211,1935,1091,'=1;',6,'noChangeGlobal=1;',0,1696,'){',6,'Setup.Script("jsMath-old-browsers.js','")}}},Opera',415,'if(',1683,'){',6,27,'="Opera";',460,39,2198,'("Opera 7");',2211,'=0;this.delay=10;this.operaHiddenFix="[Processing]";',752,6,2229,'")}}},Safari',415,604,'appVersion',41,'Safari\\//)){',6,27,'="Safari";',460,39,2198,'("Safari/([0-9]+)");A=(A)?A[1]:400;',734,6,1448,'B++){if(',6,1452,'B]&&',6,'TeX[',6,1452,'B]]){',6,'TeX[',6,1452,'B]].dh=0.1}}',6,'TeX.axis_height+=0.05;',6,'TeX.default_rule_thickness+=0.025;',1870,'=A>=125;this.safariIFRAMEbug=A>=312&&A<412;this.safariButtonBug=A<412;this.safariImgBug',921,1091,'=1',1935,1541,'=1}},',1868,415,604,'product&&',39,'product.match("',1868,'")! ){',6,27,'="',1868,'";',2211,'=0;',1870,'=0;',604,2198,'(/',1868,'\\/(\\d+)\\.(\\d+)/)){if(RegExp.$1<3||(RegExp.$1==3&&RegExp.$2<3)){',1889,921,'valignBug=1;',6,2229,'")}}',6,'Add(',6,49,',{".',57,' .cmr10":"',143,': ',122,', jsMath cmr10, serif'], - ['",".typeset .','cmbx10','":"','font-family: ','jsMath','-',1,', ',4,' ',1,', ',4,'-cmr10, ',4,' cmr10',0,'cmti10":"',3,4,'-cmti10, ',4,' cmti10, ',4,'-cmr10, ',4,' cmr10',0,'cmmi10','":"',3,4,'-',28,', ',4,' ',28,0,'cmsy10','":"',3,4,'-',39,', ',4,' ',39,0,'cmex10','":"',3,4,'-','cmex10, ',4,' ',50,'"});',4,'.Font.testFont','="',4,'-',55,4,' ',50,'"}}};',4,'.Font={testFont:"',4,'-',50,'",fallback:"symbol",register:[],message:"<b>No ',4,' TeX fonts ','found</b> -- using',' image fonts instead','.<br/>\\n"+"','These may be slow and might not print well',80,'Use the ',4,' control panel to get additional information.",','extra_message',':"Extra',77,'not found: <b><span id=\\"jsMath_ExtraFonts\\"></span></b><br/>"+"Using',79,'. This may be slow and might not print well',80,'Use the ',4,85,'print_message',':"To print higher-resolution math symbols, click the<br/>\\n"+"<b>Hi-Res Fonts for Printing</b> button on the ',4,' control panel.<br/>\\n",','alpha_message',':"If the mat! h symbols print as black boxes, turn off <b>image alpha channels</b><br/>\\n"+"using the <B>Options</B> pane of the ',4,99,'Test1',':function(','C',',F,D,E){if(F==null){F=124}if(D==null){D=2}if(E==null){E=""}var B=jsMath.BBoxFor("<span style=\\"font-family: "+E+C+", serif\\">"+jsMath.TeX[C][F].c+"</span>");var A=jsMath.BBoxFor("<span style=\\"font-family: serif\\">"+jsMath.TeX[C][F].c+"</span>");return','(B.w>D*A.w&&B.h!=0)},Test2',105,'C',107,'(A.w>D*B.w&&B.h!=0)},CheckTeX',':function(){var A=',4,'.BBoxFor("<','span style=\\"','font-family: "+',4,61,'+", serif\\">"+',4,'.TeX.',50,'[1','].c+"</span>");',4,'.nofonts=((A.w*3>A.h||A.h==0)&&!this.Test1("cmr10','",null,null,"',4,'-"));if(',4,'.nofonts','&&(',4,'.platform','!="mac"||',4,'.browser!="Mozilla"||!',4,'.Browser.','VersionAtLeast(1.5))){A=',4,'.BBoxFor("<',116,3,55,'serif\\">"+',4,122,50,'[1',125,4,127,'"));if(!',4,132,'){',4,'.Setup.','Script','("',4,'-BaKoMa-fonts.js")}}},Check',113,4,'.Controls','.cookie',';this.Che! ckTeX();if(',4,132,'){if(A.autofont||A','.font=="tex"){','A.fo! nt=this. fallback;if(A.warn){',4,'.nofontMessage=1;A.warn=0;',4,167,'.SetCookie(0);if','(',4,'.window.NoFontMessage','){',4,182,'()}else{','this.Message(this.','message)}}}}else{if(A.autofont){A.font="tex"}if(A',173,'return }}if(',4,'.noImgFonts){','A.font="unicode"}if(A','.font=="unicode','"){',4,160,161,'("',4,'-fallback','-"+',4,135,'+".js");',4,'.Box.TeXnonfallback=',4,'.Box.TeX',';',4,209,'=',4,'.Box.TeXfallback;return }','if(!A.print&&A.printwarn){this.','PrintMessage','((',4,140,'alphaPrintBug&&',4,167,168,'.alpha)?this.',96,'+this.',100,':this.',96,')}if(',4,140,'waitForImages){',4,'.Script.','Push(',4,'.',161,',"WaitForImage",',4,'.blank)}if(A.font=="symbol"){',4,160,161,'("',4,201,'-symbols.js");',4,'.Box.TeXnonfallback=',4,209,';',4,209,'=',4,215,4,'.Img.SetFont','({cmr10',':["all"],',28,264,39,264,50,264,1,264,'cmti10:["all"]});',4,'.Img.LoadFont','("cm-fonts")},Message',105,'A){if(',4,'.Element("','Warning")){','return }var ','B=',4,160,'DIV("Warning','",{});B.innerHTML=! "<center><table><tr><td>"+"<div ','id=\\"jsMath_noFont\\"><div ','class=\\"message\\">"+A','+"<div style=\\"text-align:left\\"><',116,'float:left; ','margin: 8px ','0px 0px 20px\\">"+"<span onclick=\\"',4,167,'.Panel()\\" ','title=\\" Open ','the ',4,' Control Panel',' \\" class=\\"link\\">',4,301,'</span>"+"</span','><',116,293,'20px 0px 0px; float:right\\">"+"<span onclick=\\"',4,'.Font.','HideMessage','()\\" title=\\" Remove this font warning message',302,'Hide this Message',305,'></div><div style=\\"height:6px\\"></div><br clear=\\"all\\"/></div></','div>"+"<div style=\\"width:22em; height:1px\\"></div>"+"</td></tr></table></center><hr/>"},',312,113,4,280,'Warning");if(A','){A.style.display="none"}},',217,105,278,4,280,'PrintWarning','")){',282,'B=',4,160,'DIV("',330,287,289,'+"</',318,'Register',105,'H,B){if(typeof (H)=="string"){H={name:H}}if(!',4,160,'inited&&!B){','this.register','[',348,'.length]=H;',282,'I=H.name;var A=I.replace(/10$/,"");var F=',4,122,'fam.length! ;if(H.prefix==null){H.prefix=""}if(!H.style){H.style="',117,'H! .prefix+ I+", serif"}if(!H.styles){H.styles={}}if(!H.macros){H.macros={}}',4,122,'fam[F]=I;',4,122,'famName[I]=F;H.macros[A]=["HandleFont",F];',4,'.Add(',4,'.Parser.prototype.macros,H.macros);H.styles[".typeset ."+I]=H.style;',4,160,'Styles(H.styles);if(',4,'.initialized){',4,236,'Push(',4,'.Setup,"TeXfont",I)}var C=',4,167,168,';var E=!',4,132,'&&H.test(I,H.testChar,H.testFactor,H.prefix);if(E&&C',173,'if(H.tex){H.tex(I,F,H)}return }if(!E&&C.warn&&C.font=="tex"&&!',4,132,'){if(!C.fonts.match("/"+I+"/")){C.fonts+=I+"/";',4,167,179,'(!',4,280,281,187,86,')}var G=',4,280,'ExtraFonts");if(G){if(G','.innerHTML','!=""){G',404,'+=","}G',404,'+=" "+H.prefix+I}}}if(C',194,'"||',4,192,'if(H.fallback){H.fallback(I,F,H)}',282,'D={};D[I]=["all"];',4,262,'(D);',4,275,'(I);if(',4,'.initialized){',4,236,'Push(',4,'.Img,"Scale");',4,236,'Push(',4,'.Img,"UpdateFonts")}},LoadRegistered',113,'0;while(A<',348,'.length){this.Register(',348,'[A++],1)}',348,'=[]},Load',105,'A){',4,160,161,'(this.URL(A))},U! RL',105,'A){','return ',4,'.Img.root+A+"/def.js"}};',4,167,'={cookie:{scale:100,font:"tex",autofont:1,scaleImg:0,alpha:1,warn:1,fonts:"/",printwarn:1,stayhires:0,button:1,progress:1,asynch:0,blank:0,print:0,keep:"0D",global:"auto",hiddenGlobal:1},cookiePath:"/",','noCookiePattern',':/^(file|mk):$/,Init',':function(){','this.panel=',4,160,'DIV("panel",{display:"none"});if(!',4,140,'msieButtonBug){this.Button',186,'setTimeout("',4,167,'.Button()",500)}},Panel',459,4,'.Translate.Cancel();if(this.loaded){this.Main',186,4,236,'delayedLoad(',4,'.root+"',4,'-controls.html")}},Button',113,4,160,'DIV("button",{});A.title=" Open ',4,301,' ";A',404,'="<span onclick=\\"',4,167,'.Panel()\\">',4,'</span>";if(!',4,'.Global.','isLocal&&!',4,'.noShowGlobal){A',404,'+="<span id=\\"jsMath_global\\" ',298,4,' Global Panel \\" "+"onclick=\\"',4,498,'Show(1)\\">Global </span>"}if(A.offsetWidth<30){A.style.width="auto"}if(!','this.cookie','.button',324,'MoveButton',459,'var C=',4,167,';if(!C! .button){C.button=',4,280,'button")}if(C.button','){C.MoveElem! ent(C.', 'button,3,2)}var B=20;var A=20;if(C.button){A=C.button.offsetHeight+6;B=A+5}if(C.panel',522,'panel,B,A)}},MoveElement',105,'D,C,B){if(',4,140,'IE7){var A=document.body;D.style.right','="auto";D.style.','bottom',531,'left=A.clientWidth+A.scrollLeft-D.offsetWidth-C+"px";D.style.top=A.clientHeight+A.scrollTop-D.offsetHeight-B+"px"}else{','D.style.visibility="','hidden";',535,'visible"}},GetCookie',459,'if(','this.defaults','==null){',541,'={}}',4,366,541,',',510,');this.userSet={};var C=',4,'.document.cookie',';if(',4,'.window.location','.protocol.match(this.',457,')){C=this.','localGetCookie','();','this.isLocalCookie','=1}if(C.match(/',4,'=([^;]+)/)){var D=unescape(RegExp.$1).split(/,/);for(var B=0;B<D.length;B++){var A=D[B].match(/(.*):(.*)/);if(A[2].match(/^\\d+$/)){A[2]=1*A[2]}',510,'[A[1]]=A[2];this.userSet[A[1]]=1}}},',559,459,451,4,555,'.search.substr(1)},SetCookie',105,'F){var B=[];for(var E in ',510,'){if(',541,'[E]==null||',510,'[E]!=',541,'[E]){B[B.length]=E+":"+',5! 10,'[E]}}B=B.join(",");if(',561,'){if(F==2){return"',4,'="+escape(B)}','this.','localSetCookie','(B,F)}else{B=escape(B);if(B==""){F=0}if(','this.cookiePath','){B+="; path="+',592,'}if(','this.cookieDomain','){B+="; domain="+',596,'}if(',510,'.keep!="0D"){var A={D',':1000*60*60*24',',W',602,'*7,M',602,'*30,Y',602,'*365};var D=new Date;D.setTime(D.getTime()+',510,'.keep.substr(','0,1)*A[',510,611,'1,1)]);B+="; expires="+D.toGMTString()}if(B!=""){',4,552,'="',4,'="+B;var C=',4,552,';if(F&&!C.match(/',4,'=/)){alert("Cookies must be enabled in order to save ',4,' options")}}}',451,'null},',590,105,'B,C){if(!C){',282,'A=String(',4,555,').replace(/\\?.*/,"");if(B!=""){A+="?',4,588,'if(A!=',4,555,'.href){this.Reload(A)}},Reload',105,'A){if(!this.loaded){return }this.loaded=0;',4,160,'inited=-100;',4,498,'ClearCache();if(A){',4,555,'.replace(A)}else{',4,555,'.reload()}}};',4,'.Click={CheckClick',105,'A){if(!A){A=',4,'.window.event}if','(A.altKey){',4,167,'.Panel()}},CheckDblClick',1! 05,'B){if(!B){B=',4,663,'(!',4,'.Click.DblClick){',4,'.Extensi! on.Requi re("double-click",1);var A=B;B={};for(var C in A){B[C]=A[C]}}',4,236,'Push(',4,'.Click,"DblClick",[B,this.alt])}};',4,'.TeX={thinmuskip:3/18,medmuskip:4/18,thickmuskip:5/18,x_height:0.430554,quad:1,num1:0.676508,num2:0.393732,num3:0.44373,denom1:0.685951,denom2:0.344841,sup1:0.412892,sup2:0.362892,sup3:0.288888,sub1:0.15,sub2:0.247217,sup_drop:0.386108,sub_drop:0.05,delim1:2.39,delim2:1,axis_height:0.25,default_rule_thickness:0.06,big_op_spacing1:0.111111,big_op_spacing2:0.166666,big_op_spacing3:0.2,big_op_spacing4:0.6,big_op_spacing5:0.1,integer:6553.6,scriptspace:0.05,nulldelimiterspace:0.12,delimiterfactor:901,delimitershortfall:0.5,scale:1,atom:["ord","op","bin","rel","open","close","punct","ord"],fam:["cmr10","',28,'","',39,'","',50,'","cmti10","","',1,'",""],famName:{cmr10:0,',28,':1,',39,':2,',50,':3,cmti10:4,',1,':6},encoding:["À","Á","Â","Ã","Ä","Å","Æ","Ç","È","É","Ê","Ë","Ì","Í","Î","Ï! ","°","Ñ","Ò","Ó","Ô","Õ","Ö","·","Ø","Ù","Ú","Û","Ü","µ","¶","ß","ï","!",""","#","$","%","&","'","(",")","*","+",",","-",".","/","0","1","2","3","4","5","6","7","8","9",":",";","<","=",">","?","@","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","[","\","]","^","_","`","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","{","|","}","~","ÿ"],cmr10:[[0.625',',0.683],[0.','833',700,'778',700,'694',700,'667',700,'75',700,'722',700,'778',700,'722',700,'778',700,'722',700,'583',',0.694,0,{ic:0.0778,krn:{"39":0.0778,"63":0.0778,"33":0.0778,"41":0.0778,"93":0.0778},lig:{"105":','14,"108":15}}],[0.556',',0.694],[0.','556',724,'833',724,'833',724,'278',',0.431],[0.','306',',0.431,0.194],[0.','5',724,'5',724,'5,0.628],[0.5',724,'5,0.568],[0.75',724,'444,0,! 0.17],[0.5',724,'722',732,'778',732,'5,0.528,0.0972],[0.903,0.! 683],[1. 01',700,'778,0.732,0.0486],[0.278',',0.431,0,{','krn:{"108":-0.278,"76":-0.319}}],[0.278',',0.694,0,{','lig:{"96":','60}}],[0.5',724,'833',',0.694,0.194],[','0.5',',0.75,0.0556],[0.','833',761,'778',724,'278',754,'krn:{"63":0.111,"33":0.111},lig:{"39":34}}],[0.389',',0.75,0.25],[0.','389',769,'5,0.75],[','0.778,0.583,0.0833],[','0.278,0.106',',0.194],[0.','333',752,'lig:{"45":','123}}],[',774,'],[0.5',769,'5,0.644','],[0.5,0.644],[0.5,0.','644',784,'644',784,'644',784,'644],[0.5,0.644],[0.278',732,'278',734,'278,0.5',775,'778',',0.367,-0.133],[','0.472,0.5',775,'472',754,755,'62}}],[0.778',724,'75',',0.683,0,{krn:{"','116','":-0.0278,"','67',809,'79',809,'71',809,'85',809,'81',809,'84":-0.0833,"89":-0.0833,"86":-0.111,"87":-0.111}}],[0.','708',700,'722',700,'764',807,'88',809,'87',809,'65',809,'86',809,'89":-','0.0278}}],[0.','681',700,'653',',0.683,0,{','krn:{"111":-0.0833,"101":-0.0833,"117":-0.0833,"114":-0.0833,"97":-0.0833,"65":-0.111,"79":-0.0278,"67":-0.0278,"71":-0.0! 278,"81":-0.0278}}],[','0.785',700,'75',700,'361',807,'73":',836,'514',700,'778',807,'79',809,'67',809,'71',809,'81":-',836,'625',807,820,'917',700,'75',700,'778',807,'88',809,'87',809,'65',809,'86',809,'89":-',836,'681',807,'65','":-0.0833,"','111',809,'101',809,'97',809,'46',884,'44":-0.','0833}}],[0.','778,0.683',775,'736',807,'116',809,'67',809,'79',809,'71',809,'85',809,'81',809,820,'556',700,'722',807,'121',809,'101',884,'111',884,'114',884,'97',884,'65',884,'117":-0.',894,'75',700,'75',',0.683,0,{ic:0.','0139,',841,'1.03',933,'0139,',841,'0.75',807,'79',809,'67',809,'71',809,'81":-',836,'75',933,'025,krn:{"101',884,'111',884,'114',884,'97',884,'65',884,928,894,'611',700,'278',769,'5',724,'278',769,'5',724,'278,0.668],[0.','278',754,755,'92}}],[0.5',752,'krn:{"118',809,'106":0.0556,"121',809,'119":-',836,'556,0.','694,0',',{krn:{"101":0.0278,"111":0.0278,"120":-0.0278,"100":0.0278,"99":0.0278,"113":0.0278,"118":-0.0278,"106":0.0556,"121":-0.0278,"119":-0.0278}}],[0.',! '444',752,'krn:{"104',809,'107":-',836,'556',724,'444',732,'30! 6',722,' 12,"102":11,"108":13}}],[0.5',',0.431,0.194,{','ic:0.','0139,krn:{"','106":',836,'556',754,'krn:{"116',809,'117',809,'98',809,'121',809,'118',809,'119":-',836,974,'306,0.668',775,'528',754,'krn:{"97','":-0.0556,"','101',809,'97',809,'111',809,'99":-',836,'278',724,'833',752,'krn:{"116',809,'117',809,'98',809,'121',809,'118',809,'119":-',836,'556',752,'krn:{"116',809,'117',809,'98',809,'121',809,'118',809,'119":-',836,'5,0.431,0',988,986,'431,0.194',988,'528',734,'392',732,'394',732,'389,0.615,0,{krn:{"121',809,'119":-',836,'556',752,'krn:{"119":-',836,'528',',0.431,0,{ic:0.',1004,'97',1027,'101',809,'97',809,'111',809,'99":-',836,'722',1086,1004,'101',809,'97',809,'111',809,'99":-',836,'528',732,'528',1002,'ic:0.',1004,'111',809,'101',809,'97',809,'46',884,'44":-0.',894,'444',732,'5',1086,'0278,',778,'124}}],[1',1086,'0278}],[0.','5',724,'5,0.668],[0.5,0.668]],',28,':[[0.615',933,'139',',krn:{"61":-0.0556,"59":-0.111,"58":-0.111,"127":0.',894,'833',807,'127":0.167}}],[0.','7! 63',933,1129,'krn:{"127":0.0833}}],[0.','694',807,1145,'742',933,'0757,',1149,'831',933,'0812,krn:{"61',1027,'59":-0.0556,"58":-0.0556,"127":0.','0556}}],[0.','78',933,'0576,',1149,'583',933,'139',1141,1162,'667',840,1149,'612',933,'11,krn:{"61',1027,1161,1162,'772',933,'0502,',1149,'64',1086,'0037,','krn:{"127":',836,'566',',0.694,0.194,{ic:0.','0528,',1149,'518',1002,'ic:0.0556','}],[0.444',754,'ic:0.0378,krn:{"',1161,1162,'406',752,'krn:{"127":0.0556}}],[0.','438',1191,'0738,',1149,'497',1002,'ic:0.0359',',',1204,'469',754,'ic:0.',1129,1149,'354',752,1204,'576',732,'583',724,'603',1002,1188,836,'494',1086,'0637,krn:{"',1161,'0278}}],[0.','438',1191,'046,',1188,'0.111}}],[0.','57',1086,'0359}],[0.','517',1002,1149,'571',1086,'0359,krn:{"59',1027,'58":-0.',1162,'437',1086,'113,krn:{"',1161,1234,'54',1086,'0359,',1188,836,'596,0.694,0.194,{',1149,'626',1002,1204,'651',1191,'0359,',1188,1239,'622',1086,1242,'466',752,1149,'591',754,1149,'828',1086,1133,'517',1002,1149,'363,0! .431,0.0972,{ic:0.0799,',1149,'654',1002,1188,'0.0833}}],[1',7! 98,'1',7 98,'1',798,'1',798,'0.278',',0.464,-0.0363],[','0.278',1301,'0.5,0.465,-0.0347],[',1304,'0.5',732,'5',732,'5',732,'5',734,'5',734,'5,0.',1069,784,1069,784,'431',775,'278,0.106],[',774,775,'778',',0.539,0.0391],[','0.5,0.75,0.25,{krn:{"1',1027,'65',1027,'77',1027,'78',1027,'89":0.0556,"90":-0.',1162,'778',1327,1304,'0.531',754,1196,',',1149,'75',807,'127":','0.','139}}],[0.','759',933,'0502,',1149,'715',933,'0715,krn:{"61',809,1161,894,'828',933,1129,1204,'738',933,'0576,',1149,'643',933,'139',1141,894,'786',840,1149,'831',933,'0812,krn:{"61',1027,1161,1162,'44',933,'0785,',1188,1239,'555',933,'0962',1141,'167}}],[0.','849',933,'0715,krn:{"61',1027,1161,1162,'681',807,1348,836,'97',933,'109,krn:{"','61',1027,1161,894,'803',933,1405,'61',884,'61',809,1161,894,'763',933,1129,1149,'642',933,'139',1141,894,'791,0.683,0.194,{',1149,'759',933,'00773,',1149,'613',933,'0576,krn:{"61',1027,1161,894,'584',933,'139,krn:{"61',809,1161,894,'683',933,1405,'59":-0.111,"',1250,'111,"61',1027! ,1348,836,'583',933,'222',',krn:{"59":-0.167,"58":-0.167,"61":-0.111}}],[0.','944',933,'139',1458,'828',933,'0785,krn:{"61',884,'61',809,1161,894,'581',933,'222',1458,'683',933,'0715,krn:{"61',1027,1161,894,'389,0.75],[0.389',759,'0.389',759,'1,0.358,-0.142],[',1485,'0.417',754,1188,1239,'529',732,'429',724,'433',752,1204,'52',754,'krn:{"89":0.0556,"90',1027,'106":-0.111,"102":-0.167,"',1145,'466',752,1204,'49',1191,'108,krn:{"',1161,1392,'477',1002,1211,',',1188,836,'576',754,'krn:{"127":-',836,'345,0.66],[0.412,0.66,0.194,{ic:0.0572,krn:{"59',1027,1250,1162,'521',754,'ic:0.0315}],[0.298',754,'ic:0.0197,',1149,'878',732,'6',732,'485',752,1204,'503',1002,1149,'446',1002,1211,',',1149,'451',1086,1129,'krn:{"',1161,1162,'469',752,1204,'361,0.615,0,{',1149,'572',752,1188,836,'485',1086,'0359,',1188,836,'716',1086,'0269,',1149,'572',752,1188,836,'49',1002,1211,',',1204,'465',1086,'044,',1204,'322',752,1188,836,'384',1002,1149,'636',1002,1188,1239,'5,0.714,0,{ic:0.154}],[0.278',! 754,'ic:0.399}]],',39,':[[',773,'0.278,0.444,-0.0556],[',773,1! 304,773, '0.5,0.444,-0.0556],[',773,773,773,773,773,773,773,'1',759,1605,1605,'0.778',1301,'0.778,0.464,-0.0363','],[0.778,0.636,0.136',1620,1620,1620,1620,1620,'],[0.778',798,'0.778,0.483,-0.0169],[0.778',1327,'0.778',1327,'1',1327,'1',1327,'0.778',1327,'0.778',1327,'1',798,'1',798,'0.5',759,'0.5',759,'1',798,'1',759,'1',759,'0.778',1301,'1',798,'1',798,'0.611',759,'0.611',759,'1',798,'1',759,'1',759,'0.778',732,'275,0.556],[1',732,'667',1327,'0.667',1327,'0.889',759,'0.889',759,'0',759,'0',798,'0.556',724,'556',724,'667',732,'5',761,'722',724,'722',724,'778',724,'778',724,'611',724,'798',807,'48":0.','194}}],[0.657',933,'0304',',krn:{"48":0.',1350,'527',933,'0583',1710,1350,'771',933,'0278',1710,894,'528',933,'0894',1710,'111}}],[0.','719',933,'0993',1710,1726,'595',',0.683,0.0972,{ic:0.','0593',1710,1726,'845',933,'00965',1710,1726,'545',933,'0738,krn:{"48":',836,'678',1733,'185',1710,1392,'762',933,'0144',1710,1162,'69',807,1706,'139}}],[1.2',807,1706,1350,'82',933,'147',1710,894! ,'796',933,1719,1710,1726,'696',933,'0822',1710,894,'817,0.683,0.0972,{krn:{"48":',1239,'848',807,1706,894,'606',933,'075',1710,1350,'545',933,'254,krn:{"48":',836,'626',933,'0993',1710,894,'613',933,'0822,krn:{"48":',836,'988',933,'0822',1710,894,'713',933,'146',1710,1350,'668',1733,'0822',1710,894,'725',933,'0794',1710,1350,'667,0.556],[0.',1822,1822,1822,1822,'611',724,'611',724,'444',769,'444',769,'444',769,'444',769,'5',769,'5',769,'389',769,'389',769,'278',769,'5',769,'5',769,'611',769,'5',769,'278',759,'0.833,0.04,0.96],[0.75',700,'833',700,'417',1191,'111}],[0.',1822,'667,0.556',1620,1620,'],[0.444',759,'0.444',759,'0.444',759,'0.611',759,'0.778,0.694,0.13','],[',1878,'],[',1878,'],[',1878,']],',50,':[[0.458',',0.04,1.16,{n:','16}],[0.458',1888,'17}],[0.417',1888,'104}],[0.417',1888,'105','}],[0.472,0.04,1.16,{n:','106',1896,'107',1896,'108',1896,'109}],[0.583',1888,'110}],[0.583',1888,'111',1896,'68',1896,'69}],[0.333',',0,0.6,{delim:{rep:','12}}],[0.556',1912,'13}! }],[0.578',1888,'46}],[0.578',1888,'47}],[0.597',',0.04,1.76,{! n:','18} ],[0.597',1920,'19}],[0.736',',0.04,2.36,{n:','32}],[0.736',1924,'33}],[0.528',1924,'34}],[0.528',1924,'35}],[0.583',1924,'36}],[0.583',1924,'37}],[0.583',1924,'38}],[0.583',1924,'39}],[0.75',1924,'40}],[0.75',1924,'41}],[0.75',1924,'42}],[0.75',1924,'43}],[1.04',1924,'44}],[1.04',1924,'45}],[0.792',',0.04,2.96,{n:','48}],[0.792',1952,'49}],[0.583',1952,'50}],[0.583',1952,'51}],[0.639',1952,'52}],[0.639',1952,'53}],[0.639',1952,'54}],[0.639',1952,'55}],[0.806',1952,'56}],[0.806',1952,'57}],[0.806',',0.04,2.96],[','0.806',1972,'1.28',1972,'1.28',1972,'0.811',1920,'30}],[0.811',1920,'31}],[0.875',',0.04,1.76,{delim:{top:','48,bot:64,rep:66}}],[0.875',1984,'49,bot:65,rep:67}}],[0.667',1984,'50,bot:52,rep:54}}],[0.667',1984,'51,bot:53,rep:55','}}],[0.667,0.04,1.76,{delim:{bot:','52,rep:54',1992,'53,rep:55','}}],[0.667,0,0.6,{delim:{top:','50,rep:54',1996,'51,rep:55','}}],[0.889,0,0.9,{delim:{top:','56,mid:60,bot:58,rep:62',2000,'57,mid:61,bot:59,rep:62',2000,'56,bot:58,rep:62',2! 000,'57,bot:59,rep:62','}}],[0.889,0,1.8,{delim:{rep:','63',2008,'119}}],[0.889,0,0.3,{delim:{rep:62',1996,'120,bot:121,rep:63}}],[0.875',1984,'56,bot:59,rep:62}}],[0.875',1984,'57,bot:58,rep:62}}],[0.875',1912,'66}}],[0.875',1912,'67}}],[0.611',1920,'28}],[0.611',1920,'29','}],[0.833,0,1,{n:','71}],[1.11',',0.1,1.5],[','0.472,0,1.11,{ic:0.194,n:','73}],[','0.556,0,2.22,{ic:0.444}],[1.11,0',',1,{n:75}],[1.51,0','.1,1.5],[1.11,0',',1,{n:77}],[1.51,0',2033,',1,{n:79}],[1.51',2028,'1.06,0,1,{n:88}],[0.944,0,1,{n:89}],[',2029,'90',2026,'91',2026,'92',2026,'93',2026,'94',2026,'95}],[1.44',2028,'1.28',2028,2031,2033,2033,2033,2033,'.1,1.5],[0.944,0,1,{n:97}],[1.28',2028,'0.556,0.722,0,{n:','99','}],[1,0.75,0,{n:','100}],[1.44,0.75],[',2061,'102',2063,'103}],[1.44,0.75],[0.472',1920,'20}],[0.472',1920,'21}],[0.528',1920,'22}],[0.528',1920,'23}],[0.528',1920,'24}],[0.528',1920,'25}],[0.667',1920,'26}],[0.667',1920,'27}],[1',1888,'113}],[1',1920,'114}],[1',1924,'115}],[1',1952,'116}! ],[1.06,0,1.8,{delim:{top:118,b'], - ['ot:116,rep:117}}],[1.06,0,0.6],[1.06,0.04,0.56],[0.778',',0,0.6,{delim:{','top:126,','bot:127,rep:119','}}],[0.','667',1,'top:120,rep:63',4,'667',1,'bot:121,rep:63',4,'45,0.12],[0.',13,13,13,'778',1,2,'rep:119',4,'778',1,3,'}}]],cmti10:[[0.627',',0.683,0,{ic:0.','133}],[0.818,0.683],[0.767',26,'094}],[0.','692,0.683],[0.664',26,'153}],[0.743',26,'164}],[0.','716',26,'12}],[0.','767',26,'111}],[0.716',26,'0599}],[0.767',26,'111}],[0.716',26,'103}],[0.','613',',0.694',',0.194,{ic:0.','212,krn:{"39":0.104,"63":0.104,"33":0.104,"41":0.104,"93":0.104},lig:{"105":','14,"108":15',4,'562',48,49,46,'588',48,49,46,'882',48,49,46,'894',48,49,46,'307',',0.431,0,{ic:0.','0767}],[0.','332,0.431',49,'0374}],[0.511',',0.694],[0.','511',',0.694,0,{ic:0.','0969','}],[0.511,0.','628',',0,{ic:0.','083}],[0.511',77,'108',79,'562',81,46,'831',75,'46,0,0.17],[0.537',48,49,'105}],[0.','716',70,'0751','}],[0.716',70,97,79,'528,0.0972,{ic:0.0919}],[0.883',26,37,'985',26,37,'767,0.732,0.0486,{ic:! 0.',29,'256,0.431,0,{krn:{"108":-0.256,"76":-0.321',4,'307',77,'124,lig:{"96":','60',4,'514',77,'0696}],[0.818',48,49,'0662}],[0.769',75,'818',',0.75,0.0556',',{ic:0.136}],[0.','767',77,'0969}],[0.307',77,'124',',krn:{"','63":0.102,"33":0.102},lig:{"39":34',4,'409',',0.75,0.25,{ic:0.','162}],[0.409',136,'0369',79,'75',81,'149}],[0.767,0.562,0.0567,{ic:0.0369','}],[0.307,0.','106',',0.194],[0.','358',70,'0283,lig:{"45":123',4,'307,0.106],[0.511',136,'162',79,'644,0',',{ic:0.136}],[0.511,0.644,0',156,156,156,'.194',156,156,156,160,156,156,126,'307',70,'0582',144,'431',49,'0582',144,'5',49,'0756}],[0.767,0.367,-0.133,{ic:0.0662',79,'5',146,'511',77,'122,lig:{"96":62',4,'767',77,'096}],[0.743,0.683,0,{','krn:{"110":-0.0256,"108":-0.0256,"114":-0.0256,"117":-0.0256,"109":-0.0256,"116":-0.0256,"105":-0.0256,"67":-0.0256,"79":-0.0256,"71":-0.0256,"104":-0.0256,"98":-0.0256,"85":-0.0256,"107":-0.0256,"118":-0.0256,"119":-0.0256,"81":-','0.0256,"84','":-0.0767,"','89',191,'86','":-0! .102,"','87',195,'101":-0.0511,"97":-0.0511,"111":-0.0511,"100! ":-0.051 1,"99":-0.0511,"103":-0.0511,"113":-0.0511}}],[0.','704',26,46,'716',26,'145}],[0.','755',26,'094',132,'88','":-0.0256,"','87',210,'65',210,'86',210,'89','":-0.0256',4,'678',26,37,'653',26,'133',132,'111',191,'101',191,'117','":-0.0767,"114":-0.0767,"97":-0.0767,"','65',195,'79":-0.0256,"67":-0.0256,"71":-0.0256,"81":-0.0256}}],[0.','774',26,'0872}],[0.743',26,34,'386',26,'158}],[0.525',26,'14}],[0.769',26,'145',132,235,'627,0.683,0,{krn:{"84',191,'89',191,'86',195,'87',195,198,'897',26,34,'743',26,34,'767',26,'094',132,'88',210,'87',210,'65',210,'86',210,'89',218,4,'678',26,'103',132,'65":-0.0767}}],[0.','767,0.683',49,29,'729',26,'0387,',189,'0.0256,"84',191,'89',191,'86',195,'87',195,198,'562',26,37,'716',26,'133',132,'121',191,'101',191,'111',232,'117',191,284,'743',26,34,'743',26,'184',132,'111',191,'101',191,'117',232,'65',195,235,'999',26,'184',132,284,'743',26,'158',132,235,'743',26,'194',132,'101',191,'111',232,'117',191,284,'613',26,204,'307',136,'188}],[0.514',77,! '169}],[0.307',136,94,'511',77,'0665',144,'668',81,'118}],[0.307',77,114,'92',4,'511',70,71,'46',77,'0631',132,198,'46',70,'0565',132,198,'511',77,'103',',krn:{"108":0.0511}}],[0.','46',70,97,132,198,'307',48,49,50,'12,"102":11,"108":13}}],[0.','46,0.431',49,'0885}],[0.','511',77,71,'307,0.655',81,'102',144,'655',49,204,'46',77,'108}],[0.','256',77,'103',391,'818',70,71,'562',70,'0767',132,'39":-0.102',4,'511',70,'0631',132,198,'511,0.431',49,'0631',132,198,'46,0.431',49,404,'422',70,'108',132,198,'409',70,'0821}],[0.332,0.615',81,'0949}],[0.537',70,71,'46',70,417,'664',70,'108',391,'464',70,37,'486,0.431',49,404,'409',70,'123}],[0.511',70,'0921',',lig:{"45":124}}],[1.','02',70,'0921}],[0.511',77,'122',79,'668',81,'116',79,'668',81,'105}]],cmbx10:[[0.692',',0.686],[0.','958',488,'894',488,'806',488,'767',488,'9',488,'831',488,'894',488,'831',488,'894',488,'831',488,'671',77,'109,krn:{"39":0.109,"63":0.109,"33":0.109,"41":0.109,"93":0.109},lig:{"105":','14,"108":15',4,'639',! 75,'639',75,'958',75,'958',75,'319',',0.444],[0.','351,0.444',! 146,'575 ',75,'575',75,'575,0.','632],[0.575',75,530,'596],[0.869',75,'511,0,0.17],[0.597',75,'831',523,'894',523,530,'542,0.0972],[1.04,0.686],[1.17',488,'894,0.735,0.0486],[0.319',',0.444,0,{krn:{"','108":-0.319,"76":-0.378',4,'35',',0.694,0,{lig:{"96":','60',4,'603',75,'958',48,146,'575',125,'],[0.958',125,'],[0.894',75,'319',',0.694,0,{krn:{"','63":0.128,"33":0.128},lig:{"39":34',4,'447',',0.75,0.25],[0.','447',569,530,'75],[0.894,0.633,0.133],[0.','319,0.156',146,'383,0.444,0,{lig:{"45":123',4,574,'],[0.575',569,530,'644],[','0.575,0.644],[0.575,0.644],[',583,583,583,'0.',530,'644],[0.319',523,'319,0.444',146,'35,0.5',146,'894,0.391,-0.109],[0.543,0.5',146,'543',550,'62',4,'894',75,'869',',0.686,0,{krn:{"','116','":-0.0319,"','67',606,'79',606,'71',606,'85',606,'81',606,'84":-0.0958,"89":-0.0958,"86":-0.128,"87":-0.128}}],[','0.818',488,'831',488,'882',604,'88',606,'87',606,'65',606,'86',606,'89','":-0.0319}}],[0.','756',488,'724,0.686,0,{','krn:{"111":-0.0958,"101":-0.0958,"117! ":-0.0958,"114":-0.0958,"97":-0.0958,"65":-0.128,"79":-0.0319,"67":-0.0319,"71":-0.0319,"81":-0.0319}}],[','0.904',488,'9',488,'436',604,'73":0.0319',4,'594',488,'901',604,'79',606,'67',606,'71',606,'81',633,'692',604,617,'1.09',488,'9',488,'864',604,'88',606,'87',606,'65',606,'86',606,'89',633,'786',604,'65":-0.0958,"111',606,'101',606,'97',606,'46":-0.0958,"44":-0.0958}}],[0.','864,0.686',146,'862',604,'116',606,'67',606,'79',606,'71',606,'85',606,'81',606,617,'0.639',488,'8',604,'121',606,'101":-0.0958,"111":-0.0958,"114":-0.0958,"97":-0.0958,"65":-0.0958,"117":-0.0958}}],[0.','885',488,'869,0.686',81,'016,',637,'1.19,0.686',81,'016,',637,'0.869',604,'79',606,'67',606,'71',606,'81',633,'869,0.686',81,'0287',132,709,'703',488,'319',569,'603',75,'319',569,'575',75,'319',75,'319',550,'92',4,'559',546,'118',606,'106":0.0639,"121',606,'119',633,'639',48,',0',',{krn:{"101":0.0319,"111":0.0319,"120":-0.0319,"100":0.0319,"99":0.0319,"113":0.0319,"118":-0.0319,"106":0.0639,"121":! -0.0319,"119":-0.0319}}],[0.','511',546,'104',606,'107',633,'6! 39',75,' 527',523,'351',77,511,401,530,'444',49,'016',132,'106":0.0319',4,'639',565,'116',606,'117',606,'98',606,'121',606,'118',606,'119',633,'319',75,'351',48,146,'607',565,'97":-0.0639,"101',606,'97',606,'111',606,'99',633,'319',75,'958',546,'116',606,'117',606,'98',606,'121',606,'118',606,'119',633,'639',546,'116',606,'117',606,'98',606,'121',606,'118',606,'119',633,530,'444,0',762,'639,0.444,0',160,762,'607,0.444',146,'474',523,'454',523,'447,0.635,0,{krn:{"121',606,'119',633,'639',546,'119',633,849,81,'016',132,'97":-0.0639,"101',606,'97',606,'111',606,'99',633,'831,0.444',81,'016',132,'101',606,'97',606,'111',606,'99',633,'607',523,849,49,'016',132,'111',606,'101',606,'97',606,685,'511',523,530,'444',81,'0319',474,'15,0.444',81,'0319}],[0.575',75,'575',75,'575',48,']]};','jsMath.Img','={fonts:[50,60,70,85,100,120,144,173,207,249,298,358,430],w:{"50":6.9,"60":8.3,"70":9.7,"85":11.8,"100":13.9,"120":16.7,"144":20,"173":24,"207":28.8,"249":34.6,"298":41.4,"358":49.8,"430":59.8},b! est:4,update:{},factor:1,loaded:0,SetFont',':function(','B){for(var A in B){if(!','this.update[A',']){',920,']=[]}',920,']=',920,'].concat(B[A])}},AddFont',918,'A,B){if(!',916,'[A]){',916,'[A]={}}jsMath.Add(',916,'[A],B)},UpdateFonts',':function(){','var D=this.update;','if(!this.loaded){','return }for(var A in D){for(var B=0;B<D[A].length;B++){var C=D[A][B];if(C=="all"){for(C in ','jsMath.TeX[','A]){',940,'A][C].img','={}}}else{',940,943,'={}}}}this.update={}},BestSize',936,'var B=jsMath.em*this.factor;var A=','this.w[this.fonts[','0]];for(var C=1;C<this.fonts.length;C++){if(B<(',950,'C]]+2*A)/3){return C-1}A=',950,'C]]}return C-1},Scale',936,938,'return }this.best=this.BestSize();this.em=',916,'.w[this.fonts[this.best]];','this.scale','=(jsMath.em/this.em);','if(Math.abs(',961,'-1)<0.12){',961,'=1}},URL',918,'A,B,E){var D=(','jsMath.Controls.cookie.','alpha)?"/alpha/":"/plain/";','if(E==null','){E="def.js"}else{E="char"+E+".png"}if(B!=""){B+="/"}','return this.','root+A+D! +B+E},LoadFont',918,'A){',938,'this.Init()}jsMath.Setup.Script! (this.UR L(A,""))},Init',936,'if(',970,'print||',970,'stayhires','){',970,'print=',970,985,';this.factor*=3;if(!','jsMath.Controls.','isLocalCookie||!jsMath.Global.isLocal){',992,'SetCookie(0)}if(','jsMath.Browser.','alphaPrintBug){',970,'alpha=0}}var B="0123456789ABCDEF";this.HexCode=[];for(var C=0;C<128;C++){var D=Math.floor(C/16);var A=C-16*D;this.HexCode[C]=B.charAt(D)+B.charAt(A)}this.loaded=1}};jsMath.HTML={Em',918,'A){var C=','5;if(A<0){C++}',963,'A)<0.000001){A=0}v... [truncated message content] |