<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The html blog &#187; XML</title>
	<atom:link href="http://htmlblog.net/category/xml/feed/" rel="self" type="application/rss+xml" />
	<link>http://htmlblog.net</link>
	<description>The web sandbox of Asvin Balloo</description>
	<lastBuildDate>Wed, 07 Oct 2009 17:20:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>9 tips to validate your XHTML code</title>
		<link>http://htmlblog.net/9-tips-to-validate-your-xhtml-code/</link>
		<comments>http://htmlblog.net/9-tips-to-validate-your-xhtml-code/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 15:29:14 +0000</pubDate>
		<dc:creator>asvin</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[embed flash]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[validator]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://htmlblog.net/?p=41</guid>
		<description><![CDATA[

What is validation ?
According to the W3c, Validation is a process of checking your documents against a formal Standard, such as those published by the World Wide Web Consortium (W3C)  for HTML and XML-derived Web document types, or by the WapForum for WML, etc. It serves a similar purpose to spell checking and proofreading [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2297/2131136676_7e5c0544e7.jpg?v=0" alt="HTML Code" /></p>
<div style="clear:both"></div>
<p><strong>What is validation ?</strong><br />
According to the <a href="http://validator.w3.org/docs/why.html" target="_blank">W3c</a>, Validation is a process of checking your documents against a formal Standard, such as those published by the <a href="http://www.w3.org/" target="_blank">World Wide Web Consortium (W3C)</a>  for HTML and XML-derived Web document types, or by the WapForum for WML, etc. It serves a similar purpose to spell checking and proofreading for grammar and syntax, but is much more precise and reliable than any of those processes because it is dealing with precisely-specified machine languages, not with nebulously-defined human natural language.</p>
<hr/>
<p><strong>Why taking the trouble to validate your XHTML ?</strong></p>
<ul>
<li>Properly written XHTML code will render better, render on more browsers, and render faster than XHTML with errors. It's also more easily adapted to print and alternative browsing devices like mobile phones and handheld computers.</li>
<li>Properly written XHTML code is more likely to be "future-proof" (backward compatible with future standards and future web browsers).</li>
<li>Browsers are becoming more standards compliant, and it is becoming increasingly necessary and important to write valid and standards compliant XHTML code</li>
<li>Poorly written XHTML can greatly reduce the amount of traffic your web site receives from search engines.</li>
<li>Write XHTML code right the first time and write it once.</li>
<li>You don't want to look foolish among your friends while not knowing the rules, uh?</li>
</ul>
<p><span id="more-41"></span></p>
<hr/>
<p><strong>Tip 1: Specify a DOCTYPE and namespace</strong><br />
Include a <a href="http://en.wikipedia.org/wiki/Document_Type_Declaration" target="_blank">DOCTYPE</a> at the top of your page and specify the <a href="http://en.wikipedia.org/wiki/XML_Namespace" target="_blank">namespace</a></p>
<p>For XHTML1.0 Strict</p>
<pre class="html4strict">&nbsp;
<span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;</span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/html.html"><span style="color: #000000; font-weight: bold;">&lt;html</span></a> xmlns=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;</pre>
<p>For XHTML1.0 Transitional</p>
<pre class="html4strict">&nbsp;
<span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/html.html"><span style="color: #000000; font-weight: bold;">&lt;html</span></a> xmlns=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;</pre>
<p>For XHTML1.0 Frameset</p>
<pre class="html4strict">&nbsp;
<span style="color: #00bbdd;">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Frameset//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd&quot;&gt;</span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/html.html"><span style="color: #000000; font-weight: bold;">&lt;html</span></a> xmlns=<span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;</pre>
<hr/>
<p><strong>Tip 2: Specify the character encoding</strong></p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/meta.html"><span style="color: #000000; font-weight: bold;">&lt;meta</span></a> <span style="color: #000066;">http-equiv</span>=<span style="color: #ff0000;">&quot;Content-Type&quot;</span> <span style="color: #000066;">content</span>=<span style="color: #ff0000;">&quot;text/html; charset=utf-8&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;</pre>
<hr />
<p><strong>Tip 3: Avoid using deprecated tags and attributes.</strong><br />
Deprecated tags :</p>
<ul>
<li>applet</li>
<li>basefont</li>
<li>center</li>
<li>dir</li>
<li>font</li>
<li>isindex</li>
<li>menu</li>
<li>s</li>
<li>strike</li>
<li>u</li>
</ul>
<p>Deprecated attributes and tags in which they are deprecated :</p>
<ul>
<li>align (caption, img, input, object, legend, table, hr, div, h1, h2, h3, h4, h5, h6, p)</li>
<li>alink, link, vlink (body)</li>
<li>background (body)</li>
<li>bgcolor (table, tr, td, th, body)</li>
<li>border (img, object)</li>
<li>clear (br)</li>
<li>compact (dl, ol, ul)</li>
<li>height (td, th)</li>
<li>hspace (img, object)</li>
<li>language (script)</li>
<li>name (img, a, applet, form, frame, iframe, map)</li>
<li>noshade (hr)</li>
<li>nowrap (td, th)</li>
<li>size (hr)</li>
<li>start (ol)</li>
<li>target (a)</li>
<li>text (body)</li>
<li>type (li, ol, ul)</li>
<li>value (li)</li>
<li>version (html)</li>
<li>vspace (img, object)</li>
<li>width (hr, td, th, pre)</li>
</ul>
<hr />
<p><strong>Tip 4: All tags in lowercase</strong><br />
All tags and attribute names must be in lower case and attribute values must be between double quotes ("), i.e</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;DIV&gt;</span></a></span>
	<span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;Img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;test.jpg&quot;</span> <span style="color: #000066;">ID</span>=myimage <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">'logo'</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/DIV&gt;</span></span>
&nbsp;</pre>
<p>is incorrect while correct version goes like this:</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div&gt;</span></a></span>
	<span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;test.jpg&quot;</span> <span style="color: #000066;">id</span>=<span style="color: #ff0000;">&quot;myimage&quot;</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">&quot;logo&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span>
&nbsp;</pre>
<hr/>
<p><strong>Tip 5: XHTML must be well-formed</strong><br />
All opening tags must have closing ones, or if the tag is empty, like br tag, it must have a closing slash. For e.g</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div&gt;</span></a></span>
&nbsp;
this is a paragraph
&nbsp;
	<span style="color: #009900;"><a href="http://december.com/html/4/element/br.html"><span style="color: #000000; font-weight: bold;">&lt;br&gt;</span></a></span>
<span style="color: #009900;"><a href="http://december.com/html/4/element/hr.html"><span style="color: #000000; font-weight: bold;">&lt;hr&gt;</span></a></span>
	<span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;images.jpg&quot;</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">&quot;my company&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span>
&nbsp;</pre>
<p>is invalid. The correct code:</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div&gt;</span></a></span>
&nbsp;
this is a paragraph
&nbsp;
&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/hr.html"><span style="color: #000000; font-weight: bold;">&lt;hr</span></a> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
	<span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;images.jpg&quot;</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">&quot;my company&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span>
&nbsp;</pre>
<p>Also, tags must be properly nested can can't overlap. An example of bad nesting is</p>
<pre class="html4strict">&nbsp;
&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div&gt;</span></a></span><span style="color: #009900;"><a href="http://december.com/html/4/element/strong.html"><span style="color: #000000; font-weight: bold;">&lt;strong&gt;</span></a></span>this is a paragraph<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span>
&nbsp;
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/strong&gt;</span></span>
&nbsp;
&nbsp;</pre>
<p>It should be like this in order to validate:</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/div.html"><span style="color: #000000; font-weight: bold;">&lt;div&gt;</span></a></span>
&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/strong.html"><span style="color: #000000; font-weight: bold;">&lt;strong&gt;</span></a></span>this is a paragraph<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/strong&gt;</span></span>
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/div&gt;</span></span>
&nbsp;</pre>
<hr/>
<p><strong>Tip 6: Images must always have alt attribute</strong><br />
According to the W3C recommendations, the "alt" attribute specifies an alternate text for user agents that cannot display images. Including the alt attribute will not only validate your code but also improve your search engine rankings. In Google's webmaster guidelines, they advise the use of alternative text for images since they can't see the images. Instead they rely on the alt attribute.</p>
<p>Correct code :</p>
<pre class="html4strict">&nbsp;
	<span style="color: #009900;"><a href="http://december.com/html/4/element/img.html"><span style="color: #000000; font-weight: bold;">&lt;img</span></a> <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;images/logo.jpg&quot;</span> <span style="color: #000066;">alt</span>=<span style="color: #ff0000;">&quot;My Company&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span>
&nbsp;</pre>
<hr/>
<p><strong>Tip 7: Surround your javascript between CDATA tags</strong><br />
If you're not using external javascript files, to prevent the validator from spitting errors from your javascript code, </p>
<p>simply surround them within CDATA tags, like this:</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/script.html"><span style="color: #000000; font-weight: bold;">&lt;script</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;text/javascript&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span>
/* <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span>!<span style="color: #66cc66;">&#91;</span>CDATA<span style="color: #66cc66;">&#91;</span> */
var myfunction = function<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#123;</span>
&nbsp;
<span style="color: #66cc66;">&#125;</span>;
/* <span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#93;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span> */
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/script&gt;</span></span>
&nbsp;</pre>
<hr/>
<p><strong>Tip 8 : Encode HTML character entities</strong></p>
<pre class="html4strict">&nbsp;
	<span style="color: #009900;"><span style="color: #808080; font-style: italic;">&lt;!-- incorrect --&gt;</span></span>
	my brother <span style="color: #ddbb00;">&amp; me</span>
&nbsp;
<span style="color: #ddbb00;">	&lt;!-- correct --&gt;</span>
<span style="color: #ddbb00;">	my brother &amp;amp;</span> me
&nbsp;</pre>
<hr/>
<p><strong>Tip 9: Correct way to embed flash movies</strong><br />
Code which won't validate</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/object.html"><span style="color: #000000; font-weight: bold;">&lt;object</span></a> <span style="color: #000066;">classid</span>=<span style="color: #ff0000;">&quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&quot;</span> <span style="color: #000066;">codebase</span>=<span style="color: #ff0000;">&quot;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0&quot;</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">&quot;30&quot;</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">&quot;30&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><a href="http://december.com/html/4/element/param.html"><span style="color: #000000; font-weight: bold;">&lt;param</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;movie&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;music/sound.swf&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><a href="http://december.com/html/4/element/param.html"><span style="color: #000000; font-weight: bold;">&lt;param</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;quality&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;high&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;">&lt;embed <span style="color: #000066;">src</span>=<span style="color: #ff0000;">&quot;music/sound.swf&quot;</span> quality=<span style="color: #ff0000;">&quot;high&quot;</span> pluginspage=<span style="color: #ff0000;">&quot;http://www.macromedia.com/go/getflashplayer&quot;</span> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;application/x-shockwave-flash&quot;</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">&quot;30&quot;</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">&quot;30&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;</span>/embed&gt;</span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/object&gt;</span></span>
&nbsp;</pre>
<p>Correct way to embed flash movies</p>
<pre class="html4strict">&nbsp;
<span style="color: #009900;"><a href="http://december.com/html/4/element/object.html"><span style="color: #000000; font-weight: bold;">&lt;object</span></a> <span style="color: #000066;">type</span>=<span style="color: #ff0000;">&quot;application/x-shockwave-flash&quot;</span> <span style="color: #000066;">data</span>=<span style="color: #ff0000;">&quot;music/sound.swf&quot;</span> <span style="color: #000066;">width</span>=<span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">height</span>=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><a href="http://december.com/html/4/element/param.html"><span style="color: #000000; font-weight: bold;">&lt;param</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;movie&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;music/sound.swf&quot;</span> /<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><a href="http://december.com/html/4/element/param.html"><span style="color: #000000; font-weight: bold;">&lt;param</span></a> <span style="color: #000066;">name</span>=<span style="color: #ff0000;">&quot;quality&quot;</span> <span style="color: #000066;">value</span>=<span style="color: #ff0000;">&quot;high&quot;</span>/<span style="color: #000000; font-weight: bold;">&gt;</span></span><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/object&gt;</span></span>
&nbsp;</pre>
<p>Or if you want you can use <a href="http://code.google.com/p/swfobject/" target="_blank">swfobject</a> which offers optimized Flash Player embed methods.</p>
]]></content:encoded>
			<wfw:commentRss>http://htmlblog.net/9-tips-to-validate-your-xhtml-code/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HTML entities within XSL</title>
		<link>http://htmlblog.net/html-entities-and-xsl/</link>
		<comments>http://htmlblog.net/html-entities-and-xsl/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 08:32:33 +0000</pubDate>
		<dc:creator>asvin</dc:creator>
				<category><![CDATA[XML]]></category>
		<category><![CDATA[xml xsl stylesheet html entities]]></category>

		<guid isPermaLink="false">http://htmlblog.net/?p=18</guid>
		<description><![CDATA[You want to have
&#38;nbsp;
 in your XSL stylesheet but you're getting an error, just put these few lines of code at the top, before the
&#60;xsl:stylesheet...&#62;
 tag :

&#160;
&#60;!DOCTYPE xsl:stylesheet [
&#60;!ENTITY nbsp &#34;&#38;#160;&#34;&#62;
&#60;!ENTITY AElig &#34;&#38;#198;&#34;&#62;
&#60;!ENTITY AMP &#34;&#38;amp;#38;&#34;&#62;
&#60;!ENTITY Aacute &#34;&#38;#193;&#34;&#62;
&#60;!ENTITY Acirc &#34;&#38;#194;&#34;&#62;
&#60;!ENTITY Agrave &#34;&#38;#192;&#34;&#62;
&#60;!ENTITY Alpha &#34;&#38;#913;&#34;&#62;
&#60;!ENTITY Aring &#34;&#38;#197;&#34;&#62;
&#60;!ENTITY Atilde &#34;&#38;#195;&#34;&#62;
&#60;!ENTITY Auml &#34;&#38;#196;&#34;&#62;
&#60;!ENTITY Beta &#34;&#38;#914;&#34;&#62;
&#60;!ENTITY COPY &#34;&#38;#169;&#34;&#62;
&#60;!ENTITY Ccedil &#34;&#38;#199;&#34;&#62;
&#60;!ENTITY [...]]]></description>
			<content:encoded><![CDATA[<p>You want to have
<pre class="html4strict"><span style="color: #ddbb00;">&amp;nbsp;</span></pre>
<p> in your XSL stylesheet but you're getting an error, just put these few lines of code at the top, before the
<pre class="xml"><span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;xsl:stylesheet</span>...<span style="font-weight: bold; color: black;">&gt;</span></span></pre>
<p> tag :<br />
<span id="more-18"></span></p>
<pre class="xml">&nbsp;
<span style="color: #00bbdd;">&lt;!DOCTYPE xsl:stylesheet [</span>
<span style="color: #00bbdd;">&lt;!ENTITY nbsp &quot;&amp;#160;&quot;&gt;</span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY AElig <span style="color: #ff0000;">&quot;&amp;#198;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY AMP <span style="color: #ff0000;">&quot;&amp;amp;#38;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Aacute <span style="color: #ff0000;">&quot;&amp;#193;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Acirc <span style="color: #ff0000;">&quot;&amp;#194;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Agrave <span style="color: #ff0000;">&quot;&amp;#192;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Alpha <span style="color: #ff0000;">&quot;&amp;#913;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Aring <span style="color: #ff0000;">&quot;&amp;#197;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Atilde <span style="color: #ff0000;">&quot;&amp;#195;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Auml <span style="color: #ff0000;">&quot;&amp;#196;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Beta <span style="color: #ff0000;">&quot;&amp;#914;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY COPY <span style="color: #ff0000;">&quot;&amp;#169;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ccedil <span style="color: #ff0000;">&quot;&amp;#199;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Chi <span style="color: #ff0000;">&quot;&amp;#935;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Dagger <span style="color: #ff0000;">&quot;&amp;#8225;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Delta <span style="color: #ff0000;">&quot;&amp;#916;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ETH <span style="color: #ff0000;">&quot;&amp;#208;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Eacute <span style="color: #ff0000;">&quot;&amp;#201;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ecirc <span style="color: #ff0000;">&quot;&amp;#202;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Egrave <span style="color: #ff0000;">&quot;&amp;#200;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Epsilon <span style="color: #ff0000;">&quot;&amp;#917;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Eta <span style="color: #ff0000;">&quot;&amp;#919;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Euml <span style="color: #ff0000;">&quot;&amp;#203;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY GT <span style="color: #ff0000;">&quot;&amp;#62;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Gamma <span style="color: #ff0000;">&quot;&amp;#915;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Iacute <span style="color: #ff0000;">&quot;&amp;#205;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Icirc <span style="color: #ff0000;">&quot;&amp;#206;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Igrave <span style="color: #ff0000;">&quot;&amp;#204;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Iota <span style="color: #ff0000;">&quot;&amp;#921;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Iuml <span style="color: #ff0000;">&quot;&amp;#207;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Kappa <span style="color: #ff0000;">&quot;&amp;#922;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY LT <span style="color: #ff0000;">&quot;&amp;amp;#60;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Lambda <span style="color: #ff0000;">&quot;&amp;#923;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Mu <span style="color: #ff0000;">&quot;&amp;#924;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ntilde <span style="color: #ff0000;">&quot;&amp;#209;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Nu <span style="color: #ff0000;">&quot;&amp;#925;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY OElig <span style="color: #ff0000;">&quot;&amp;#338;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Oacute <span style="color: #ff0000;">&quot;&amp;#211;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ocirc <span style="color: #ff0000;">&quot;&amp;#212;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ograve <span style="color: #ff0000;">&quot;&amp;#210;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Omega <span style="color: #ff0000;">&quot;&amp;#937;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Omicron <span style="color: #ff0000;">&quot;&amp;#927;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Oslash <span style="color: #ff0000;">&quot;&amp;#216;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Otilde <span style="color: #ff0000;">&quot;&amp;#213;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ouml <span style="color: #ff0000;">&quot;&amp;#214;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Phi <span style="color: #ff0000;">&quot;&amp;#934;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Pi <span style="color: #ff0000;">&quot;&amp;#928;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Prime <span style="color: #ff0000;">&quot;&amp;#8243;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Psi <span style="color: #ff0000;">&quot;&amp;#936;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY QUOT <span style="color: #ff0000;">&quot;&amp;#34;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY REG <span style="color: #ff0000;">&quot;&amp;#174;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Rho <span style="color: #ff0000;">&quot;&amp;#929;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Scaron <span style="color: #ff0000;">&quot;&amp;#352;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Sigma <span style="color: #ff0000;">&quot;&amp;#931;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY THORN <span style="color: #ff0000;">&quot;&amp;#222;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY TRADE <span style="color: #ff0000;">&quot;&amp;#8482;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Tau <span style="color: #ff0000;">&quot;&amp;#932;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Theta <span style="color: #ff0000;">&quot;&amp;#920;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Uacute <span style="color: #ff0000;">&quot;&amp;#218;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ucirc <span style="color: #ff0000;">&quot;&amp;#219;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Ugrave <span style="color: #ff0000;">&quot;&amp;#217;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Upsilon <span style="color: #ff0000;">&quot;&amp;#933;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Uuml <span style="color: #ff0000;">&quot;&amp;#220;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Xi <span style="color: #ff0000;">&quot;&amp;#926;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Yacute <span style="color: #ff0000;">&quot;&amp;#221;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Yuml <span style="color: #ff0000;">&quot;&amp;#376;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY Zeta <span style="color: #ff0000;">&quot;&amp;#918;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY aacute <span style="color: #ff0000;">&quot;&amp;#225;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY aafs <span style="color: #ff0000;">&quot;&amp;#8301;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY acirc <span style="color: #ff0000;">&quot;&amp;#226;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY acute <span style="color: #ff0000;">&quot;&amp;#180;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY aelig <span style="color: #ff0000;">&quot;&amp;#230;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY agrave <span style="color: #ff0000;">&quot;&amp;#224;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY alefsym <span style="color: #ff0000;">&quot;&amp;#8501;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY alpha <span style="color: #ff0000;">&quot;&amp;#945;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY and <span style="color: #ff0000;">&quot;&amp;#8743;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ang <span style="color: #ff0000;">&quot;&amp;#8736;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY aring <span style="color: #ff0000;">&quot;&amp;#229;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ass <span style="color: #ff0000;">&quot;&amp;#8299;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY asymp <span style="color: #ff0000;">&quot;&amp;#8776;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY atilde <span style="color: #ff0000;">&quot;&amp;#227;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY auml <span style="color: #ff0000;">&quot;&amp;#228;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY bdquo <span style="color: #ff0000;">&quot;&amp;#8222;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY beta <span style="color: #ff0000;">&quot;&amp;#946;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY brvbar <span style="color: #ff0000;">&quot;&amp;#166;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY bull <span style="color: #ff0000;">&quot;&amp;#8226;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY cap <span style="color: #ff0000;">&quot;&amp;#8745;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ccedil <span style="color: #ff0000;">&quot;&amp;#231;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY cedil <span style="color: #ff0000;">&quot;&amp;#184;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY cent <span style="color: #ff0000;">&quot;&amp;#162;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY chi <span style="color: #ff0000;">&quot;&amp;#967;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY circ <span style="color: #ff0000;">&quot;&amp;#710;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY clubs <span style="color: #ff0000;">&quot;&amp;#9827;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY cong <span style="color: #ff0000;">&quot;&amp;#8773;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY copy <span style="color: #ff0000;">&quot;&amp;#169;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY crarr <span style="color: #ff0000;">&quot;&amp;#8629;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY cup <span style="color: #ff0000;">&quot;&amp;#8746;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY curren <span style="color: #ff0000;">&quot;&amp;#164;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY dArr <span style="color: #ff0000;">&quot;&amp;#8659;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY dagger <span style="color: #ff0000;">&quot;&amp;#8224;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY darr <span style="color: #ff0000;">&quot;&amp;#8595;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY deg <span style="color: #ff0000;">&quot;&amp;#176;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY delta <span style="color: #ff0000;">&quot;&amp;#948;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY diams <span style="color: #ff0000;">&quot;&amp;#9830;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY divide <span style="color: #ff0000;">&quot;&amp;#247;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY eacute <span style="color: #ff0000;">&quot;&amp;#233;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ecirc <span style="color: #ff0000;">&quot;&amp;#234;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY egrave <span style="color: #ff0000;">&quot;&amp;#232;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY empty <span style="color: #ff0000;">&quot;&amp;#8709;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY emsp <span style="color: #ff0000;">&quot;&amp;#8195;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ensp <span style="color: #ff0000;">&quot;&amp;#8194;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY epsilon <span style="color: #ff0000;">&quot;&amp;#949;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY equiv <span style="color: #ff0000;">&quot;&amp;#8801;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY eta <span style="color: #ff0000;">&quot;&amp;#951;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY eth <span style="color: #ff0000;">&quot;&amp;#240;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY euml <span style="color: #ff0000;">&quot;&amp;#235;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY exist <span style="color: #ff0000;">&quot;&amp;#8707;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY fnof <span style="color: #ff0000;">&quot;&amp;#402;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY forall <span style="color: #ff0000;">&quot;&amp;#8704;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY frac12 <span style="color: #ff0000;">&quot;&amp;#189;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY frac14 <span style="color: #ff0000;">&quot;&amp;#188;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY frac34 <span style="color: #ff0000;">&quot;&amp;#190;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY frasl <span style="color: #ff0000;">&quot;&amp;#8260;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY gamma <span style="color: #ff0000;">&quot;&amp;#947;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ge <span style="color: #ff0000;">&quot;&amp;#8805;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY hArr <span style="color: #ff0000;">&quot;&amp;#8660;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY harr <span style="color: #ff0000;">&quot;&amp;#8596;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY hearts <span style="color: #ff0000;">&quot;&amp;#9829;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY hellip <span style="color: #ff0000;">&quot;&amp;#8230;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iacute <span style="color: #ff0000;">&quot;&amp;#237;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iafs <span style="color: #ff0000;">&quot;&amp;#8300;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY icirc <span style="color: #ff0000;">&quot;&amp;#238;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iexcl <span style="color: #ff0000;">&quot;&amp;#161;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY igrave <span style="color: #ff0000;">&quot;&amp;#236;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY image <span style="color: #ff0000;">&quot;&amp;#8465;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY infin <span style="color: #ff0000;">&quot;&amp;#8734;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY int <span style="color: #ff0000;">&quot;&amp;#8747;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iota <span style="color: #ff0000;">&quot;&amp;#953;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iquest <span style="color: #ff0000;">&quot;&amp;#191;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY isin <span style="color: #ff0000;">&quot;&amp;#8712;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iss <span style="color: #ff0000;">&quot;&amp;#8298;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY iuml <span style="color: #ff0000;">&quot;&amp;#239;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY kappa <span style="color: #ff0000;">&quot;&amp;#954;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lArr <span style="color: #ff0000;">&quot;&amp;#8656;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lambda <span style="color: #ff0000;">&quot;&amp;#955;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lang <span style="color: #ff0000;">&quot;&amp;#9001;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY laquo <span style="color: #ff0000;">&quot;&amp;#171;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY larr <span style="color: #ff0000;">&quot;&amp;#8592;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lceil <span style="color: #ff0000;">&quot;&amp;#8968;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ldquo <span style="color: #ff0000;">&quot;&amp;#8220;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY le <span style="color: #ff0000;">&quot;&amp;#8804;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lfloor <span style="color: #ff0000;">&quot;&amp;#8970;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lowast <span style="color: #ff0000;">&quot;&amp;#8727;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY loz <span style="color: #ff0000;">&quot;&amp;#9674;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lre <span style="color: #ff0000;">&quot;&amp;#8234;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lrm <span style="color: #ff0000;">&quot;&amp;#8206;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lro <span style="color: #ff0000;">&quot;&amp;#8237;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lsaquo <span style="color: #ff0000;">&quot;&amp;#8249;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY lsquo <span style="color: #ff0000;">&quot;&amp;#8216;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY macr <span style="color: #ff0000;">&quot;&amp;#175;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY mdash <span style="color: #ff0000;">&quot;&amp;#8212;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY micro <span style="color: #ff0000;">&quot;&amp;#181;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY middot <span style="color: #ff0000;">&quot;&amp;#183;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY minus <span style="color: #ff0000;">&quot;&amp;#8722;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY mu <span style="color: #ff0000;">&quot;&amp;#956;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nabla <span style="color: #ff0000;">&quot;&amp;#8711;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nads <span style="color: #ff0000;">&quot;&amp;#8302;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nbsp <span style="color: #ff0000;">&quot;&amp;#160;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ndash <span style="color: #ff0000;">&quot;&amp;#8211;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ne <span style="color: #ff0000;">&quot;&amp;#8800;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ni <span style="color: #ff0000;">&quot;&amp;#8715;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nods <span style="color: #ff0000;">&quot;&amp;#8303;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY not <span style="color: #ff0000;">&quot;&amp;#172;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY notin <span style="color: #ff0000;">&quot;&amp;#8713;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nsub <span style="color: #ff0000;">&quot;&amp;#8836;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ntilde <span style="color: #ff0000;">&quot;&amp;#241;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY nu <span style="color: #ff0000;">&quot;&amp;#957;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY oacute <span style="color: #ff0000;">&quot;&amp;#243;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ocirc <span style="color: #ff0000;">&quot;&amp;#244;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY oelig <span style="color: #ff0000;">&quot;&amp;#339;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ograve <span style="color: #ff0000;">&quot;&amp;#242;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY oline <span style="color: #ff0000;">&quot;&amp;#8254;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY omega <span style="color: #ff0000;">&quot;&amp;#969;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY omicron <span style="color: #ff0000;">&quot;&amp;#959;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY oplus <span style="color: #ff0000;">&quot;&amp;#8853;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY or <span style="color: #ff0000;">&quot;&amp;#8744;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ordf <span style="color: #ff0000;">&quot;&amp;#170;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ordm <span style="color: #ff0000;">&quot;&amp;#186;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY oslash <span style="color: #ff0000;">&quot;&amp;#248;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY otilde <span style="color: #ff0000;">&quot;&amp;#245;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY otimes <span style="color: #ff0000;">&quot;&amp;#8855;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ouml <span style="color: #ff0000;">&quot;&amp;#246;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY para <span style="color: #ff0000;">&quot;&amp;#182;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY part <span style="color: #ff0000;">&quot;&amp;#8706;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY pdf <span style="color: #ff0000;">&quot;&amp;#8236;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY permil <span style="color: #ff0000;">&quot;&amp;#8240;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY perp <span style="color: #ff0000;">&quot;&amp;#8869;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY phi <span style="color: #ff0000;">&quot;&amp;#966;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY pi <span style="color: #ff0000;">&quot;&amp;#960;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY piv <span style="color: #ff0000;">&quot;&amp;#982;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY plusmn <span style="color: #ff0000;">&quot;&amp;#177;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY pound <span style="color: #ff0000;">&quot;&amp;#163;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY prime <span style="color: #ff0000;">&quot;&amp;#8242;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY prod <span style="color: #ff0000;">&quot;&amp;#8719;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY prop <span style="color: #ff0000;">&quot;&amp;#8733;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY psi <span style="color: #ff0000;">&quot;&amp;#968;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rArr <span style="color: #ff0000;">&quot;&amp;#8658;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY radic <span style="color: #ff0000;">&quot;&amp;#8730;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rang <span style="color: #ff0000;">&quot;&amp;#9002;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY raquo <span style="color: #ff0000;">&quot;&amp;#187;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rarr <span style="color: #ff0000;">&quot;&amp;#8594;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rceil <span style="color: #ff0000;">&quot;&amp;#8969;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rdquo <span style="color: #ff0000;">&quot;&amp;#8221;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY real <span style="color: #ff0000;">&quot;&amp;#8476;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY reg <span style="color: #ff0000;">&quot;&amp;#174;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rfloor <span style="color: #ff0000;">&quot;&amp;#8971;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rho <span style="color: #ff0000;">&quot;&amp;#961;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rle <span style="color: #ff0000;">&quot;&amp;#8235;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rlm <span style="color: #ff0000;">&quot;&amp;#8207;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rlo <span style="color: #ff0000;">&quot;&amp;#8238;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rsaquo <span style="color: #ff0000;">&quot;&amp;#8250;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY rsquo <span style="color: #ff0000;">&quot;&amp;#8217;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sbquo <span style="color: #ff0000;">&quot;&amp;#8218;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY scaron <span style="color: #ff0000;">&quot;&amp;#353;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sdot <span style="color: #ff0000;">&quot;&amp;#8901;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sect <span style="color: #ff0000;">&quot;&amp;#167;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY shy <span style="color: #ff0000;">&quot;&amp;#173;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sigma <span style="color: #ff0000;">&quot;&amp;#963;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sigmaf <span style="color: #ff0000;">&quot;&amp;#962;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sim <span style="color: #ff0000;">&quot;&amp;#8764;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY spades <span style="color: #ff0000;">&quot;&amp;#9824;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sub <span style="color: #ff0000;">&quot;&amp;#8834;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sube <span style="color: #ff0000;">&quot;&amp;#8838;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sum <span style="color: #ff0000;">&quot;&amp;#8721;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sup <span style="color: #ff0000;">&quot;&amp;#8835;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sup1 <span style="color: #ff0000;">&quot;&amp;#185;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sup2 <span style="color: #ff0000;">&quot;&amp;#178;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY sup3 <span style="color: #ff0000;">&quot;&amp;#179;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY supe <span style="color: #ff0000;">&quot;&amp;#8839;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY szlig <span style="color: #ff0000;">&quot;&amp;#223;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY tau <span style="color: #ff0000;">&quot;&amp;#964;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY there4 <span style="color: #ff0000;">&quot;&amp;#8756;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY theta <span style="color: #ff0000;">&quot;&amp;#952;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY thetasym <span style="color: #ff0000;">&quot;&amp;#977;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY thinsp <span style="color: #ff0000;">&quot;&amp;#8201;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY thorn <span style="color: #ff0000;">&quot;&amp;#254;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY tilde <span style="color: #ff0000;">&quot;&amp;#732;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY times <span style="color: #ff0000;">&quot;&amp;#215;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY trade <span style="color: #ff0000;">&quot;&amp;#8482;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY uArr <span style="color: #ff0000;">&quot;&amp;#8657;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY uacute <span style="color: #ff0000;">&quot;&amp;#250;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY uarr <span style="color: #ff0000;">&quot;&amp;#8593;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ucirc <span style="color: #ff0000;">&quot;&amp;#251;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY ugrave <span style="color: #ff0000;">&quot;&amp;#249;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY uml <span style="color: #ff0000;">&quot;&amp;#168;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY upsih <span style="color: #ff0000;">&quot;&amp;#978;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY upsilon <span style="color: #ff0000;">&quot;&amp;#965;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY uuml <span style="color: #ff0000;">&quot;&amp;#252;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY weierp <span style="color: #ff0000;">&quot;&amp;#8472;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY xi <span style="color: #ff0000;">&quot;&amp;#958;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY yacute <span style="color: #ff0000;">&quot;&amp;#253;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY yen <span style="color: #ff0000;">&quot;&amp;#165;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY yuml <span style="color: #ff0000;">&quot;&amp;#255;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY zeta <span style="color: #ff0000;">&quot;&amp;#950;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY zwj <span style="color: #ff0000;">&quot;&amp;#8205;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY zwnj <span style="color: #ff0000;">&quot;&amp;#8204;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
<span style="color: #009900;"><span style="font-weight: bold; color: black;">&lt;</span>!ENTITY zwsp <span style="color: #ff0000;">&quot;&amp;#0203;&quot;</span><span style="font-weight: bold; color: black;">&gt;</span></span>
]&gt;
&nbsp;</pre>
]]></content:encoded>
			<wfw:commentRss>http://htmlblog.net/html-entities-and-xsl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
