]> granicus.if.org Git - graphviz/commitdiff
Redirect more duplicate docs to graphviz site
authorMark Hansen <markhansen@google.com>
Sun, 28 Feb 2021 03:15:05 +0000 (14:15 +1100)
committerMark Hansen <markhansen@google.com>
Sun, 28 Feb 2021 03:15:05 +0000 (14:15 +1100)
I've deleted schema.html instead of redirecting because it's not
intended to be shown as a top-level page on its own, but rather included
in another page as a subtree.

Towards https://gitlab.com/graphviz/graphviz.gitlab.io/-/issues/39

doc/info/arrows.html
doc/info/colors.html
doc/info/command.html
doc/info/index.html
doc/info/lang.html
doc/info/output.html
doc/info/schema.html [deleted file]
doc/info/shapes.html

index 46cf5783786f4d7218c22fe419cdffbeaeeeb3e7..31ef15e4ea612781c3db9e7511bae209ca43952f 100644 (file)
@@ -1,316 +1,2 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<!--
-    This is a generated document.  Do not edit.
--->
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>Arrow Shapes</TITLE>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 ALIGN=CENTER>Arrow Shapes</H1>
-<HR>
-Arrow shapes can be specified and named using the following simple
-grammar. 
-Terminals are shown in bold font and nonterminals in italics.
-Literal characters are given in single quotes.
-Square brackets [ and ] enclose optional items.
-Vertical bars | separate alternatives.
-<TABLE>
-<TR>
-  <TD ALIGN=RIGHT><I>arrowname</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>aname</I> [ <I>aname</I> [ <I>aname</I> [ <I>aname</I> ] ] ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>aname</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>[ <I>modifiers</I> ] <I>shape</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>modifiers</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>[ <B>'o'</B> ] [ <I>side</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>side</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>'l'</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>'r'</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>shape</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>box</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>crow</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>curve</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>icurve</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>diamond</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>dot</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>inv</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>none</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>normal</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>tee</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>vee</B></TD>
-</TR>
-</TABLE>
-<P>
-The primitive shapes are:
-<CENTER>
-<TABLE>
-  <TR>
-    <TD>"box"<TD><IMG SRC="a_box.gif">
-    <TD>"crow"<TD><IMG SRC="a_crow.gif">
-    <TD>"curve"<TD><IMG SRC="a_curve.gif">
-    <TD>"diamond"<TD><IMG SRC="a_diamond.gif">
-  </TR>
-  <TR>
-  </TR>
-  <TR>
-    <TD>"dot"<TD><IMG SRC="a_dot.gif">
-    <TD>"icurve"<TD><IMG SRC="a_icurve.gif">
-    <TD>"inv"<TD><IMG SRC="a_inv.gif">
-    <TD>"none"<TD><IMG SRC="a_none.gif">
-  </TR>
-  <TR>
-  </TR>
-  <TR>
-    <TD>"normal"<TD><IMG SRC="a_normal.gif">
-    <TD>"tee"<TD><IMG SRC="a_tee.gif">
-    <TD>"vee"<TD><IMG SRC="a_open.gif">
-  </TR>
-</TABLE>
-</CENTER>
-<P>
-As for the modifiers:
-<DL>
-<DT>'l'
-  <DD> Clip the shape, leaving only the part to the left of the edge.
-<DT>'r'
-  <DD> Clip the shape, leaving only the part to the right of the edge.
-<DT>'o'
-  <DD> Use an open (non-filled) version of the shape.
-</DL>
-Left and right are defined as those directions determined by looking
-from the edge towards the point where the arrow "touches" the node.
-<P>
-As an example, the arrow shape <TT>lteeoldiamond</TT> is parsed as
-<TT>'l' 'tee' 'o' 'l' 'diamond'</TT> and corresponds to the shape
-<CENTER>
-<IMG SRC="a_lteeoldiamond.gif">
-</CENTER>
-Note that the first arrow shape specified occurs closest to the node.
-Subsequent arrow shapes, if specified, occur further from the node.
-Also, a shape of <tt>none</tt> uses space, so, for example, the arrowhead <tt>nonenormal</tt>
-is not the same as <tt>normal</tt>.
-<P>
-Not all syntactically legal combinations of modifiers are meaningful
-or semantically valid.
-For example, none of the modifiers make any sense with <TT>none</TT>.
-The following table indicates which modifiers are allowed with which shapes.
-<P>
-<CENTER>
-<TABLE BORDER=2>
-<TR ALIGN=CENTER>
- <TH>Modifier</TH>
- <TH>box
- <TH>crow
- <TH>curve
- <TH>diamond
- <TH>dot
- <TH>icurve
- <TH>inv
- <TH>none
- <TH>normal
- <TH>tee
- <TH>vee
-</TR>
-<TR ALIGN=CENTER><TD>'l'/'r'<TD>X<TD>X<TD>X<TD>X<TD>&nbsp;<TD>X<TD>&nbsp;<TD>X<TD>X<TD>X</TR>
-<TR ALIGN=CENTER><TD>'o'    <TD>X<TD>&nbsp;<TD>&nbsp;<TD>X<TD>X<TD>X<TD>&nbsp;<TD>X<TD>&nbsp;<TD>&nbsp;</TR>
-</TABLE>
-</CENTER>
-<P>
-This yields 42 different arrow shapes. The optional second, third, fourth shapes
-can independently be any of the 42, except the last cannot be <TT>none</TT> as
-this would create a redundant shape.
-Thus, there are 41 &middot; 42<sup>3</sup> + 41 &middot; 42<sup>2</sup> + 41 &middot; 42 + 42 = 3,111,696 different combinations.
-
-<P>
-The following display contains the 42 combinations possible with a single
-arrow shape. The node attached to the arrow is not drawn but would appear
-on the right side of the edge.
-<P>
-<CENTER>
-<TABLE>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_box.gif">
-    <TD><IMG SRC="aa_lbox.gif">
-    <TD><IMG SRC="aa_rbox.gif">
-    <TD><IMG SRC="aa_obox.gif">
-    <TD><IMG SRC="aa_olbox.gif">
-    <TD><IMG SRC="aa_orbox.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>box
-    <TD>lbox
-    <TD>rbox
-    <TD>obox
-    <TD>olbox
-    <TD>orbox
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_crow.gif">
-    <TD><IMG SRC="aa_lcrow.gif">
-    <TD><IMG SRC="aa_rcrow.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>crow
-    <TD>lcrow
-    <TD>rcrow
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_diamond.gif">
-    <TD><IMG SRC="aa_ldiamond.gif">
-    <TD><IMG SRC="aa_rdiamond.gif">
-    <TD><IMG SRC="aa_odiamond.gif">
-    <TD><IMG SRC="aa_oldiamond.gif">
-    <TD><IMG SRC="aa_ordiamond.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>diamond
-    <TD>ldiamond
-    <TD>rdiamond
-    <TD>odiamond
-    <TD>oldiamond
-    <TD>ordiamond
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_dot.gif">
-    <TD><IMG SRC="aa_odot.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>dot
-    <TD>odot
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_inv.gif">
-    <TD><IMG SRC="aa_linv.gif">
-    <TD><IMG SRC="aa_rinv.gif">
-    <TD><IMG SRC="aa_oinv.gif">
-    <TD><IMG SRC="aa_olinv.gif">
-    <TD><IMG SRC="aa_orinv.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>inv
-    <TD>linv
-    <TD>rinv
-    <TD>oinv
-    <TD>olinv
-    <TD>orinv
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_none.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>none
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_normal.gif">
-    <TD><IMG SRC="aa_lnormal.gif">
-    <TD><IMG SRC="aa_rnormal.gif">
-    <TD><IMG SRC="aa_onormal.gif">
-    <TD><IMG SRC="aa_olnormal.gif">
-    <TD><IMG SRC="aa_ornormal.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>normal
-    <TD>lnormal
-    <TD>rnormal
-    <TD>onormal
-    <TD>olnormal
-    <TD>ornormal
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_tee.gif">
-    <TD><IMG SRC="aa_ltee.gif">
-    <TD><IMG SRC="aa_rtee.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>tee
-    <TD>ltee
-    <TD>rtee
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_vee.gif">
-    <TD><IMG SRC="aa_lvee.gif">
-    <TD><IMG SRC="aa_rvee.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>vee
-    <TD>lvee
-    <TD>rvee
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC="aa_curve.gif">
-    <TD><IMG SRC="aa_lcurve.gif">
-    <TD><IMG SRC="aa_rcurve.gif">
-    <TD><IMG SRC="aa_icurve.gif">
-    <TD><IMG SRC="aa_licurve.gif">
-    <TD><IMG SRC="aa_ricurve.gif">
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD>curve
-    <TD>lcurve
-    <TD>rcurve
-    <TD>icurve
-    <TD>licurve
-    <TD>ricurve
-  </TR>
-</TABLE>
-</CENTER>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="https://graphviz.org/doc/info/arrows.html" />
+Moved to <a href="https://graphviz.org/doc/info/arrows.html">https://graphviz.org/doc/info/arrows.html</a>. Redirecting...
index 07da5b7c21211cc890121da94e3065925ba1a838..ebbc70c49f7e47d82cc1bf4bea4a9969fa114508 100644 (file)
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<!--
-This is a generated document.  Do not edit.
--->
-<HTML VERSION=\"2.0\">
-<HEAD>
-<TITLE>Color Names</TITLE>
-</HEAD>
-<BODY BGCOLOR=#ffffff>
-
-<H1 ALIGN=CENTER>Color Names</H1>
-Color names are resolved in the context of a 
-<A HREF="attrs.html#d:colorscheme">color scheme</A>. Graphviz currently
-supports the <A HREF="#x11">X11 scheme</A>, 
-the <A HREF="#svg">SVG scheme</A>, and the <A HREF="#brewer">Brewer schemes</A>,
-with X11 being the default.
-<P>
-Color names are case-insensitive.
-<P>
-The Brewer color schemes below are covered by this <A HREF=#brewer_license>license</A>.
-<HR>
-<H2><A NAME="x11">The X11 color scheme</A></H2>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f8ff><a title=#f0f8ff>aliceblue</a></td>
-<td bgcolor=#faebd7><a title=#faebd7>antiquewhite</a></td>
-<td bgcolor=#ffefdb><a title=#ffefdb>antiquewhite1</a></td>
-<td bgcolor=#eedfcc><a title=#eedfcc>antiquewhite2</a></td>
-<td bgcolor=#cdc0b0><a title=#cdc0b0>antiquewhite3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8b8378><a title=#8b8378>antiquewhite4</a></td>
-<td bgcolor=#7fffd4><a title=#7fffd4>aquamarine</a></td>
-<td bgcolor=#7fffd4><a title=#7fffd4>aquamarine1</a></td>
-<td bgcolor=#76eec6><a title=#76eec6>aquamarine2</a></td>
-<td bgcolor=#66cdaa><a title=#66cdaa>aquamarine3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#458b74><a title=#458b74>aquamarine4</a></td>
-<td bgcolor=#f0ffff><a title=#f0ffff>azure</a></td>
-<td bgcolor=#f0ffff><a title=#f0ffff>azure1</a></td>
-<td bgcolor=#e0eeee><a title=#e0eeee>azure2</a></td>
-<td bgcolor=#c1cdcd><a title=#c1cdcd>azure3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#838b8b><a title=#838b8b>azure4</a></td>
-<td bgcolor=#f5f5dc><a title=#f5f5dc>beige</a></td>
-<td bgcolor=#ffe4c4><a title=#ffe4c4>bisque</a></td>
-<td bgcolor=#ffe4c4><a title=#ffe4c4>bisque1</a></td>
-<td bgcolor=#eed5b7><a title=#eed5b7>bisque2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cdb79e><a title=#cdb79e>bisque3</a></td>
-<td bgcolor=#8b7d6b><a title=#8b7d6b>bisque4</a></td>
-<td bgcolor=#000000><a title=#000000><font color=white>black</font></a></td>
-<td bgcolor=#ffebcd><a title=#ffebcd>blanchedalmond</a></td>
-<td bgcolor=#0000ff><a title=#0000ff>&nbsp;&nbsp;&nbsp;blue&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#0000ff><a title=#0000ff>blue1</a></td>
-<td bgcolor=#0000ee><a title=#0000ee>blue2</a></td>
-<td bgcolor=#0000cd><a title=#0000cd>blue3</a></td>
-<td bgcolor=#00008b><a title=#00008b>blue4</a></td>
-<td bgcolor=#8a2be2><a title=#8a2be2>blueviolet</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#a52a2a><a title=#a52a2a>brown</a></td>
-<td bgcolor=#ff4040><a title=#ff4040>brown1</a></td>
-<td bgcolor=#ee3b3b><a title=#ee3b3b>brown2</a></td>
-<td bgcolor=#cd3333><a title=#cd3333>brown3</a></td>
-<td bgcolor=#8b2323><a title=#8b2323>brown4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#deb887><a title=#deb887>burlywood</a></td>
-<td bgcolor=#ffd39b><a title=#ffd39b>burlywood1</a></td>
-<td bgcolor=#eec591><a title=#eec591>burlywood2</a></td>
-<td bgcolor=#cdaa7d><a title=#cdaa7d>burlywood3</a></td>
-<td bgcolor=#8b7355><a title=#8b7355>burlywood4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#5f9ea0><a title=#5f9ea0>cadetblue</a></td>
-<td bgcolor=#98f5ff><a title=#98f5ff>cadetblue1</a></td>
-<td bgcolor=#8ee5ee><a title=#8ee5ee>cadetblue2</a></td>
-<td bgcolor=#7ac5cd><a title=#7ac5cd>cadetblue3</a></td>
-<td bgcolor=#53868b><a title=#53868b>cadetblue4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#7fff00><a title=#7fff00>chartreuse</a></td>
-<td bgcolor=#7fff00><a title=#7fff00>chartreuse1</a></td>
-<td bgcolor=#76ee00><a title=#76ee00>chartreuse2</a></td>
-<td bgcolor=#66cd00><a title=#66cd00>chartreuse3</a></td>
-<td bgcolor=#458b00><a title=#458b00>chartreuse4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#d2691e><a title=#d2691e>chocolate</a></td>
-<td bgcolor=#ff7f24><a title=#ff7f24>chocolate1</a></td>
-<td bgcolor=#ee7621><a title=#ee7621>chocolate2</a></td>
-<td bgcolor=#cd661d><a title=#cd661d>chocolate3</a></td>
-<td bgcolor=#8b4513><a title=#8b4513>chocolate4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff7f50><a title=#ff7f50>coral</a></td>
-<td bgcolor=#ff7256><a title=#ff7256>coral1</a></td>
-<td bgcolor=#ee6a50><a title=#ee6a50>coral2</a></td>
-<td bgcolor=#cd5b45><a title=#cd5b45>coral3</a></td>
-<td bgcolor=#8b3e2f><a title=#8b3e2f>coral4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#6495ed><a title=#6495ed>cornflowerblue</a></td>
-<td bgcolor=#fff8dc><a title=#fff8dc>cornsilk</a></td>
-<td bgcolor=#fff8dc><a title=#fff8dc>cornsilk1</a></td>
-<td bgcolor=#eee8cd><a title=#eee8cd>cornsilk2</a></td>
-<td bgcolor=#cdc8b1><a title=#cdc8b1>cornsilk3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8b8878><a title=#8b8878>cornsilk4</a></td>
-<td bgcolor=#dc143c><a title=#dc143c>crimson</a></td>
-<td bgcolor=#00ffff><a title=#00ffff>&nbsp;&nbsp;&nbsp;cyan&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#00ffff><a title=#00ffff>cyan1</a></td>
-<td bgcolor=#00eeee><a title=#00eeee>cyan2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00cdcd><a title=#00cdcd>cyan3</a></td>
-<td bgcolor=#008b8b><a title=#008b8b>cyan4</a></td>
-<td bgcolor=#b8860b><a title=#b8860b>darkgoldenrod</a></td>
-<td bgcolor=#ffb90f><a title=#ffb90f>darkgoldenrod1</a></td>
-<td bgcolor=#eead0e><a title=#eead0e>darkgoldenrod2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd950c><a title=#cd950c>darkgoldenrod3</a></td>
-<td bgcolor=#8b6508><a title=#8b6508>darkgoldenrod4</a></td>
-<td bgcolor=#006400><a title=#006400><font color=white>darkgreen</font></a></td>
-<td bgcolor=#bdb76b><a title=#bdb76b>darkkhaki</a></td>
-<td bgcolor=#556b2f><a title=#556b2f><font color=white>darkolivegreen</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#caff70><a title=#caff70>darkolivegreen1</a></td>
-<td bgcolor=#bcee68><a title=#bcee68>darkolivegreen2</a></td>
-<td bgcolor=#a2cd5a><a title=#a2cd5a>darkolivegreen3</a></td>
-<td bgcolor=#6e8b3d><a title=#6e8b3d>darkolivegreen4</a></td>
-<td bgcolor=#ff8c00><a title=#ff8c00>darkorange</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff7f00><a title=#ff7f00>darkorange1</a></td>
-<td bgcolor=#ee7600><a title=#ee7600>darkorange2</a></td>
-<td bgcolor=#cd6600><a title=#cd6600>darkorange3</a></td>
-<td bgcolor=#8b4500><a title=#8b4500>darkorange4</a></td>
-<td bgcolor=#9932cc><a title=#9932cc>darkorchid</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#bf3eff><a title=#bf3eff>darkorchid1</a></td>
-<td bgcolor=#b23aee><a title=#b23aee>darkorchid2</a></td>
-<td bgcolor=#9a32cd><a title=#9a32cd>darkorchid3</a></td>
-<td bgcolor=#68228b><a title=#68228b>darkorchid4</a></td>
-<td bgcolor=#e9967a><a title=#e9967a>darksalmon</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8fbc8f><a title=#8fbc8f>darkseagreen</a></td>
-<td bgcolor=#c1ffc1><a title=#c1ffc1>darkseagreen1</a></td>
-<td bgcolor=#b4eeb4><a title=#b4eeb4>darkseagreen2</a></td>
-<td bgcolor=#9bcd9b><a title=#9bcd9b>darkseagreen3</a></td>
-<td bgcolor=#698b69><a title=#698b69>darkseagreen4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#483d8b><a title=#483d8b>darkslateblue</a></td>
-<td bgcolor=#2f4f4f><a title=#2f4f4f><font color=white>darkslategray</font></a></td>
-<td bgcolor=#97ffff><a title=#97ffff>darkslategray1</a></td>
-<td bgcolor=#8deeee><a title=#8deeee>darkslategray2</a></td>
-<td bgcolor=#79cdcd><a title=#79cdcd>darkslategray3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#528b8b><a title=#528b8b>darkslategray4</a></td>
-<td bgcolor=#2f4f4f><a title=#2f4f4f><font color=white>darkslategrey</font></a></td>
-<td bgcolor=#00ced1><a title=#00ced1>darkturquoise</a></td>
-<td bgcolor=#9400d3><a title=#9400d3>darkviolet</a></td>
-<td bgcolor=#ff1493><a title=#ff1493>deeppink</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff1493><a title=#ff1493>deeppink1</a></td>
-<td bgcolor=#ee1289><a title=#ee1289>deeppink2</a></td>
-<td bgcolor=#cd1076><a title=#cd1076>deeppink3</a></td>
-<td bgcolor=#8b0a50><a title=#8b0a50>deeppink4</a></td>
-<td bgcolor=#00bfff><a title=#00bfff>deepskyblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00bfff><a title=#00bfff>deepskyblue1</a></td>
-<td bgcolor=#00b2ee><a title=#00b2ee>deepskyblue2</a></td>
-<td bgcolor=#009acd><a title=#009acd>deepskyblue3</a></td>
-<td bgcolor=#00688b><a title=#00688b>deepskyblue4</a></td>
-<td bgcolor=#696969><a title=#696969><font color=white>dimgray</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#696969><a title=#696969><font color=white>dimgrey</font></a></td>
-<td bgcolor=#1e90ff><a title=#1e90ff>dodgerblue</a></td>
-<td bgcolor=#1e90ff><a title=#1e90ff>dodgerblue1</a></td>
-<td bgcolor=#1c86ee><a title=#1c86ee>dodgerblue2</a></td>
-<td bgcolor=#1874cd><a title=#1874cd>dodgerblue3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#104e8b><a title=#104e8b>dodgerblue4</a></td>
-<td bgcolor=#b22222><a title=#b22222>firebrick</a></td>
-<td bgcolor=#ff3030><a title=#ff3030>firebrick1</a></td>
-<td bgcolor=#ee2c2c><a title=#ee2c2c>firebrick2</a></td>
-<td bgcolor=#cd2626><a title=#cd2626>firebrick3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8b1a1a><a title=#8b1a1a>firebrick4</a></td>
-<td bgcolor=#fffaf0><a title=#fffaf0>floralwhite</a></td>
-<td bgcolor=#228b22><a title=#228b22>forestgreen</a></td>
-<td bgcolor=#dcdcdc><a title=#dcdcdc>gainsboro</a></td>
-<td bgcolor=#f8f8ff><a title=#f8f8ff>ghostwhite</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffd700><a title=#ffd700>&nbsp;&nbsp;&nbsp;gold&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffd700><a title=#ffd700>gold1</a></td>
-<td bgcolor=#eec900><a title=#eec900>gold2</a></td>
-<td bgcolor=#cdad00><a title=#cdad00>gold3</a></td>
-<td bgcolor=#8b7500><a title=#8b7500>gold4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#daa520><a title=#daa520>goldenrod</a></td>
-<td bgcolor=#ffc125><a title=#ffc125>goldenrod1</a></td>
-<td bgcolor=#eeb422><a title=#eeb422>goldenrod2</a></td>
-<td bgcolor=#cd9b1d><a title=#cd9b1d>goldenrod3</a></td>
-<td bgcolor=#8b6914><a title=#8b6914>goldenrod4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#c0c0c0><a title=#c0c0c0>&nbsp;&nbsp;&nbsp;gray&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#000000><a title=#000000><font color=white>gray0</font></a></td>
-<td bgcolor=#030303><a title=#030303><font color=white>gray1</font></a></td>
-<td bgcolor=#1a1a1a><a title=#1a1a1a><font color=white>gray10</font></a></td>
-<td bgcolor=#ffffff><a title=#ffffff>gray100</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#1c1c1c><a title=#1c1c1c><font color=white>gray11</font></a></td>
-<td bgcolor=#1f1f1f><a title=#1f1f1f><font color=white>gray12</font></a></td>
-<td bgcolor=#212121><a title=#212121><font color=white>gray13</font></a></td>
-<td bgcolor=#242424><a title=#242424><font color=white>gray14</font></a></td>
-<td bgcolor=#262626><a title=#262626><font color=white>gray15</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#292929><a title=#292929><font color=white>gray16</font></a></td>
-<td bgcolor=#2b2b2b><a title=#2b2b2b><font color=white>gray17</font></a></td>
-<td bgcolor=#2e2e2e><a title=#2e2e2e><font color=white>gray18</font></a></td>
-<td bgcolor=#303030><a title=#303030><font color=white>gray19</font></a></td>
-<td bgcolor=#050505><a title=#050505><font color=white>gray2</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#333333><a title=#333333><font color=white>gray20</font></a></td>
-<td bgcolor=#363636><a title=#363636><font color=white>gray21</font></a></td>
-<td bgcolor=#383838><a title=#383838><font color=white>gray22</font></a></td>
-<td bgcolor=#3b3b3b><a title=#3b3b3b><font color=white>gray23</font></a></td>
-<td bgcolor=#3d3d3d><a title=#3d3d3d><font color=white>gray24</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#404040><a title=#404040><font color=white>gray25</font></a></td>
-<td bgcolor=#424242><a title=#424242><font color=white>gray26</font></a></td>
-<td bgcolor=#454545><a title=#454545><font color=white>gray27</font></a></td>
-<td bgcolor=#474747><a title=#474747><font color=white>gray28</font></a></td>
-<td bgcolor=#4a4a4a><a title=#4a4a4a><font color=white>gray29</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#080808><a title=#080808><font color=white>gray3</font></a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>gray30</font></a></td>
-<td bgcolor=#4f4f4f><a title=#4f4f4f><font color=white>gray31</font></a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>gray32</font></a></td>
-<td bgcolor=#545454><a title=#545454><font color=white>gray33</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#575757><a title=#575757><font color=white>gray34</font></a></td>
-<td bgcolor=#595959><a title=#595959><font color=white>gray35</font></a></td>
-<td bgcolor=#5c5c5c><a title=#5c5c5c><font color=white>gray36</font></a></td>
-<td bgcolor=#5e5e5e><a title=#5e5e5e><font color=white>gray37</font></a></td>
-<td bgcolor=#616161><a title=#616161><font color=white>gray38</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#636363><a title=#636363><font color=white>gray39</font></a></td>
-<td bgcolor=#0a0a0a><a title=#0a0a0a><font color=white>gray4</font></a></td>
-<td bgcolor=#666666><a title=#666666><font color=white>gray40</font></a></td>
-<td bgcolor=#696969><a title=#696969><font color=white>gray41</font></a></td>
-<td bgcolor=#6b6b6b><a title=#6b6b6b><font color=white>gray42</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#6e6e6e><a title=#6e6e6e><font color=white>gray43</font></a></td>
-<td bgcolor=#707070><a title=#707070><font color=white>gray44</font></a></td>
-<td bgcolor=#737373><a title=#737373><font color=white>gray45</font></a></td>
-<td bgcolor=#757575><a title=#757575><font color=white>gray46</font></a></td>
-<td bgcolor=#787878><a title=#787878><font color=white>gray47</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#7a7a7a><a title=#7a7a7a><font color=white>gray48</font></a></td>
-<td bgcolor=#7d7d7d><a title=#7d7d7d><font color=white>gray49</font></a></td>
-<td bgcolor=#0d0d0d><a title=#0d0d0d><font color=white>gray5</font></a></td>
-<td bgcolor=#7f7f7f><a title=#7f7f7f><font color=white>gray50</font></a></td>
-<td bgcolor=#828282><a title=#828282><font color=white>gray51</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#858585><a title=#858585>gray52</a></td>
-<td bgcolor=#878787><a title=#878787>gray53</a></td>
-<td bgcolor=#8a8a8a><a title=#8a8a8a>gray54</a></td>
-<td bgcolor=#8c8c8c><a title=#8c8c8c>gray55</a></td>
-<td bgcolor=#8f8f8f><a title=#8f8f8f>gray56</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#919191><a title=#919191>gray57</a></td>
-<td bgcolor=#949494><a title=#949494>gray58</a></td>
-<td bgcolor=#969696><a title=#969696>gray59</a></td>
-<td bgcolor=#0f0f0f><a title=#0f0f0f><font color=white>gray6</font></a></td>
-<td bgcolor=#999999><a title=#999999>gray60</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#9c9c9c><a title=#9c9c9c>gray61</a></td>
-<td bgcolor=#9e9e9e><a title=#9e9e9e>gray62</a></td>
-<td bgcolor=#a1a1a1><a title=#a1a1a1>gray63</a></td>
-<td bgcolor=#a3a3a3><a title=#a3a3a3>gray64</a></td>
-<td bgcolor=#a6a6a6><a title=#a6a6a6>gray65</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#a8a8a8><a title=#a8a8a8>gray66</a></td>
-<td bgcolor=#ababab><a title=#ababab>gray67</a></td>
-<td bgcolor=#adadad><a title=#adadad>gray68</a></td>
-<td bgcolor=#b0b0b0><a title=#b0b0b0>gray69</a></td>
-<td bgcolor=#121212><a title=#121212><font color=white>gray7</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b3b3b3><a title=#b3b3b3>gray70</a></td>
-<td bgcolor=#b5b5b5><a title=#b5b5b5>gray71</a></td>
-<td bgcolor=#b8b8b8><a title=#b8b8b8>gray72</a></td>
-<td bgcolor=#bababa><a title=#bababa>gray73</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>gray74</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#bfbfbf><a title=#bfbfbf>gray75</a></td>
-<td bgcolor=#c2c2c2><a title=#c2c2c2>gray76</a></td>
-<td bgcolor=#c4c4c4><a title=#c4c4c4>gray77</a></td>
-<td bgcolor=#c7c7c7><a title=#c7c7c7>gray78</a></td>
-<td bgcolor=#c9c9c9><a title=#c9c9c9>gray79</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#141414><a title=#141414><font color=white>gray8</font></a></td>
-<td bgcolor=#cccccc><a title=#cccccc>gray80</a></td>
-<td bgcolor=#cfcfcf><a title=#cfcfcf>gray81</a></td>
-<td bgcolor=#d1d1d1><a title=#d1d1d1>gray82</a></td>
-<td bgcolor=#d4d4d4><a title=#d4d4d4>gray83</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#d6d6d6><a title=#d6d6d6>gray84</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>gray85</a></td>
-<td bgcolor=#dbdbdb><a title=#dbdbdb>gray86</a></td>
-<td bgcolor=#dedede><a title=#dedede>gray87</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>gray88</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#e3e3e3><a title=#e3e3e3>gray89</a></td>
-<td bgcolor=#171717><a title=#171717><font color=white>gray9</font></a></td>
-<td bgcolor=#e5e5e5><a title=#e5e5e5>gray90</a></td>
-<td bgcolor=#e8e8e8><a title=#e8e8e8>gray91</a></td>
-<td bgcolor=#ebebeb><a title=#ebebeb>gray92</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ededed><a title=#ededed>gray93</a></td>
-<td bgcolor=#f0f0f0><a title=#f0f0f0>gray94</a></td>
-<td bgcolor=#f2f2f2><a title=#f2f2f2>gray95</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>gray96</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>gray97</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fafafa><a title=#fafafa>gray98</a></td>
-<td bgcolor=#fcfcfc><a title=#fcfcfc>gray99</a></td>
-<td bgcolor=#00ff00><a title=#00ff00>green</a></td>
-<td bgcolor=#00ff00><a title=#00ff00>green1</a></td>
-<td bgcolor=#00ee00><a title=#00ee00>green2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00cd00><a title=#00cd00>green3</a></td>
-<td bgcolor=#008b00><a title=#008b00>green4</a></td>
-<td bgcolor=#adff2f><a title=#adff2f>greenyellow</a></td>
-<td bgcolor=#c0c0c0><a title=#c0c0c0>&nbsp;&nbsp;&nbsp;grey&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#000000><a title=#000000><font color=white>grey0</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#030303><a title=#030303><font color=white>grey1</font></a></td>
-<td bgcolor=#1a1a1a><a title=#1a1a1a><font color=white>grey10</font></a></td>
-<td bgcolor=#ffffff><a title=#ffffff>grey100</a></td>
-<td bgcolor=#1c1c1c><a title=#1c1c1c><font color=white>grey11</font></a></td>
-<td bgcolor=#1f1f1f><a title=#1f1f1f><font color=white>grey12</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#212121><a title=#212121><font color=white>grey13</font></a></td>
-<td bgcolor=#242424><a title=#242424><font color=white>grey14</font></a></td>
-<td bgcolor=#262626><a title=#262626><font color=white>grey15</font></a></td>
-<td bgcolor=#292929><a title=#292929><font color=white>grey16</font></a></td>
-<td bgcolor=#2b2b2b><a title=#2b2b2b><font color=white>grey17</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#2e2e2e><a title=#2e2e2e><font color=white>grey18</font></a></td>
-<td bgcolor=#303030><a title=#303030><font color=white>grey19</font></a></td>
-<td bgcolor=#050505><a title=#050505><font color=white>grey2</font></a></td>
-<td bgcolor=#333333><a title=#333333><font color=white>grey20</font></a></td>
-<td bgcolor=#363636><a title=#363636><font color=white>grey21</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#383838><a title=#383838><font color=white>grey22</font></a></td>
-<td bgcolor=#3b3b3b><a title=#3b3b3b><font color=white>grey23</font></a></td>
-<td bgcolor=#3d3d3d><a title=#3d3d3d><font color=white>grey24</font></a></td>
-<td bgcolor=#404040><a title=#404040><font color=white>grey25</font></a></td>
-<td bgcolor=#424242><a title=#424242><font color=white>grey26</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#454545><a title=#454545><font color=white>grey27</font></a></td>
-<td bgcolor=#474747><a title=#474747><font color=white>grey28</font></a></td>
-<td bgcolor=#4a4a4a><a title=#4a4a4a><font color=white>grey29</font></a></td>
-<td bgcolor=#080808><a title=#080808><font color=white>grey3</font></a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>grey30</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#4f4f4f><a title=#4f4f4f><font color=white>grey31</font></a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>grey32</font></a></td>
-<td bgcolor=#545454><a title=#545454><font color=white>grey33</font></a></td>
-<td bgcolor=#575757><a title=#575757><font color=white>grey34</font></a></td>
-<td bgcolor=#595959><a title=#595959><font color=white>grey35</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#5c5c5c><a title=#5c5c5c><font color=white>grey36</font></a></td>
-<td bgcolor=#5e5e5e><a title=#5e5e5e><font color=white>grey37</font></a></td>
-<td bgcolor=#616161><a title=#616161><font color=white>grey38</font></a></td>
-<td bgcolor=#636363><a title=#636363><font color=white>grey39</font></a></td>
-<td bgcolor=#0a0a0a><a title=#0a0a0a><font color=white>grey4</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#666666><a title=#666666><font color=white>grey40</font></a></td>
-<td bgcolor=#696969><a title=#696969><font color=white>grey41</font></a></td>
-<td bgcolor=#6b6b6b><a title=#6b6b6b><font color=white>grey42</font></a></td>
-<td bgcolor=#6e6e6e><a title=#6e6e6e><font color=white>grey43</font></a></td>
-<td bgcolor=#707070><a title=#707070><font color=white>grey44</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#737373><a title=#737373><font color=white>grey45</font></a></td>
-<td bgcolor=#757575><a title=#757575><font color=white>grey46</font></a></td>
-<td bgcolor=#787878><a title=#787878><font color=white>grey47</font></a></td>
-<td bgcolor=#7a7a7a><a title=#7a7a7a><font color=white>grey48</font></a></td>
-<td bgcolor=#7d7d7d><a title=#7d7d7d><font color=white>grey49</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#0d0d0d><a title=#0d0d0d><font color=white>grey5</font></a></td>
-<td bgcolor=#7f7f7f><a title=#7f7f7f><font color=white>grey50</font></a></td>
-<td bgcolor=#828282><a title=#828282><font color=white>grey51</font></a></td>
-<td bgcolor=#858585><a title=#858585>grey52</a></td>
-<td bgcolor=#878787><a title=#878787>grey53</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8a8a8a><a title=#8a8a8a>grey54</a></td>
-<td bgcolor=#8c8c8c><a title=#8c8c8c>grey55</a></td>
-<td bgcolor=#8f8f8f><a title=#8f8f8f>grey56</a></td>
-<td bgcolor=#919191><a title=#919191>grey57</a></td>
-<td bgcolor=#949494><a title=#949494>grey58</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#969696><a title=#969696>grey59</a></td>
-<td bgcolor=#0f0f0f><a title=#0f0f0f><font color=white>grey6</font></a></td>
-<td bgcolor=#999999><a title=#999999>grey60</a></td>
-<td bgcolor=#9c9c9c><a title=#9c9c9c>grey61</a></td>
-<td bgcolor=#9e9e9e><a title=#9e9e9e>grey62</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#a1a1a1><a title=#a1a1a1>grey63</a></td>
-<td bgcolor=#a3a3a3><a title=#a3a3a3>grey64</a></td>
-<td bgcolor=#a6a6a6><a title=#a6a6a6>grey65</a></td>
-<td bgcolor=#a8a8a8><a title=#a8a8a8>grey66</a></td>
-<td bgcolor=#ababab><a title=#ababab>grey67</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#adadad><a title=#adadad>grey68</a></td>
-<td bgcolor=#b0b0b0><a title=#b0b0b0>grey69</a></td>
-<td bgcolor=#121212><a title=#121212><font color=white>grey7</font></a></td>
-<td bgcolor=#b3b3b3><a title=#b3b3b3>grey70</a></td>
-<td bgcolor=#b5b5b5><a title=#b5b5b5>grey71</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b8b8b8><a title=#b8b8b8>grey72</a></td>
-<td bgcolor=#bababa><a title=#bababa>grey73</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>grey74</a></td>
-<td bgcolor=#bfbfbf><a title=#bfbfbf>grey75</a></td>
-<td bgcolor=#c2c2c2><a title=#c2c2c2>grey76</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#c4c4c4><a title=#c4c4c4>grey77</a></td>
-<td bgcolor=#c7c7c7><a title=#c7c7c7>grey78</a></td>
-<td bgcolor=#c9c9c9><a title=#c9c9c9>grey79</a></td>
-<td bgcolor=#141414><a title=#141414><font color=white>grey8</font></a></td>
-<td bgcolor=#cccccc><a title=#cccccc>grey80</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cfcfcf><a title=#cfcfcf>grey81</a></td>
-<td bgcolor=#d1d1d1><a title=#d1d1d1>grey82</a></td>
-<td bgcolor=#d4d4d4><a title=#d4d4d4>grey83</a></td>
-<td bgcolor=#d6d6d6><a title=#d6d6d6>grey84</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>grey85</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#dbdbdb><a title=#dbdbdb>grey86</a></td>
-<td bgcolor=#dedede><a title=#dedede>grey87</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>grey88</a></td>
-<td bgcolor=#e3e3e3><a title=#e3e3e3>grey89</a></td>
-<td bgcolor=#171717><a title=#171717><font color=white>grey9</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#e5e5e5><a title=#e5e5e5>grey90</a></td>
-<td bgcolor=#e8e8e8><a title=#e8e8e8>grey91</a></td>
-<td bgcolor=#ebebeb><a title=#ebebeb>grey92</a></td>
-<td bgcolor=#ededed><a title=#ededed>grey93</a></td>
-<td bgcolor=#f0f0f0><a title=#f0f0f0>grey94</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#f2f2f2><a title=#f2f2f2>grey95</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>grey96</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>grey97</a></td>
-<td bgcolor=#fafafa><a title=#fafafa>grey98</a></td>
-<td bgcolor=#fcfcfc><a title=#fcfcfc>grey99</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#f0fff0><a title=#f0fff0>honeydew</a></td>
-<td bgcolor=#f0fff0><a title=#f0fff0>honeydew1</a></td>
-<td bgcolor=#e0eee0><a title=#e0eee0>honeydew2</a></td>
-<td bgcolor=#c1cdc1><a title=#c1cdc1>honeydew3</a></td>
-<td bgcolor=#838b83><a title=#838b83>honeydew4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff69b4><a title=#ff69b4>hotpink</a></td>
-<td bgcolor=#ff6eb4><a title=#ff6eb4>hotpink1</a></td>
-<td bgcolor=#ee6aa7><a title=#ee6aa7>hotpink2</a></td>
-<td bgcolor=#cd6090><a title=#cd6090>hotpink3</a></td>
-<td bgcolor=#8b3a62><a title=#8b3a62>hotpink4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd5c5c><a title=#cd5c5c>indianred</a></td>
-<td bgcolor=#ff6a6a><a title=#ff6a6a>indianred1</a></td>
-<td bgcolor=#ee6363><a title=#ee6363>indianred2</a></td>
-<td bgcolor=#cd5555><a title=#cd5555>indianred3</a></td>
-<td bgcolor=#8b3a3a><a title=#8b3a3a>indianred4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#4b0082><a title=#4b0082><font color=white>indigo</font></a></td>
-<td bgcolor=#fffffe><a title=#fffffe>invis</a></td>
-<td bgcolor=#fffff0><a title=#fffff0>ivory</a></td>
-<td bgcolor=#fffff0><a title=#fffff0>ivory1</a></td>
-<td bgcolor=#eeeee0><a title=#eeeee0>ivory2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cdcdc1><a title=#cdcdc1>ivory3</a></td>
-<td bgcolor=#8b8b83><a title=#8b8b83>ivory4</a></td>
-<td bgcolor=#f0e68c><a title=#f0e68c>khaki</a></td>
-<td bgcolor=#fff68f><a title=#fff68f>khaki1</a></td>
-<td bgcolor=#eee685><a title=#eee685>khaki2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cdc673><a title=#cdc673>khaki3</a></td>
-<td bgcolor=#8b864e><a title=#8b864e>khaki4</a></td>
-<td bgcolor=#e6e6fa><a title=#e6e6fa>lavender</a></td>
-<td bgcolor=#fff0f5><a title=#fff0f5>lavenderblush</a></td>
-<td bgcolor=#fff0f5><a title=#fff0f5>lavenderblush1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#eee0e5><a title=#eee0e5>lavenderblush2</a></td>
-<td bgcolor=#cdc1c5><a title=#cdc1c5>lavenderblush3</a></td>
-<td bgcolor=#8b8386><a title=#8b8386>lavenderblush4</a></td>
-<td bgcolor=#7cfc00><a title=#7cfc00>lawngreen</a></td>
-<td bgcolor=#fffacd><a title=#fffacd>lemonchiffon</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fffacd><a title=#fffacd>lemonchiffon1</a></td>
-<td bgcolor=#eee9bf><a title=#eee9bf>lemonchiffon2</a></td>
-<td bgcolor=#cdc9a5><a title=#cdc9a5>lemonchiffon3</a></td>
-<td bgcolor=#8b8970><a title=#8b8970>lemonchiffon4</a></td>
-<td bgcolor=#add8e6><a title=#add8e6>lightblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#bfefff><a title=#bfefff>lightblue1</a></td>
-<td bgcolor=#b2dfee><a title=#b2dfee>lightblue2</a></td>
-<td bgcolor=#9ac0cd><a title=#9ac0cd>lightblue3</a></td>
-<td bgcolor=#68838b><a title=#68838b>lightblue4</a></td>
-<td bgcolor=#f08080><a title=#f08080>lightcoral</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#e0ffff><a title=#e0ffff>lightcyan</a></td>
-<td bgcolor=#e0ffff><a title=#e0ffff>lightcyan1</a></td>
-<td bgcolor=#d1eeee><a title=#d1eeee>lightcyan2</a></td>
-<td bgcolor=#b4cdcd><a title=#b4cdcd>lightcyan3</a></td>
-<td bgcolor=#7a8b8b><a title=#7a8b8b>lightcyan4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#eedd82><a title=#eedd82>lightgoldenrod</a></td>
-<td bgcolor=#ffec8b><a title=#ffec8b>lightgoldenrod1</a></td>
-<td bgcolor=#eedc82><a title=#eedc82>lightgoldenrod2</a></td>
-<td bgcolor=#cdbe70><a title=#cdbe70>lightgoldenrod3</a></td>
-<td bgcolor=#8b814c><a title=#8b814c>lightgoldenrod4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fafad2><a title=#fafad2>lightgoldenrodyellow</a></td>
-<td bgcolor=#d3d3d3><a title=#d3d3d3>lightgray</a></td>
-<td bgcolor=#d3d3d3><a title=#d3d3d3>lightgrey</a></td>
-<td bgcolor=#ffb6c1><a title=#ffb6c1>lightpink</a></td>
-<td bgcolor=#ffaeb9><a title=#ffaeb9>lightpink1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#eea2ad><a title=#eea2ad>lightpink2</a></td>
-<td bgcolor=#cd8c95><a title=#cd8c95>lightpink3</a></td>
-<td bgcolor=#8b5f65><a title=#8b5f65>lightpink4</a></td>
-<td bgcolor=#ffa07a><a title=#ffa07a>lightsalmon</a></td>
-<td bgcolor=#ffa07a><a title=#ffa07a>lightsalmon1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ee9572><a title=#ee9572>lightsalmon2</a></td>
-<td bgcolor=#cd8162><a title=#cd8162>lightsalmon3</a></td>
-<td bgcolor=#8b5742><a title=#8b5742>lightsalmon4</a></td>
-<td bgcolor=#20b2aa><a title=#20b2aa>lightseagreen</a></td>
-<td bgcolor=#87cefa><a title=#87cefa>lightskyblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b0e2ff><a title=#b0e2ff>lightskyblue1</a></td>
-<td bgcolor=#a4d3ee><a title=#a4d3ee>lightskyblue2</a></td>
-<td bgcolor=#8db6cd><a title=#8db6cd>lightskyblue3</a></td>
-<td bgcolor=#607b8b><a title=#607b8b>lightskyblue4</a></td>
-<td bgcolor=#8470ff><a title=#8470ff>lightslateblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#778899><a title=#778899>lightslategray</a></td>
-<td bgcolor=#778899><a title=#778899>lightslategrey</a></td>
-<td bgcolor=#b0c4de><a title=#b0c4de>lightsteelblue</a></td>
-<td bgcolor=#cae1ff><a title=#cae1ff>lightsteelblue1</a></td>
-<td bgcolor=#bcd2ee><a title=#bcd2ee>lightsteelblue2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#a2b5cd><a title=#a2b5cd>lightsteelblue3</a></td>
-<td bgcolor=#6e7b8b><a title=#6e7b8b>lightsteelblue4</a></td>
-<td bgcolor=#ffffe0><a title=#ffffe0>lightyellow</a></td>
-<td bgcolor=#ffffe0><a title=#ffffe0>lightyellow1</a></td>
-<td bgcolor=#eeeed1><a title=#eeeed1>lightyellow2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cdcdb4><a title=#cdcdb4>lightyellow3</a></td>
-<td bgcolor=#8b8b7a><a title=#8b8b7a>lightyellow4</a></td>
-<td bgcolor=#32cd32><a title=#32cd32>limegreen</a></td>
-<td bgcolor=#faf0e6><a title=#faf0e6>linen</a></td>
-<td bgcolor=#ff00ff><a title=#ff00ff>magenta</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff00ff><a title=#ff00ff>magenta1</a></td>
-<td bgcolor=#ee00ee><a title=#ee00ee>magenta2</a></td>
-<td bgcolor=#cd00cd><a title=#cd00cd>magenta3</a></td>
-<td bgcolor=#8b008b><a title=#8b008b>magenta4</a></td>
-<td bgcolor=#b03060><a title=#b03060>maroon</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff34b3><a title=#ff34b3>maroon1</a></td>
-<td bgcolor=#ee30a7><a title=#ee30a7>maroon2</a></td>
-<td bgcolor=#cd2990><a title=#cd2990>maroon3</a></td>
-<td bgcolor=#8b1c62><a title=#8b1c62>maroon4</a></td>
-<td bgcolor=#66cdaa><a title=#66cdaa>mediumaquamarine</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#0000cd><a title=#0000cd>mediumblue</a></td>
-<td bgcolor=#ba55d3><a title=#ba55d3>mediumorchid</a></td>
-<td bgcolor=#e066ff><a title=#e066ff>mediumorchid1</a></td>
-<td bgcolor=#d15fee><a title=#d15fee>mediumorchid2</a></td>
-<td bgcolor=#b452cd><a title=#b452cd>mediumorchid3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#7a378b><a title=#7a378b>mediumorchid4</a></td>
-<td bgcolor=#9370db><a title=#9370db>mediumpurple</a></td>
-<td bgcolor=#ab82ff><a title=#ab82ff>mediumpurple1</a></td>
-<td bgcolor=#9f79ee><a title=#9f79ee>mediumpurple2</a></td>
-<td bgcolor=#8968cd><a title=#8968cd>mediumpurple3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#5d478b><a title=#5d478b>mediumpurple4</a></td>
-<td bgcolor=#3cb371><a title=#3cb371>mediumseagreen</a></td>
-<td bgcolor=#7b68ee><a title=#7b68ee>mediumslateblue</a></td>
-<td bgcolor=#00fa9a><a title=#00fa9a>mediumspringgreen</a></td>
-<td bgcolor=#48d1cc><a title=#48d1cc>mediumturquoise</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#c71585><a title=#c71585>mediumvioletred</a></td>
-<td bgcolor=#191970><a title=#191970><font color=white>midnightblue</font></a></td>
-<td bgcolor=#f5fffa><a title=#f5fffa>mintcream</a></td>
-<td bgcolor=#ffe4e1><a title=#ffe4e1>mistyrose</a></td>
-<td bgcolor=#ffe4e1><a title=#ffe4e1>mistyrose1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#eed5d2><a title=#eed5d2>mistyrose2</a></td>
-<td bgcolor=#cdb7b5><a title=#cdb7b5>mistyrose3</a></td>
-<td bgcolor=#8b7d7b><a title=#8b7d7b>mistyrose4</a></td>
-<td bgcolor=#ffe4b5><a title=#ffe4b5>moccasin</a></td>
-<td bgcolor=#ffdead><a title=#ffdead>navajowhite</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffdead><a title=#ffdead>navajowhite1</a></td>
-<td bgcolor=#eecfa1><a title=#eecfa1>navajowhite2</a></td>
-<td bgcolor=#cdb38b><a title=#cdb38b>navajowhite3</a></td>
-<td bgcolor=#8b795e><a title=#8b795e>navajowhite4</a></td>
-<td bgcolor=#000080><a title=#000080><font color=white>&nbsp;&nbsp;&nbsp;navy&nbsp;&nbsp;&nbsp;</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#000080><a title=#000080><font color=white>navyblue</font></a></td>
-<td bgcolor=#fffffe><a title=#fffffe>&nbsp;&nbsp;&nbsp;none&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdf5e6><a title=#fdf5e6>oldlace</a></td>
-<td bgcolor=#6b8e23><a title=#6b8e23>olivedrab</a></td>
-<td bgcolor=#c0ff3e><a title=#c0ff3e>olivedrab1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b3ee3a><a title=#b3ee3a>olivedrab2</a></td>
-<td bgcolor=#9acd32><a title=#9acd32>olivedrab3</a></td>
-<td bgcolor=#698b22><a title=#698b22>olivedrab4</a></td>
-<td bgcolor=#ffa500><a title=#ffa500>orange</a></td>
-<td bgcolor=#ffa500><a title=#ffa500>orange1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ee9a00><a title=#ee9a00>orange2</a></td>
-<td bgcolor=#cd8500><a title=#cd8500>orange3</a></td>
-<td bgcolor=#8b5a00><a title=#8b5a00>orange4</a></td>
-<td bgcolor=#ff4500><a title=#ff4500>orangered</a></td>
-<td bgcolor=#ff4500><a title=#ff4500>orangered1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ee4000><a title=#ee4000>orangered2</a></td>
-<td bgcolor=#cd3700><a title=#cd3700>orangered3</a></td>
-<td bgcolor=#8b2500><a title=#8b2500>orangered4</a></td>
-<td bgcolor=#da70d6><a title=#da70d6>orchid</a></td>
-<td bgcolor=#ff83fa><a title=#ff83fa>orchid1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ee7ae9><a title=#ee7ae9>orchid2</a></td>
-<td bgcolor=#cd69c9><a title=#cd69c9>orchid3</a></td>
-<td bgcolor=#8b4789><a title=#8b4789>orchid4</a></td>
-<td bgcolor=#eee8aa><a title=#eee8aa>palegoldenrod</a></td>
-<td bgcolor=#98fb98><a title=#98fb98>palegreen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#9aff9a><a title=#9aff9a>palegreen1</a></td>
-<td bgcolor=#90ee90><a title=#90ee90>palegreen2</a></td>
-<td bgcolor=#7ccd7c><a title=#7ccd7c>palegreen3</a></td>
-<td bgcolor=#548b54><a title=#548b54>palegreen4</a></td>
-<td bgcolor=#afeeee><a title=#afeeee>paleturquoise</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#bbffff><a title=#bbffff>paleturquoise1</a></td>
-<td bgcolor=#aeeeee><a title=#aeeeee>paleturquoise2</a></td>
-<td bgcolor=#96cdcd><a title=#96cdcd>paleturquoise3</a></td>
-<td bgcolor=#668b8b><a title=#668b8b>paleturquoise4</a></td>
-<td bgcolor=#db7093><a title=#db7093>palevioletred</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff82ab><a title=#ff82ab>palevioletred1</a></td>
-<td bgcolor=#ee799f><a title=#ee799f>palevioletred2</a></td>
-<td bgcolor=#cd6889><a title=#cd6889>palevioletred3</a></td>
-<td bgcolor=#8b475d><a title=#8b475d>palevioletred4</a></td>
-<td bgcolor=#ffefd5><a title=#ffefd5>papayawhip</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffdab9><a title=#ffdab9>peachpuff</a></td>
-<td bgcolor=#ffdab9><a title=#ffdab9>peachpuff1</a></td>
-<td bgcolor=#eecbad><a title=#eecbad>peachpuff2</a></td>
-<td bgcolor=#cdaf95><a title=#cdaf95>peachpuff3</a></td>
-<td bgcolor=#8b7765><a title=#8b7765>peachpuff4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd853f><a title=#cd853f>&nbsp;&nbsp;&nbsp;peru&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffc0cb><a title=#ffc0cb>&nbsp;&nbsp;&nbsp;pink&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffb5c5><a title=#ffb5c5>pink1</a></td>
-<td bgcolor=#eea9b8><a title=#eea9b8>pink2</a></td>
-<td bgcolor=#cd919e><a title=#cd919e>pink3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8b636c><a title=#8b636c>pink4</a></td>
-<td bgcolor=#dda0dd><a title=#dda0dd>&nbsp;&nbsp;&nbsp;plum&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffbbff><a title=#ffbbff>plum1</a></td>
-<td bgcolor=#eeaeee><a title=#eeaeee>plum2</a></td>
-<td bgcolor=#cd96cd><a title=#cd96cd>plum3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8b668b><a title=#8b668b>plum4</a></td>
-<td bgcolor=#b0e0e6><a title=#b0e0e6>powderblue</a></td>
-<td bgcolor=#a020f0><a title=#a020f0>purple</a></td>
-<td bgcolor=#9b30ff><a title=#9b30ff>purple1</a></td>
-<td bgcolor=#912cee><a title=#912cee>purple2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#7d26cd><a title=#7d26cd>purple3</a></td>
-<td bgcolor=#551a8b><a title=#551a8b>purple4</a></td>
-<td bgcolor=#ff0000><a title=#ff0000>&nbsp;&nbsp;&nbsp;red&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff0000><a title=#ff0000>&nbsp;&nbsp;&nbsp;red1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ee0000><a title=#ee0000>&nbsp;&nbsp;&nbsp;red2&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd0000><a title=#cd0000>&nbsp;&nbsp;&nbsp;red3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8b0000><a title=#8b0000>&nbsp;&nbsp;&nbsp;red4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bc8f8f><a title=#bc8f8f>rosybrown</a></td>
-<td bgcolor=#ffc1c1><a title=#ffc1c1>rosybrown1</a></td>
-<td bgcolor=#eeb4b4><a title=#eeb4b4>rosybrown2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd9b9b><a title=#cd9b9b>rosybrown3</a></td>
-<td bgcolor=#8b6969><a title=#8b6969>rosybrown4</a></td>
-<td bgcolor=#4169e1><a title=#4169e1>royalblue</a></td>
-<td bgcolor=#4876ff><a title=#4876ff>royalblue1</a></td>
-<td bgcolor=#436eee><a title=#436eee>royalblue2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#3a5fcd><a title=#3a5fcd>royalblue3</a></td>
-<td bgcolor=#27408b><a title=#27408b>royalblue4</a></td>
-<td bgcolor=#8b4513><a title=#8b4513>saddlebrown</a></td>
-<td bgcolor=#fa8072><a title=#fa8072>salmon</a></td>
-<td bgcolor=#ff8c69><a title=#ff8c69>salmon1</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ee8262><a title=#ee8262>salmon2</a></td>
-<td bgcolor=#cd7054><a title=#cd7054>salmon3</a></td>
-<td bgcolor=#8b4c39><a title=#8b4c39>salmon4</a></td>
-<td bgcolor=#f4a460><a title=#f4a460>sandybrown</a></td>
-<td bgcolor=#2e8b57><a title=#2e8b57>seagreen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#54ff9f><a title=#54ff9f>seagreen1</a></td>
-<td bgcolor=#4eee94><a title=#4eee94>seagreen2</a></td>
-<td bgcolor=#43cd80><a title=#43cd80>seagreen3</a></td>
-<td bgcolor=#2e8b57><a title=#2e8b57>seagreen4</a></td>
-<td bgcolor=#fff5ee><a title=#fff5ee>seashell</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fff5ee><a title=#fff5ee>seashell1</a></td>
-<td bgcolor=#eee5de><a title=#eee5de>seashell2</a></td>
-<td bgcolor=#cdc5bf><a title=#cdc5bf>seashell3</a></td>
-<td bgcolor=#8b8682><a title=#8b8682>seashell4</a></td>
-<td bgcolor=#a0522d><a title=#a0522d>sienna</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff8247><a title=#ff8247>sienna1</a></td>
-<td bgcolor=#ee7942><a title=#ee7942>sienna2</a></td>
-<td bgcolor=#cd6839><a title=#cd6839>sienna3</a></td>
-<td bgcolor=#8b4726><a title=#8b4726>sienna4</a></td>
-<td bgcolor=#87ceeb><a title=#87ceeb>skyblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#87ceff><a title=#87ceff>skyblue1</a></td>
-<td bgcolor=#7ec0ee><a title=#7ec0ee>skyblue2</a></td>
-<td bgcolor=#6ca6cd><a title=#6ca6cd>skyblue3</a></td>
-<td bgcolor=#4a708b><a title=#4a708b>skyblue4</a></td>
-<td bgcolor=#6a5acd><a title=#6a5acd>slateblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#836fff><a title=#836fff>slateblue1</a></td>
-<td bgcolor=#7a67ee><a title=#7a67ee>slateblue2</a></td>
-<td bgcolor=#6959cd><a title=#6959cd>slateblue3</a></td>
-<td bgcolor=#473c8b><a title=#473c8b>slateblue4</a></td>
-<td bgcolor=#708090><a title=#708090>slategray</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#c6e2ff><a title=#c6e2ff>slategray1</a></td>
-<td bgcolor=#b9d3ee><a title=#b9d3ee>slategray2</a></td>
-<td bgcolor=#9fb6cd><a title=#9fb6cd>slategray3</a></td>
-<td bgcolor=#6c7b8b><a title=#6c7b8b>slategray4</a></td>
-<td bgcolor=#708090><a title=#708090>slategrey</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fffafa><a title=#fffafa>&nbsp;&nbsp;&nbsp;snow&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fffafa><a title=#fffafa>snow1</a></td>
-<td bgcolor=#eee9e9><a title=#eee9e9>snow2</a></td>
-<td bgcolor=#cdc9c9><a title=#cdc9c9>snow3</a></td>
-<td bgcolor=#8b8989><a title=#8b8989>snow4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00ff7f><a title=#00ff7f>springgreen</a></td>
-<td bgcolor=#00ff7f><a title=#00ff7f>springgreen1</a></td>
-<td bgcolor=#00ee76><a title=#00ee76>springgreen2</a></td>
-<td bgcolor=#00cd66><a title=#00cd66>springgreen3</a></td>
-<td bgcolor=#008b45><a title=#008b45>springgreen4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#4682b4><a title=#4682b4>steelblue</a></td>
-<td bgcolor=#63b8ff><a title=#63b8ff>steelblue1</a></td>
-<td bgcolor=#5cacee><a title=#5cacee>steelblue2</a></td>
-<td bgcolor=#4f94cd><a title=#4f94cd>steelblue3</a></td>
-<td bgcolor=#36648b><a title=#36648b>steelblue4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#d2b48c><a title=#d2b48c>&nbsp;&nbsp;&nbsp;tan&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffa54f><a title=#ffa54f>&nbsp;&nbsp;&nbsp;tan1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ee9a49><a title=#ee9a49>&nbsp;&nbsp;&nbsp;tan2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cd853f><a title=#cd853f>&nbsp;&nbsp;&nbsp;tan3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8b5a2b><a title=#8b5a2b>&nbsp;&nbsp;&nbsp;tan4&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#d8bfd8><a title=#d8bfd8>thistle</a></td>
-<td bgcolor=#ffe1ff><a title=#ffe1ff>thistle1</a></td>
-<td bgcolor=#eed2ee><a title=#eed2ee>thistle2</a></td>
-<td bgcolor=#cdb5cd><a title=#cdb5cd>thistle3</a></td>
-<td bgcolor=#8b7b8b><a title=#8b7b8b>thistle4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff6347><a title=#ff6347>tomato</a></td>
-<td bgcolor=#ff6347><a title=#ff6347>tomato1</a></td>
-<td bgcolor=#ee5c42><a title=#ee5c42>tomato2</a></td>
-<td bgcolor=#cd4f39><a title=#cd4f39>tomato3</a></td>
-<td bgcolor=#8b3626><a title=#8b3626>tomato4</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fffffe><a title=#fffffe>transparent</a></td>
-<td bgcolor=#40e0d0><a title=#40e0d0>turquoise</a></td>
-<td bgcolor=#00f5ff><a title=#00f5ff>turquoise1</a></td>
-<td bgcolor=#00e5ee><a title=#00e5ee>turquoise2</a></td>
-<td bgcolor=#00c5cd><a title=#00c5cd>turquoise3</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00868b><a title=#00868b>turquoise4</a></td>
-<td bgcolor=#ee82ee><a title=#ee82ee>violet</a></td>
-<td bgcolor=#d02090><a title=#d02090>violetred</a></td>
-<td bgcolor=#ff3e96><a title=#ff3e96>violetred1</a></td>
-<td bgcolor=#ee3a8c><a title=#ee3a8c>violetred2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cd3278><a title=#cd3278>violetred3</a></td>
-<td bgcolor=#8b2252><a title=#8b2252>violetred4</a></td>
-<td bgcolor=#f5deb3><a title=#f5deb3>wheat</a></td>
-<td bgcolor=#ffe7ba><a title=#ffe7ba>wheat1</a></td>
-<td bgcolor=#eed8ae><a title=#eed8ae>wheat2</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#cdba96><a title=#cdba96>wheat3</a></td>
-<td bgcolor=#8b7e66><a title=#8b7e66>wheat4</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>white</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>whitesmoke</a></td>
-<td bgcolor=#ffff00><a title=#ffff00>yellow</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffff00><a title=#ffff00>yellow1</a></td>
-<td bgcolor=#eeee00><a title=#eeee00>yellow2</a></td>
-<td bgcolor=#cdcd00><a title=#cdcd00>yellow3</a></td>
-<td bgcolor=#8b8b00><a title=#8b8b00>yellow4</a></td>
-<td bgcolor=#9acd32><a title=#9acd32>yellowgreen</a></td>
-</tr>
-</table><HR>
-<H2><A NAME="svg">The SVG color scheme</A></H2>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f8ff><a title=#f0f8ff>aliceblue</a></td>
-<td bgcolor=#faebd7><a title=#faebd7>antiquewhite</a></td>
-<td bgcolor=#00ffff><a title=#00ffff>&nbsp;&nbsp;&nbsp;aqua&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fffd4><a title=#7fffd4>aquamarine</a></td>
-<td bgcolor=#f0ffff><a title=#f0ffff>azure</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#f5f5dc><a title=#f5f5dc>beige</a></td>
-<td bgcolor=#ffe4c4><a title=#ffe4c4>bisque</a></td>
-<td bgcolor=#000000><a title=#000000><font color=white>black</font></a></td>
-<td bgcolor=#ffebcd><a title=#ffebcd>blanchedalmond</a></td>
-<td bgcolor=#0000ff><a title=#0000ff>&nbsp;&nbsp;&nbsp;blue&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#8a2be2><a title=#8a2be2>blueviolet</a></td>
-<td bgcolor=#a52a2a><a title=#a52a2a>brown</a></td>
-<td bgcolor=#deb887><a title=#deb887>burlywood</a></td>
-<td bgcolor=#5f9ea0><a title=#5f9ea0>cadetblue</a></td>
-<td bgcolor=#7fff00><a title=#7fff00>chartreuse</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#d2691e><a title=#d2691e>chocolate</a></td>
-<td bgcolor=#ff7f50><a title=#ff7f50>coral</a></td>
-<td bgcolor=#6495ed><a title=#6495ed>cornflowerblue</a></td>
-<td bgcolor=#fff8dc><a title=#fff8dc>cornsilk</a></td>
-<td bgcolor=#dc143c><a title=#dc143c>crimson</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#00ffff><a title=#00ffff>&nbsp;&nbsp;&nbsp;cyan&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#00008b><a title=#00008b>darkblue</a></td>
-<td bgcolor=#008b8b><a title=#008b8b>darkcyan</a></td>
-<td bgcolor=#b8860b><a title=#b8860b>darkgoldenrod</a></td>
-<td bgcolor=#a9a9a9><a title=#a9a9a9>darkgray</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#006400><a title=#006400><font color=white>darkgreen</font></a></td>
-<td bgcolor=#a9a9a9><a title=#a9a9a9>darkgrey</a></td>
-<td bgcolor=#bdb76b><a title=#bdb76b>darkkhaki</a></td>
-<td bgcolor=#8b008b><a title=#8b008b>darkmagenta</a></td>
-<td bgcolor=#556b2f><a title=#556b2f><font color=white>darkolivegreen</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff8c00><a title=#ff8c00>darkorange</a></td>
-<td bgcolor=#9932cc><a title=#9932cc>darkorchid</a></td>
-<td bgcolor=#8b0000><a title=#8b0000>darkred</a></td>
-<td bgcolor=#e9967a><a title=#e9967a>darksalmon</a></td>
-<td bgcolor=#8fbc8f><a title=#8fbc8f>darkseagreen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#483d8b><a title=#483d8b>darkslateblue</a></td>
-<td bgcolor=#2f4f4f><a title=#2f4f4f><font color=white>darkslategray</font></a></td>
-<td bgcolor=#2f4f4f><a title=#2f4f4f><font color=white>darkslategrey</font></a></td>
-<td bgcolor=#00ced1><a title=#00ced1>darkturquoise</a></td>
-<td bgcolor=#9400d3><a title=#9400d3>darkviolet</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff1493><a title=#ff1493>deeppink</a></td>
-<td bgcolor=#00bfff><a title=#00bfff>deepskyblue</a></td>
-<td bgcolor=#696969><a title=#696969><font color=white>dimgray</font></a></td>
-<td bgcolor=#696969><a title=#696969><font color=white>dimgrey</font></a></td>
-<td bgcolor=#1e90ff><a title=#1e90ff>dodgerblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b22222><a title=#b22222>firebrick</a></td>
-<td bgcolor=#fffaf0><a title=#fffaf0>floralwhite</a></td>
-<td bgcolor=#228b22><a title=#228b22>forestgreen</a></td>
-<td bgcolor=#ff00ff><a title=#ff00ff>fuchsia</a></td>
-<td bgcolor=#dcdcdc><a title=#dcdcdc>gainsboro</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#f8f8ff><a title=#f8f8ff>ghostwhite</a></td>
-<td bgcolor=#ffd700><a title=#ffd700>&nbsp;&nbsp;&nbsp;gold&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#daa520><a title=#daa520>goldenrod</a></td>
-<td bgcolor=#808080><a title=#808080><font color=white>&nbsp;&nbsp;&nbsp;gray&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#808080><a title=#808080><font color=white>&nbsp;&nbsp;&nbsp;grey&nbsp;&nbsp;&nbsp;</font></a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#008000><a title=#008000><font color=white>green</font></a></td>
-<td bgcolor=#adff2f><a title=#adff2f>greenyellow</a></td>
-<td bgcolor=#f0fff0><a title=#f0fff0>honeydew</a></td>
-<td bgcolor=#ff69b4><a title=#ff69b4>hotpink</a></td>
-<td bgcolor=#cd5c5c><a title=#cd5c5c>indianred</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#4b0082><a title=#4b0082><font color=white>indigo</font></a></td>
-<td bgcolor=#fffff0><a title=#fffff0>ivory</a></td>
-<td bgcolor=#f0e68c><a title=#f0e68c>khaki</a></td>
-<td bgcolor=#e6e6fa><a title=#e6e6fa>lavender</a></td>
-<td bgcolor=#fff0f5><a title=#fff0f5>lavenderblush</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#7cfc00><a title=#7cfc00>lawngreen</a></td>
-<td bgcolor=#fffacd><a title=#fffacd>lemonchiffon</a></td>
-<td bgcolor=#add8e6><a title=#add8e6>lightblue</a></td>
-<td bgcolor=#f08080><a title=#f08080>lightcoral</a></td>
-<td bgcolor=#e0ffff><a title=#e0ffff>lightcyan</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#fafad2><a title=#fafad2>lightgoldenrodyellow</a></td>
-<td bgcolor=#d3d3d3><a title=#d3d3d3>lightgray</a></td>
-<td bgcolor=#90ee90><a title=#90ee90>lightgreen</a></td>
-<td bgcolor=#d3d3d3><a title=#d3d3d3>lightgrey</a></td>
-<td bgcolor=#ffb6c1><a title=#ffb6c1>lightpink</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffa07a><a title=#ffa07a>lightsalmon</a></td>
-<td bgcolor=#20b2aa><a title=#20b2aa>lightseagreen</a></td>
-<td bgcolor=#87cefa><a title=#87cefa>lightskyblue</a></td>
-<td bgcolor=#778899><a title=#778899>lightslategray</a></td>
-<td bgcolor=#778899><a title=#778899>lightslategrey</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#b0c4de><a title=#b0c4de>lightsteelblue</a></td>
-<td bgcolor=#ffffe0><a title=#ffffe0>lightyellow</a></td>
-<td bgcolor=#00ff00><a title=#00ff00>&nbsp;&nbsp;&nbsp;lime&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#32cd32><a title=#32cd32>limegreen</a></td>
-<td bgcolor=#faf0e6><a title=#faf0e6>linen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ff00ff><a title=#ff00ff>magenta</a></td>
-<td bgcolor=#800000><a title=#800000><font color=white>maroon</font></a></td>
-<td bgcolor=#66cdaa><a title=#66cdaa>mediumaquamarine</a></td>
-<td bgcolor=#0000cd><a title=#0000cd>mediumblue</a></td>
-<td bgcolor=#ba55d3><a title=#ba55d3>mediumorchid</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#9370db><a title=#9370db>mediumpurple</a></td>
-<td bgcolor=#3cb371><a title=#3cb371>mediumseagreen</a></td>
-<td bgcolor=#7b68ee><a title=#7b68ee>mediumslateblue</a></td>
-<td bgcolor=#00fa9a><a title=#00fa9a>mediumspringgreen</a></td>
-<td bgcolor=#48d1cc><a title=#48d1cc>mediumturquoise</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#c71585><a title=#c71585>mediumvioletred</a></td>
-<td bgcolor=#191970><a title=#191970><font color=white>midnightblue</font></a></td>
-<td bgcolor=#f5fffa><a title=#f5fffa>mintcream</a></td>
-<td bgcolor=#ffe4e1><a title=#ffe4e1>mistyrose</a></td>
-<td bgcolor=#ffe4b5><a title=#ffe4b5>moccasin</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffdead><a title=#ffdead>navajowhite</a></td>
-<td bgcolor=#000080><a title=#000080><font color=white>&nbsp;&nbsp;&nbsp;navy&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#fdf5e6><a title=#fdf5e6>oldlace</a></td>
-<td bgcolor=#808000><a title=#808000><font color=white>olive</font></a></td>
-<td bgcolor=#6b8e23><a title=#6b8e23>olivedrab</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffa500><a title=#ffa500>orange</a></td>
-<td bgcolor=#ff4500><a title=#ff4500>orangered</a></td>
-<td bgcolor=#da70d6><a title=#da70d6>orchid</a></td>
-<td bgcolor=#eee8aa><a title=#eee8aa>palegoldenrod</a></td>
-<td bgcolor=#98fb98><a title=#98fb98>palegreen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#afeeee><a title=#afeeee>paleturquoise</a></td>
-<td bgcolor=#db7093><a title=#db7093>palevioletred</a></td>
-<td bgcolor=#ffefd5><a title=#ffefd5>papayawhip</a></td>
-<td bgcolor=#ffdab9><a title=#ffdab9>peachpuff</a></td>
-<td bgcolor=#cd853f><a title=#cd853f>&nbsp;&nbsp;&nbsp;peru&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffc0cb><a title=#ffc0cb>&nbsp;&nbsp;&nbsp;pink&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dda0dd><a title=#dda0dd>&nbsp;&nbsp;&nbsp;plum&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b0e0e6><a title=#b0e0e6>powderblue</a></td>
-<td bgcolor=#800080><a title=#800080><font color=white>purple</font></a></td>
-<td bgcolor=#ff0000><a title=#ff0000>&nbsp;&nbsp;&nbsp;red&nbsp;&nbsp;&nbsp;</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#bc8f8f><a title=#bc8f8f>rosybrown</a></td>
-<td bgcolor=#4169e1><a title=#4169e1>royalblue</a></td>
-<td bgcolor=#8b4513><a title=#8b4513>saddlebrown</a></td>
-<td bgcolor=#fa8072><a title=#fa8072>salmon</a></td>
-<td bgcolor=#f4a460><a title=#f4a460>sandybrown</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#2e8b57><a title=#2e8b57>seagreen</a></td>
-<td bgcolor=#fff5ee><a title=#fff5ee>seashell</a></td>
-<td bgcolor=#a0522d><a title=#a0522d>sienna</a></td>
-<td bgcolor=#c0c0c0><a title=#c0c0c0>silver</a></td>
-<td bgcolor=#87ceeb><a title=#87ceeb>skyblue</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#6a5acd><a title=#6a5acd>slateblue</a></td>
-<td bgcolor=#708090><a title=#708090>slategray</a></td>
-<td bgcolor=#708090><a title=#708090>slategrey</a></td>
-<td bgcolor=#fffafa><a title=#fffafa>&nbsp;&nbsp;&nbsp;snow&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#00ff7f><a title=#00ff7f>springgreen</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#4682b4><a title=#4682b4>steelblue</a></td>
-<td bgcolor=#d2b48c><a title=#d2b48c>&nbsp;&nbsp;&nbsp;tan&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#008080><a title=#008080><font color=white>&nbsp;&nbsp;&nbsp;teal&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#d8bfd8><a title=#d8bfd8>thistle</a></td>
-<td bgcolor=#ff6347><a title=#ff6347>tomato</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#40e0d0><a title=#40e0d0>turquoise</a></td>
-<td bgcolor=#ee82ee><a title=#ee82ee>violet</a></td>
-<td bgcolor=#f5deb3><a title=#f5deb3>wheat</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>white</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>whitesmoke</a></td>
-</tr>
-<tr align=center>
-<td bgcolor=#ffff00><a title=#ffff00>yellow</a></td>
-<td bgcolor=#9acd32><a title=#9acd32>yellowgreen</a></td>
-</table><HR>
-<H2><A NAME="brewer">Brewer color schemes</A></H2>
-accent3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-accent4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-accent5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#386cb0><a title=#386cb0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-accent6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#386cb0><a title=#386cb0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f0027f><a title=#f0027f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-accent7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#386cb0><a title=#386cb0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f0027f><a title=#f0027f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf5b17><a title=#bf5b17>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-accent8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7fc97f><a title=#7fc97f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#beaed4><a title=#beaed4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdc086><a title=#fdc086>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#386cb0><a title=#386cb0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f0027f><a title=#f0027f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf5b17><a title=#bf5b17>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#666666><a title=#666666><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-blues3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#deebf7><a title=#deebf7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ecae1><a title=#9ecae1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3182bd><a title=#3182bd>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#eff3ff><a title=#eff3ff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdd7e7><a title=#bdd7e7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2171b5><a title=#2171b5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#eff3ff><a title=#eff3ff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdd7e7><a title=#bdd7e7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3182bd><a title=#3182bd>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08519c><a title=#08519c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#eff3ff><a title=#eff3ff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c6dbef><a title=#c6dbef>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ecae1><a title=#9ecae1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3182bd><a title=#3182bd>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08519c><a title=#08519c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#eff3ff><a title=#eff3ff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c6dbef><a title=#c6dbef>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ecae1><a title=#9ecae1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4292c6><a title=#4292c6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2171b5><a title=#2171b5>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#084594><a title=#084594>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fbff><a title=#f7fbff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#deebf7><a title=#deebf7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c6dbef><a title=#c6dbef>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ecae1><a title=#9ecae1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4292c6><a title=#4292c6>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2171b5><a title=#2171b5>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#084594><a title=#084594>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-blues9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fbff><a title=#f7fbff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#deebf7><a title=#deebf7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c6dbef><a title=#c6dbef>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ecae1><a title=#9ecae1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6baed6><a title=#6baed6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4292c6><a title=#4292c6>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2171b5><a title=#2171b5>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08519c><a title=#08519c>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08306b><a title=#08306b><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#543005><a title=#543005><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf812d><a title=#bf812d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#35978f><a title=#35978f>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#003c30><a title=#003c30><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#543005><a title=#543005><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf812d><a title=#bf812d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#35978f><a title=#35978f>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#003c30><a title=#003c30><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d8b365><a title=#d8b365>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5ab4ac><a title=#5ab4ac>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-brbg4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6611a><a title=#a6611a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#018571><a title=#018571>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-brbg5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6611a><a title=#a6611a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#018571><a title=#018571>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-brbg6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8b365><a title=#d8b365>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5ab4ac><a title=#5ab4ac>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8b365><a title=#d8b365>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5ab4ac><a title=#5ab4ac>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf812d><a title=#bf812d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#35978f><a title=#35978f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-brbg9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8c510a><a title=#8c510a>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bf812d><a title=#bf812d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dfc27d><a title=#dfc27d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f6e8c3><a title=#f6e8c3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f5f5f5><a title=#f5f5f5>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7eae5><a title=#c7eae5>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80cdc1><a title=#80cdc1>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#35978f><a title=#35978f>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#01665e><a title=#01665e><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bugn3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e5f5f9><a title=#e5f5f9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d8c9><a title=#99d8c9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2ca25f><a title=#2ca25f>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-bugn4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2e2e2><a title=#b2e2e2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-bugn5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2e2e2><a title=#b2e2e2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2ca25f><a title=#2ca25f>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bugn6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccece6><a title=#ccece6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d8c9><a title=#99d8c9>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2ca25f><a title=#2ca25f>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bugn7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccece6><a title=#ccece6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d8c9><a title=#99d8c9>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ae76><a title=#41ae76>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005824><a title=#005824><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bugn8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcfd><a title=#f7fcfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5f5f9><a title=#e5f5f9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccece6><a title=#ccece6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d8c9><a title=#99d8c9>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ae76><a title=#41ae76>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005824><a title=#005824><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bugn9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcfd><a title=#f7fcfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5f5f9><a title=#e5f5f9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccece6><a title=#ccece6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d8c9><a title=#99d8c9>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a4><a title=#66c2a4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ae76><a title=#41ae76>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#00441b><a title=#00441b><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bupu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e0ecf4><a title=#e0ecf4>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ebcda><a title=#9ebcda>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8856a7><a title=#8856a7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-bupu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#88419d><a title=#88419d>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-bupu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8856a7><a title=#8856a7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#810f7c><a title=#810f7c><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bupu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bfd3e6><a title=#bfd3e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ebcda><a title=#9ebcda>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8856a7><a title=#8856a7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#810f7c><a title=#810f7c><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bupu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8fb><a title=#edf8fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bfd3e6><a title=#bfd3e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ebcda><a title=#9ebcda>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c6bb1><a title=#8c6bb1>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#88419d><a title=#88419d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6e016b><a title=#6e016b><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bupu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcfd><a title=#f7fcfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0ecf4><a title=#e0ecf4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bfd3e6><a title=#bfd3e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ebcda><a title=#9ebcda>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c6bb1><a title=#8c6bb1>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#88419d><a title=#88419d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6e016b><a title=#6e016b><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-bupu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcfd><a title=#f7fcfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0ecf4><a title=#e0ecf4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bfd3e6><a title=#bfd3e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9ebcda><a title=#9ebcda>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c96c6><a title=#8c96c6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c6bb1><a title=#8c6bb1>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#88419d><a title=#88419d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#810f7c><a title=#810f7c><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#4d004b><a title=#4d004b><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-dark23 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-dark24 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-dark25 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66a61e><a title=#66a61e>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-dark26 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66a61e><a title=#66a61e>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6ab02><a title=#e6ab02>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-dark27 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66a61e><a title=#66a61e>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6ab02><a title=#e6ab02>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6761d><a title=#a6761d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-dark28 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#1b9e77><a title=#1b9e77>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f02><a title=#d95f02>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7570b3><a title=#7570b3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66a61e><a title=#66a61e>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6ab02><a title=#e6ab02>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6761d><a title=#a6761d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#666666><a title=#666666><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-gnbu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e0f3db><a title=#e0f3db>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a8ddb5><a title=#a8ddb5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#43a2ca><a title=#43a2ca>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f9e8><a title=#f0f9e8>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bae4bc><a title=#bae4bc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f9e8><a title=#f0f9e8>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bae4bc><a title=#bae4bc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#43a2ca><a title=#43a2ca>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0868ac><a title=#0868ac>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f9e8><a title=#f0f9e8>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a8ddb5><a title=#a8ddb5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#43a2ca><a title=#43a2ca>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0868ac><a title=#0868ac>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f9e8><a title=#f0f9e8>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a8ddb5><a title=#a8ddb5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4eb3d3><a title=#4eb3d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08589e><a title=#08589e>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcf0><a title=#f7fcf0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3db><a title=#e0f3db>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a8ddb5><a title=#a8ddb5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4eb3d3><a title=#4eb3d3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#08589e><a title=#08589e>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-gnbu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcf0><a title=#f7fcf0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3db><a title=#e0f3db>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a8ddb5><a title=#a8ddb5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7bccc4><a title=#7bccc4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4eb3d3><a title=#4eb3d3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0868ac><a title=#0868ac>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#084081><a title=#084081><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greens3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e5f5e0><a title=#e5f5e0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d99b><a title=#a1d99b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-greens4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8e9><a title=#edf8e9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bae4b3><a title=#bae4b3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-greens5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8e9><a title=#edf8e9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bae4b3><a title=#bae4b3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greens6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8e9><a title=#edf8e9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9c0><a title=#c7e9c0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d99b><a title=#a1d99b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greens7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8e9><a title=#edf8e9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9c0><a title=#c7e9c0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d99b><a title=#a1d99b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005a32><a title=#005a32><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greens8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcf5><a title=#f7fcf5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5f5e0><a title=#e5f5e0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9c0><a title=#c7e9c0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d99b><a title=#a1d99b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005a32><a title=#005a32><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greens9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcf5><a title=#f7fcf5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5f5e0><a title=#e5f5e0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9c0><a title=#c7e9c0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d99b><a title=#a1d99b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74c476><a title=#74c476>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238b45><a title=#238b45>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006d2c><a title=#006d2c><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#00441b><a title=#00441b><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f0f0f0><a title=#f0f0f0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#636363><a title=#636363><font color=white>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cccccc><a title=#cccccc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cccccc><a title=#cccccc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#636363><a title=#636363><font color=white>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#252525><a title=#252525><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#636363><a title=#636363><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#252525><a title=#252525><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#737373><a title=#737373><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#252525><a title=#252525><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f0f0f0><a title=#f0f0f0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#737373><a title=#737373><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#252525><a title=#252525><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-greys9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f0f0f0><a title=#f0f0f0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdbdbd><a title=#bdbdbd>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#969696><a title=#969696>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#737373><a title=#737373><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#525252><a title=#525252><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#252525><a title=#252525><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#000000><a title=#000000><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-oranges3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee6ce><a title=#fee6ce>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae6b><a title=#fdae6b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6550d><a title=#e6550d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feedde><a title=#feedde>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbe85><a title=#fdbe85>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d94701><a title=#d94701>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feedde><a title=#feedde>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbe85><a title=#fdbe85>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6550d><a title=#e6550d>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a63603><a title=#a63603>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feedde><a title=#feedde>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd0a2><a title=#fdd0a2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae6b><a title=#fdae6b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6550d><a title=#e6550d>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a63603><a title=#a63603>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feedde><a title=#feedde>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd0a2><a title=#fdd0a2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae6b><a title=#fdae6b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f16913><a title=#f16913>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d94801><a title=#d94801>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c2d04><a title=#8c2d04>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff5eb><a title=#fff5eb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee6ce><a title=#fee6ce>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd0a2><a title=#fdd0a2>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae6b><a title=#fdae6b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f16913><a title=#f16913>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d94801><a title=#d94801>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c2d04><a title=#8c2d04>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-oranges9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff5eb><a title=#fff5eb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee6ce><a title=#fee6ce>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd0a2><a title=#fdd0a2>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae6b><a title=#fdae6b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f16913><a title=#f16913>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d94801><a title=#d94801>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a63603><a title=#a63603>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7f2704><a title=#7f2704><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-orrd3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee8c8><a title=#fee8c8>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbb84><a title=#fdbb84>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e34a33><a title=#e34a33>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fef0d9><a title=#fef0d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcc8a><a title=#fdcc8a>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7301f><a title=#d7301f>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fef0d9><a title=#fef0d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcc8a><a title=#fdcc8a>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e34a33><a title=#e34a33>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b30000><a title=#b30000>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fef0d9><a title=#fef0d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd49e><a title=#fdd49e>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbb84><a title=#fdbb84>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e34a33><a title=#e34a33>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b30000><a title=#b30000>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fef0d9><a title=#fef0d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd49e><a title=#fdd49e>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbb84><a title=#fdbb84>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef6548><a title=#ef6548>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7301f><a title=#d7301f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#990000><a title=#990000>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7ec><a title=#fff7ec>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee8c8><a title=#fee8c8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd49e><a title=#fdd49e>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbb84><a title=#fdbb84>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef6548><a title=#ef6548>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7301f><a title=#d7301f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#990000><a title=#990000>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-orrd9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7ec><a title=#fff7ec>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee8c8><a title=#fee8c8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdd49e><a title=#fdd49e>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbb84><a title=#fdbb84>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef6548><a title=#ef6548>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7301f><a title=#d7301f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b30000><a title=#b30000>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7f0000><a title=#7f0000><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-paired10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cab2d6><a title=#cab2d6>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a3d9a><a title=#6a3d9a>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cab2d6><a title=#cab2d6>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a3d9a><a title=#6a3d9a>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired12 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cab2d6><a title=#cab2d6>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a3d9a><a title=#6a3d9a>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff99><a title=#ffff99>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b15928><a title=#b15928>&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-paired9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a6cee3><a title=#a6cee3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1f78b4><a title=#1f78b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2df8a><a title=#b2df8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#33a02c><a title=#33a02c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb9a99><a title=#fb9a99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdbf6f><a title=#fdbf6f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cab2d6><a title=#cab2d6>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel13 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel14 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel15 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed9a6><a title=#fed9a6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel16 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed9a6><a title=#fed9a6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel17 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed9a6><a title=#fed9a6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5d8bd><a title=#e5d8bd>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel18 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed9a6><a title=#fed9a6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5d8bd><a title=#e5d8bd>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddaec><a title=#fddaec>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel19 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fbb4ae><a title=#fbb4ae>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3cde3><a title=#b3cde3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#decbe4><a title=#decbe4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed9a6><a title=#fed9a6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5d8bd><a title=#e5d8bd>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddaec><a title=#fddaec>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f2f2f2><a title=#f2f2f2>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel23 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel24 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4cae4><a title=#f4cae4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel25 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4cae4><a title=#f4cae4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5c9><a title=#e6f5c9>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel26 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4cae4><a title=#f4cae4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5c9><a title=#e6f5c9>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fff2ae><a title=#fff2ae>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel27 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4cae4><a title=#f4cae4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5c9><a title=#e6f5c9>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fff2ae><a title=#fff2ae>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1e2cc><a title=#f1e2cc>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pastel28 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b3e2cd><a title=#b3e2cd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdcdac><a title=#fdcdac>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbd5e8><a title=#cbd5e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4cae4><a title=#f4cae4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5c9><a title=#e6f5c9>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fff2ae><a title=#fff2ae>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1e2cc><a title=#f1e2cc>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cccccc><a title=#cccccc>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8e0152><a title=#8e0152>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de77ae><a title=#de77ae>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbc41><a title=#7fbc41>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#276419><a title=#276419><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-piyg11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8e0152><a title=#8e0152>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de77ae><a title=#de77ae>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbc41><a title=#7fbc41>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#276419><a title=#276419><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-piyg3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e9a3c9><a title=#e9a3c9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d76a><a title=#a1d76a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d01c8b><a title=#d01c8b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4dac26><a title=#4dac26>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d01c8b><a title=#d01c8b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4dac26><a title=#4dac26>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e9a3c9><a title=#e9a3c9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d76a><a title=#a1d76a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e9a3c9><a title=#e9a3c9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1d76a><a title=#a1d76a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de77ae><a title=#de77ae>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbc41><a title=#7fbc41>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-piyg9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#c51b7d><a title=#c51b7d>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de77ae><a title=#de77ae>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1b6da><a title=#f1b6da>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0ef><a title=#fde0ef>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f5d0><a title=#e6f5d0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b8e186><a title=#b8e186>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbc41><a title=#7fbc41>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d9221><a title=#4d9221>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-prgn10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#40004b><a title=#40004b><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9970ab><a title=#9970ab>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5aae61><a title=#5aae61>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#00441b><a title=#00441b><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-prgn11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#40004b><a title=#40004b><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9970ab><a title=#9970ab>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5aae61><a title=#5aae61>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#00441b><a title=#00441b><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-prgn3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#af8dc3><a title=#af8dc3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbf7b><a title=#7fbf7b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-prgn4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7b3294><a title=#7b3294>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#008837><a title=#008837>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-prgn5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7b3294><a title=#7b3294>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#008837><a title=#008837>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-prgn6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#af8dc3><a title=#af8dc3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbf7b><a title=#7fbf7b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-prgn7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#af8dc3><a title=#af8dc3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fbf7b><a title=#7fbf7b>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-prgn8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9970ab><a title=#9970ab>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5aae61><a title=#5aae61>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-prgn9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#762a83><a title=#762a83>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9970ab><a title=#9970ab>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2a5cf><a title=#c2a5cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7d4e8><a title=#e7d4e8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0d3><a title=#d9f0d3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6dba0><a title=#a6dba0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5aae61><a title=#5aae61>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1b7837><a title=#1b7837><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ece7f2><a title=#ece7f2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdc9e1><a title=#bdc9e1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0570b0><a title=#0570b0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdc9e1><a title=#bdc9e1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#045a8d><a title=#045a8d>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b8cbe><a title=#2b8cbe>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#045a8d><a title=#045a8d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0570b0><a title=#0570b0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#034e7b><a title=#034e7b><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7fb><a title=#fff7fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ece7f2><a title=#ece7f2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0570b0><a title=#0570b0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#034e7b><a title=#034e7b><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7fb><a title=#fff7fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ece7f2><a title=#ece7f2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74a9cf><a title=#74a9cf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0570b0><a title=#0570b0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#045a8d><a title=#045a8d>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#023858><a title=#023858><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubugn3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ece2f0><a title=#ece2f0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1c9099><a title=#1c9099>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubugn4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f6eff7><a title=#f6eff7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdc9e1><a title=#bdc9e1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#02818a><a title=#02818a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-pubugn5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f6eff7><a title=#f6eff7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bdc9e1><a title=#bdc9e1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1c9099><a title=#1c9099>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#016c59><a title=#016c59><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubugn6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f6eff7><a title=#f6eff7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1c9099><a title=#1c9099>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#016c59><a title=#016c59><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubugn7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f6eff7><a title=#f6eff7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#02818a><a title=#02818a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#016450><a title=#016450><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubugn8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7fb><a title=#fff7fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ece2f0><a title=#ece2f0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#02818a><a title=#02818a>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#016450><a title=#016450><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-pubugn9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7fb><a title=#fff7fb>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ece2f0><a title=#ece2f0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d0d1e6><a title=#d0d1e6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6bddb><a title=#a6bddb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3690c0><a title=#3690c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#02818a><a title=#02818a>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#016c59><a title=#016c59><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#014636><a title=#014636><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-puor10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7f3b08><a title=#7f3b08><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e08214><a title=#e08214>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8073ac><a title=#8073ac>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2d004b><a title=#2d004b><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-puor11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#7f3b08><a title=#7f3b08><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e08214><a title=#e08214>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8073ac><a title=#8073ac>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2d004b><a title=#2d004b><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-puor3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1a340><a title=#f1a340>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#998ec3><a title=#998ec3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e66101><a title=#e66101>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5e3c99><a title=#5e3c99>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e66101><a title=#e66101>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5e3c99><a title=#5e3c99>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1a340><a title=#f1a340>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#998ec3><a title=#998ec3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f1a340><a title=#f1a340>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#998ec3><a title=#998ec3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e08214><a title=#e08214>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8073ac><a title=#8073ac>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-puor9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b35806><a title=#b35806>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e08214><a title=#e08214>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb863><a title=#fdb863>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0b6><a title=#fee0b6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d8daeb><a title=#d8daeb>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b2abd2><a title=#b2abd2>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8073ac><a title=#8073ac>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#542788><a title=#542788>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e7e1ef><a title=#e7e1ef>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c994c7><a title=#c994c7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd1c77><a title=#dd1c77>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7b5d8><a title=#d7b5d8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ce1256><a title=#ce1256>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d7b5d8><a title=#d7b5d8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd1c77><a title=#dd1c77>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#980043><a title=#980043>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d4b9da><a title=#d4b9da>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c994c7><a title=#c994c7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd1c77><a title=#dd1c77>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#980043><a title=#980043>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f1eef6><a title=#f1eef6>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d4b9da><a title=#d4b9da>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c994c7><a title=#c994c7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ce1256><a title=#ce1256>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91003f><a title=#91003f>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f4f9><a title=#f7f4f9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7e1ef><a title=#e7e1ef>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d4b9da><a title=#d4b9da>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c994c7><a title=#c994c7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ce1256><a title=#ce1256>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91003f><a title=#91003f>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purd9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7f4f9><a title=#f7f4f9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7e1ef><a title=#e7e1ef>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d4b9da><a title=#d4b9da>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c994c7><a title=#c994c7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#df65b0><a title=#df65b0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e7298a><a title=#e7298a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ce1256><a title=#ce1256>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#980043><a title=#980043>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67001f><a title=#67001f><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-purples3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#efedf5><a title=#efedf5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bcbddc><a title=#bcbddc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#756bb1><a title=#756bb1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f2f0f7><a title=#f2f0f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbc9e2><a title=#cbc9e2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a51a3><a title=#6a51a3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f2f0f7><a title=#f2f0f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cbc9e2><a title=#cbc9e2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#756bb1><a title=#756bb1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#54278f><a title=#54278f>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f2f0f7><a title=#f2f0f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dadaeb><a title=#dadaeb>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bcbddc><a title=#bcbddc>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#756bb1><a title=#756bb1>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#54278f><a title=#54278f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f2f0f7><a title=#f2f0f7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dadaeb><a title=#dadaeb>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bcbddc><a title=#bcbddc>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#807dba><a title=#807dba>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a51a3><a title=#6a51a3>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4a1486><a title=#4a1486>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fcfbfd><a title=#fcfbfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#efedf5><a title=#efedf5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dadaeb><a title=#dadaeb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bcbddc><a title=#bcbddc>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#807dba><a title=#807dba>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a51a3><a title=#6a51a3>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4a1486><a title=#4a1486>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-purples9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fcfbfd><a title=#fcfbfd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#efedf5><a title=#efedf5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dadaeb><a title=#dadaeb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bcbddc><a title=#bcbddc>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#9e9ac8><a title=#9e9ac8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#807dba><a title=#807dba>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#6a51a3><a title=#6a51a3>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#54278f><a title=#54278f>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3f007d><a title=#3f007d><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdbu10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#67001f><a title=#67001f><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4393c3><a title=#4393c3>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#053061><a title=#053061><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdbu11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#67001f><a title=#67001f><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4393c3><a title=#4393c3>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#053061><a title=#053061><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdbu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ca0020><a title=#ca0020>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0571b0><a title=#0571b0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ca0020><a title=#ca0020>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0571b0><a title=#0571b0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67a9cf><a title=#67a9cf>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4393c3><a title=#4393c3>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdbu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7f7f7><a title=#f7f7f7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d1e5f0><a title=#d1e5f0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#92c5de><a title=#92c5de>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4393c3><a title=#4393c3>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2166ac><a title=#2166ac>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdgy10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#67001f><a title=#67001f><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#878787><a title=#878787>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#1a1a1a><a title=#1a1a1a><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#67001f><a title=#67001f><font color=white>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#878787><a title=#878787>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#1a1a1a><a title=#1a1a1a><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#999999><a title=#999999>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdgy4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ca0020><a title=#ca0020>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#404040><a title=#404040><font color=white>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ca0020><a title=#ca0020>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#404040><a title=#404040><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#999999><a title=#999999>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef8a62><a title=#ef8a62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#999999><a title=#999999>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#878787><a title=#878787>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdgy9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#b2182b><a title=#b2182b>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d6604d><a title=#d6604d>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f4a582><a title=#f4a582>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fddbc7><a title=#fddbc7>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffff><a title=#ffffff>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0e0e0><a title=#e0e0e0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bababa><a title=#bababa>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#878787><a title=#878787>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4d4d4d><a title=#4d4d4d><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdpu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fde0dd><a title=#fde0dd>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fa9fb5><a title=#fa9fb5>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c51b8a><a title=#c51b8a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdpu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feebe2><a title=#feebe2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fbb4b9><a title=#fbb4b9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ae017e><a title=#ae017e>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdpu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feebe2><a title=#feebe2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fbb4b9><a title=#fbb4b9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c51b8a><a title=#c51b8a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7a0177><a title=#7a0177><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdpu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feebe2><a title=#feebe2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcc5c0><a title=#fcc5c0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fa9fb5><a title=#fa9fb5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c51b8a><a title=#c51b8a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7a0177><a title=#7a0177><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdpu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#feebe2><a title=#feebe2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcc5c0><a title=#fcc5c0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fa9fb5><a title=#fa9fb5>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd3497><a title=#dd3497>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ae017e><a title=#ae017e>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7a0177><a title=#7a0177><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdpu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7f3><a title=#fff7f3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0dd><a title=#fde0dd>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcc5c0><a title=#fcc5c0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fa9fb5><a title=#fa9fb5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd3497><a title=#dd3497>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ae017e><a title=#ae017e>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7a0177><a title=#7a0177><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdpu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7f3><a title=#fff7f3>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fde0dd><a title=#fde0dd>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcc5c0><a title=#fcc5c0>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fa9fb5><a title=#fa9fb5>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f768a1><a title=#f768a1>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#dd3497><a title=#dd3497>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ae017e><a title=#ae017e>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7a0177><a title=#7a0177><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#49006a><a title=#49006a><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdylbu10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a50026><a title=#a50026>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74add1><a title=#74add1>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#313695><a title=#313695>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a50026><a title=#a50026>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74add1><a title=#74add1>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#313695><a title=#313695>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91bfdb><a title=#91bfdb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2c7bb6><a title=#2c7bb6>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2c7bb6><a title=#2c7bb6>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91bfdb><a title=#91bfdb>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91bfdb><a title=#91bfdb>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74add1><a title=#74add1>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylbu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee090><a title=#fee090>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e0f3f8><a title=#e0f3f8>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abd9e9><a title=#abd9e9>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#74add1><a title=#74add1>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4575b4><a title=#4575b4>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a50026><a title=#a50026>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66bd63><a title=#66bd63>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006837><a title=#006837><font color=white>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdylgn11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#a50026><a title=#a50026>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66bd63><a title=#66bd63>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006837><a title=#006837><font color=white>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-rdylgn3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91cf60><a title=#91cf60>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9641><a title=#1a9641>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9641><a title=#1a9641>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91cf60><a title=#91cf60>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#91cf60><a title=#91cf60>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66bd63><a title=#66bd63>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-rdylgn9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d73027><a title=#d73027>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9ef8b><a title=#d9ef8b>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d96a><a title=#a6d96a>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66bd63><a title=#66bd63>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1a9850><a title=#1a9850>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee0d2><a title=#fee0d2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc9272><a title=#fc9272>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de2d26><a title=#de2d26>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee5d9><a title=#fee5d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcae91><a title=#fcae91>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cb181d><a title=#cb181d>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee5d9><a title=#fee5d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcae91><a title=#fcae91>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de2d26><a title=#de2d26>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a50f15><a title=#a50f15>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee5d9><a title=#fee5d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcbba1><a title=#fcbba1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc9272><a title=#fc9272>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#de2d26><a title=#de2d26>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a50f15><a title=#a50f15>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fee5d9><a title=#fee5d9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcbba1><a title=#fcbba1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc9272><a title=#fc9272>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef3b2c><a title=#ef3b2c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cb181d><a title=#cb181d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99000d><a title=#99000d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff5f0><a title=#fff5f0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0d2><a title=#fee0d2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcbba1><a title=#fcbba1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc9272><a title=#fc9272>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef3b2c><a title=#ef3b2c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cb181d><a title=#cb181d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99000d><a title=#99000d>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-reds9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff5f0><a title=#fff5f0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee0d2><a title=#fee0d2>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fcbba1><a title=#fcbba1>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc9272><a title=#fc9272>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb6a4a><a title=#fb6a4a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ef3b2c><a title=#ef3b2c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cb181d><a title=#cb181d>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a50f15><a title=#a50f15>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#67000d><a title=#67000d><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-set13 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set14 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set15 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set16 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff33><a title=#ffff33>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set17 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff33><a title=#ffff33>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a65628><a title=#a65628>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set18 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff33><a title=#ffff33>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a65628><a title=#a65628>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f781bf><a title=#f781bf>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set19 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#e41a1c><a title=#e41a1c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#377eb8><a title=#377eb8>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#4daf4a><a title=#4daf4a>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#984ea3><a title=#984ea3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ff7f00><a title=#ff7f00>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffff33><a title=#ffff33>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a65628><a title=#a65628>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f781bf><a title=#f781bf>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#999999><a title=#999999>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set23 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set24 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e78ac3><a title=#e78ac3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set25 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e78ac3><a title=#e78ac3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d854><a title=#a6d854>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set26 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e78ac3><a title=#e78ac3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d854><a title=#a6d854>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffd92f><a title=#ffd92f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set27 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e78ac3><a title=#e78ac3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d854><a title=#a6d854>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffd92f><a title=#ffd92f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5c494><a title=#e5c494>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set28 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d62><a title=#fc8d62>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8da0cb><a title=#8da0cb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e78ac3><a title=#e78ac3>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a6d854><a title=#a6d854>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffd92f><a title=#ffd92f>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e5c494><a title=#e5c494>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3b3b3><a title=#b3b3b3>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set310 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fccde5><a title=#fccde5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bc80bd><a title=#bc80bd>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set311 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fccde5><a title=#fccde5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bc80bd><a title=#bc80bd>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set312 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fccde5><a title=#fccde5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bc80bd><a title=#bc80bd>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ccebc5><a title=#ccebc5>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffed6f><a title=#ffed6f>&nbsp;&nbsp;&nbsp;12&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set33 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set34 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set35 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set36 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set37 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set38 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fccde5><a title=#fccde5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-set39 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#8dd3c7><a title=#8dd3c7>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffb3><a title=#ffffb3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bebada><a title=#bebada>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fb8072><a title=#fb8072>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#80b1d3><a title=#80b1d3>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdb462><a title=#fdb462>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b3de69><a title=#b3de69>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fccde5><a title=#fccde5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9d9d9><a title=#d9d9d9>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral10 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#9e0142><a title=#9e0142>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5e4fa2><a title=#5e4fa2>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral11 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#9e0142><a title=#9e0142>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;10&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#5e4fa2><a title=#5e4fa2>&nbsp;&nbsp;&nbsp;11&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d594><a title=#99d594>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b83ba><a title=#2b83ba>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d7191c><a title=#d7191c>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2b83ba><a title=#2b83ba>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d594><a title=#99d594>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc8d59><a title=#fc8d59>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#99d594><a title=#99d594>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-spectral9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#d53e4f><a title=#d53e4f>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f46d43><a title=#f46d43>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fdae61><a title=#fdae61>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee08b><a title=#fee08b>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffffbf><a title=#ffffbf>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e6f598><a title=#e6f598>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#abdda4><a title=#abdda4>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#66c2a5><a title=#66c2a5>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#3288bd><a title=#3288bd>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgn3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#f7fcb9><a title=#f7fcb9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#addd8e><a title=#addd8e>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgn4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2e699><a title=#c2e699>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238443><a title=#238443>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgn5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c2e699><a title=#c2e699>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006837><a title=#006837><font color=white>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylgn6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0a3><a title=#d9f0a3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#addd8e><a title=#addd8e>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#31a354><a title=#31a354>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006837><a title=#006837><font color=white>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylgn7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0a3><a title=#d9f0a3>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#addd8e><a title=#addd8e>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238443><a title=#238443>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005a32><a title=#005a32><font color=white>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylgn8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffe5><a title=#ffffe5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7fcb9><a title=#f7fcb9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0a3><a title=#d9f0a3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#addd8e><a title=#addd8e>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238443><a title=#238443>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#005a32><a title=#005a32><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylgn9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffe5><a title=#ffffe5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f7fcb9><a title=#f7fcb9>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d9f0a3><a title=#d9f0a3>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#addd8e><a title=#addd8e>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#78c679><a title=#78c679>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41ab5d><a title=#41ab5d>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#238443><a title=#238443>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#006837><a title=#006837><font color=white>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</font></a></td>
-<td bgcolor=#004529><a title=#004529><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylgnbu3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#edf8b1><a title=#edf8b1>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fcdbb><a title=#7fcdbb>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2c7fb8><a title=#2c7fb8>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1dab4><a title=#a1dab4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#225ea8><a title=#225ea8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#a1dab4><a title=#a1dab4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2c7fb8><a title=#2c7fb8>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#253494><a title=#253494>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9b4><a title=#c7e9b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fcdbb><a title=#7fcdbb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#2c7fb8><a title=#2c7fb8>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#253494><a title=#253494>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9b4><a title=#c7e9b4>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fcdbb><a title=#7fcdbb>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1d91c0><a title=#1d91c0>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#225ea8><a title=#225ea8>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0c2c84><a title=#0c2c84>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd9><a title=#ffffd9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#edf8b1><a title=#edf8b1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9b4><a title=#c7e9b4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fcdbb><a title=#7fcdbb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1d91c0><a title=#1d91c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#225ea8><a title=#225ea8>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#0c2c84><a title=#0c2c84>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylgnbu9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd9><a title=#ffffd9>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#edf8b1><a title=#edf8b1>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#c7e9b4><a title=#c7e9b4>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#7fcdbb><a title=#7fcdbb>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#41b6c4><a title=#41b6c4>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#1d91c0><a title=#1d91c0>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#225ea8><a title=#225ea8>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#253494><a title=#253494>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#081d58><a title=#081d58><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylorbr3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#fff7bc><a title=#fff7bc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fec44f><a title=#fec44f>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f0e><a title=#d95f0e>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd4><a title=#ffffd4>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed98e><a title=#fed98e>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cc4c02><a title=#cc4c02>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd4><a title=#ffffd4>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed98e><a title=#fed98e>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f0e><a title=#d95f0e>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#993404><a title=#993404>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd4><a title=#ffffd4>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee391><a title=#fee391>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fec44f><a title=#fec44f>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#d95f0e><a title=#d95f0e>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#993404><a title=#993404>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffd4><a title=#ffffd4>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee391><a title=#fee391>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fec44f><a title=#fec44f>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ec7014><a title=#ec7014>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cc4c02><a title=#cc4c02>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c2d04><a title=#8c2d04>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffe5><a title=#ffffe5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fff7bc><a title=#fff7bc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee391><a title=#fee391>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fec44f><a title=#fec44f>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ec7014><a title=#ec7014>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cc4c02><a title=#cc4c02>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#8c2d04><a title=#8c2d04>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorbr9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffe5><a title=#ffffe5>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fff7bc><a title=#fff7bc>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fee391><a title=#fee391>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fec44f><a title=#fec44f>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fe9929><a title=#fe9929>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ec7014><a title=#ec7014>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#cc4c02><a title=#cc4c02>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#993404><a title=#993404>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#662506><a title=#662506><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-ylorrd3 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffeda0><a title=#ffeda0>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#feb24c><a title=#feb24c>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f03b20><a title=#f03b20>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd4 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffb2><a title=#ffffb2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fecc5c><a title=#fecc5c>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd5 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffb2><a title=#ffffb2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fecc5c><a title=#fecc5c>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f03b20><a title=#f03b20>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bd0026><a title=#bd0026>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd6 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffb2><a title=#ffffb2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed976><a title=#fed976>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#feb24c><a title=#feb24c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#f03b20><a title=#f03b20>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bd0026><a title=#bd0026>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd7 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffb2><a title=#ffffb2>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed976><a title=#fed976>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#feb24c><a title=#feb24c>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc4e2a><a title=#fc4e2a>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b10026><a title=#b10026>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd8 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffeda0><a title=#ffeda0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed976><a title=#fed976>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#feb24c><a title=#feb24c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc4e2a><a title=#fc4e2a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#b10026><a title=#b10026>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-</table><HR>
-ylorrd9 color scheme<BR>
-<table border=1 align=center>
-<tr align=center>
-<td bgcolor=#ffffcc><a title=#ffffcc>&nbsp;&nbsp;&nbsp;1&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#ffeda0><a title=#ffeda0>&nbsp;&nbsp;&nbsp;2&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fed976><a title=#fed976>&nbsp;&nbsp;&nbsp;3&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#feb24c><a title=#feb24c>&nbsp;&nbsp;&nbsp;4&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fd8d3c><a title=#fd8d3c>&nbsp;&nbsp;&nbsp;5&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#fc4e2a><a title=#fc4e2a>&nbsp;&nbsp;&nbsp;6&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#e31a1c><a title=#e31a1c>&nbsp;&nbsp;&nbsp;7&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#bd0026><a title=#bd0026>&nbsp;&nbsp;&nbsp;8&nbsp;&nbsp;&nbsp;</a></td>
-<td bgcolor=#800026><a title=#800026><font color=white>&nbsp;&nbsp;&nbsp;9&nbsp;&nbsp;&nbsp;</font></a></td>
-</table><HR>
-<BR>
-<A NAME=brewer_license>Apache-Style Software License for ColorBrewer software and ColorBrewer
-Color Schemes, Version 1.1</A>
-<P>
-Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania
-State University. All rights reserved.
-<P>
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-<OL>
-<LI>Redistributions as source code must retain the above copyright notice,
-this list of conditions and the following disclaimer.
-<LI>The end-user documentation included with the redistribution, if any,
-must include the following acknowledgment:
-<P>
-<I>This product includes color specifications and designs developed
-by Cynthia Brewer (http://colorbrewer.org/)</I>.
-<P>
-Alternately, this acknowledgment may appear in the software itself, if and
-wherever such third-party acknowledgments normally appear.
-<LI>The name "ColorBrewer" must not be used to endorse or promote products
-derived from this software without prior written permission. For written
-permission, please contact Cynthia Brewer at cbrewer@psu.edu.
-<LI>Products derived from this software may not be called "ColorBrewer", nor
-may "ColorBrewer" appear in their name, without prior written permission
-of Cynthia Brewer.
-</OL>
-THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
-INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CYNTHIA
-BREWER, MARK HARROWER, OR THE PENNSYLVANIA STATE UNIVERSITY BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-</body>
-</html>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/colors.html" />
+Moved to <a href="https://graphviz.org/doc/info/colors.html">https://graphviz.org/doc/info/colors.html</a>. Redirecting...
index 7a5d613d508d2d34ab872d6b6ce4c1f80f8f4273..2dbb6b81596c56db37ca19103bbb7a60cd97c843 100644 (file)
@@ -1,177 +1,2 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>Command-line Usage</TITLE>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 ALIGN=CENTER>Command-line Invocation</H1>
-<HR>
-All Graphviz programs have a similar invocation:<BR>
-<TABLE><TR><TD>
-<CODE><I>cmd</I> [ <I>flags</I> ] [ <I>input files</I> ]<CODE>
-</TR></TABLE>
-If no input files are supplied, the program reads from <STRONG>stdin</STRONG>.
-<H3>Flags</H3>
-<DL>
-<DT><STRONG>-G</STRONG><I>name</I>[=<I>value</I>]
-<DD>Set a graph attribute, with default <I>value</I> = <TT>true</TT>.
-<DT><STRONG>-N</STRONG><I>name</I>[=<I>value</I>]
-<DD>Set a default node attribute, with default <I>value</I> = <TT>true</TT>.
-<DT><STRONG>-E</STRONG><I>name</I>[=<I>value</I>]
-<DD>Set a default edge attribute, with default <I>value</I> = <TT>true</TT>.
-<DT><A NAME=minusK><STRONG>-K</STRONG></A><I>layout</I>
-<DD>Specifies which default layout algorithm to use, overriding the default from the command name. For example, running
-<TT>dot -Kneato</TT> is equivalent to running <TT>neato</TT>.
-<DT><A NAME=d:T><STRONG>-T</STRONG></A><I>format</I>[:<I>renderer</I>[:<I>formatter</I>]]       
-<DD>Set output language to one of the <A HREF=output.html>supported formats</A>.
-By default, <A HREF=output.html#d:dot>attributed dot</A> is produced.
-<P>
-Depending on how Graphviz was built, there may be multiple renderers for
-generating a particular output format, and multiple formatters for 
-creating the final output. For example, a typical installation
-can produce <A HREF="output.html#d:png">PNG</A>
-output using either the Cairo or GD library. The desired rendering engine
-can be specified after a colon. If there are multiple formatting engines
-available, the desired one can be specified in a similar fashion after
-the rendering engine. Thus, <TT>-Tpng:cairo</TT> specifies PNG
-output produced by Cairo (using the Cairo's default formatter), and 
-<TT>-Tpng:cairo:gd</TT> specifies PNG
-output produced by Cairo formatted using the GD library.
-<P>
-If no renderer is specified, or a renderer but no formatter, the default one
-is invoked. The flag <TT>-T<I>format</I>:</TT> produces a list of all
-of the renderers available for the specified <I>format</I>, the first one
-listed with a prefix matching <I>format</I> being the default.
-Using the <TT>-v</TT> flag, described below, will print which format,
-renderer, and formatter are actually used.
-<DT><STRONG>-V</STRONG>             
-<DD>Emit version information and exit.
-<DT><STRONG>-l</STRONG><I>library</I>
-<DD>User-supplied, device-dependent library text. Multiple flags may
-be given. These strings are passed to the code generator at the
-beginning of output. 
-<P>For PostScript output, they are treated as file names
-whose content will be included in the preamble after the standard preamble.
-If <I>library</I> is the empty string <TT>""</TT>, the standard preamble
-is not emitted.
-<DT><A NAME=d:n><STRONG>-n</STRONG>[<I>num</I>]</A>      
-<DD>Sets no-op flag in <STRONG>neato</STRONG>. 
-If set, <STRONG>neato</STRONG> assumes nodes have already been 
-positioned and all nodes have a <A HREF=attrs.html#d:pos>pos</A>
-attribute giving
-the positions. It then performs an optional adjustment to remove node-node
-overlap, depending on the value of the 
-<A HREF=attrs.html#d:overlap>overlap</A> attribute, computes the edge 
-layouts, depending on the value of the 
-<A HREF=attrs.html#d:splines>splines</A> attribute, and
-emits the graph in the appropriate format. If <I>num</I> is supplied,
-the following actions occur:
-<DL>
-<DT><I>num</I> = 1
-<DD>Equivalent to <STRONG>-n</STRONG>.
-<DT><I>num</I> > 1
-<DD>Use node positions as specified, with no adjustment to
-remove node-node overlaps, and use any edge layouts already specified
-by the <A HREF=attrs.html#d:pos>pos</A> attribute. <STRONG>neato</STRONG>
-computes an edge layout for any edge that does not have a <B>pos</B> attribute.
-As usual, edge layout is guided by the 
-<A HREF=attrs.html#d:splines>splines</A> attribute.
-</DL>
-<DT><STRONG>-o</STRONG><I>outfile</I>    
-<DD>Write output to file <I>outfile</I>. By default, output goes to
-<STRONG>stdout</STRONG>.
-<DT><STRONG>-O</STRONG>
-<DD>Automatically generate output file names based on the input
-file name and the various output formats specified by the <STRONG>-T</STRONG>
-flags.
-<DT><STRONG>-P</STRONG>
-<DD>Automatically generate a graph that shows the plugin configuration of
-the current executable.   e.g.  <STRONG>dot -P -Tps | lpr</STRONG>
-<DT><STRONG>-q</STRONG>
-<DD>Suppress warning messages.
-<DT><A NAME=d:s><STRONG>-s</STRONG></A>[<I>scale</I>]
-<DD>Set input scale to <I>scale</I>. If this value is omitted,
-72.0 is used. This number is used to convert the point coordinate
-units used in the <A HREF=attrs.html#d:pos>pos</A> attribute 
-into inches, which is what is expected by neato and fdp. 
-Thus, feeding the output of a graph laid out by one program into
-neato or fdp almost always requires this flag.
-Ignored if the <STRONG>-n</STRONG> flag is used.
-<DT><STRONG>-v</STRONG>             
-<DD>Verbose mode
-<DT><STRONG>-x</STRONG>             
-<DD>In <STRONG>neato</STRONG>, on input, prune isolated nodes and peninsulas.
-This removes uninteresting graph structure and produces a less cluttered
-drawing.
-<DT><STRONG>-y</STRONG>             
-<DD>By default, the coordinate system used in generic output formats, 
-such as <A HREF=output.html#d:dot>attributed dot</A>,
-<A HREF=output.html#d:xdot>extended dot</A>,
-<A HREF=output.html#d:plain>plain</A> and
-<A HREF=output.html#d:plain-ext>plain-ext</A>,
-is the standard cartesian system with the origin in the lower left corner, 
-and with increasing y coordinates as points move from bottom to top.
-If the <CODE>-y</CODE> flag is used, the coordinate system is inverted,
-so that increasing values of y correspond to movement from top to bottom.
-<DT><STRONG>-?</STRONG>             
-<DD>Print usage information, then exit.
-</DL>
-If multiple <STRONG>-T</STRONG> flags are given, drawings of the graph
-are emitted in each of the specified formats. Multiple <STRONG>-o</STRONG>
-flags can be used to specify the output file for each format. If there
-are more formats than files, the remaining formats are written to
-<STRONG>stdout</STRONG>.
-<P>
-Note that the <STRONG>-G</STRONG>, 
-<STRONG>-N</STRONG> and
-<STRONG>-E</STRONG> flags override any initial attribute declarations
-in the input graph,
-i.e., those attribute statements appearing before any node, edge or
-subgraph definitions.
-In addition, these flags cause the related attributes to be permanently
-attached to the graph. Thus, if attributed dot is used for
-output, the graph will have these attributes.
-<H3>Environment Variables</H3>
-<DL>
-<DT><STRONG>GDFONTPATH</STRONG>
-<DD>
-List of pathnames giving directories which a program should search for fonts.
-Overridden by <A HREF=#d:DOTFONTPATH>DOTFONTPATH</A>.
-<I>Used only if Graphviz is not built with the <TT>fontconfig</TT> library</I>
-<DT><A NAME=d:DOTFONTPATH><STRONG>DOTFONTPATH</STRONG></A>
-<DD>
-List of pathnames giving directories which a program should search for fonts.
-Overridden by <A HREF=attrs.html#d:fontpath><STRONG>fontpath</STRONG></A>.
-<I>Used only if Graphviz is not built with the <TT>fontconfig</TT> library</I>
-<DT><A NAME=d:SERVER_NAME><STRONG>SERVER_NAME</STRONG></A>
-<DD>
-If defined, this indicates that the software is running as a web application,
-which restricts access to image files. See 
-<A HREF=#d:GV_FILE_PATH>GV_FILE_PATH</A>.
-<DT><A NAME=d:GV_FILE_PATH><STRONG>GV_FILE_PATH</STRONG></A>
-<DD>
-If <A HREF=#d:SERVER_NAME>SERVER_NAME</A> is defined, image files are
-restricted to exist in one of the directories specified by <TT>GV_FILE_PATH</TT>.
-This last is a list of directory pathnames, separated by semicolons in Windows or
-by colons otherwise.
-Note that sometimes, when using one of the layout programs in a web
-script, it is not enough to use an export command but rather the
-variables should be set when the command is run, for example,<BR>
-<CODE>
-SERVER_NAME=xxx GV_FILE_PATH="images:etc/images:/usr/share/images" dot -Tpng -o x.png x.gv
-</CODE>
-<P>
-Note that the image files must really reside in one of the specified directories. If the
-image file is specified as an absolute or relative pathname, a warning is given and only
-the base name is used.
-<DT><A NAME=d:GVBINDIR><STRONG>GVBINDIR</STRONG></A>
-<DD>
-Indicates which directory contains the Graphviz config file and
-plug-in libraries. If it is defined, the value overrides any other
-mechanism for finding this directory. If Graphviz is properly installed,
-it should not be needed, though it can be useful for relocation on
-platforms not running Linux or Windows.
-</DL>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/command.html" />
+Moved to <a href="https://graphviz.org/doc/info/command.html">https://graphviz.org/doc/info/command.html</a>. Redirecting...
index 338c230043ff50e30f88b9d30ed3e6c327b2ed8c..a6720d27d4a542dff6a5d96104dad8b66e583509 100644 (file)
@@ -1,17 +1,2 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>GraphViz Reference</TITLE>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 align=CENTER>GraphViz Reference</H1>
-<HR>
-<A HREF=lang.html>The DOT Language</A><BR>
-<A HREF=command.html>Command-line Usage</A><BR>
-<A HREF=output.html>Output Formats</A><BR>
-<A HREF=attrs.html>Graph Attributes</A><BR>
-<A HREF=shapes.html>Node Shapes</A><BR>
-<A HREF=colors.html>Colors</A><BR>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/index.html" />
+Moved to <a href="https://graphviz.org/doc/info/index.html">https://graphviz.org/doc/info/index.html</a>. Redirecting...
index 5187055750979733ccf7756283aab254d89ce6ac..b2fd73f1192e5a6651a785a0ecddf48ca12160f9 100644 (file)
@@ -1,296 +1,2 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<!--
-    This is a generated document.  Do not edit.
--->
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>The DOT Language</TITLE>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 ALIGN=CENTER>The DOT Language</H1>
-<HR>
-The following is an abstract grammar defining the DOT language.
-Terminals are shown in bold font and nonterminals in italics.
-Literal characters are given in single quotes.
-Parentheses ( and ) indicate grouping when needed.
-Square brackets [ and ] enclose optional items.
-Vertical bars | separate alternatives.
-<TABLE>
-<TR>
-  <TD ALIGN=RIGHT><I>graph</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>[ <B>strict</B> ] (<B>graph</B> | <B>digraph</B>) [ <I>ID</I> ] <B>'{'</B> <I>stmt_list</I> <B>'}'</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>stmt_list</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>[ <I>stmt</I> [ <B>';'</B> ] <I>stmt_list</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>stmt</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>node_stmt</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>edge_stmt</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>attr_stmt</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>ID</I> <B>'='</B> <I>ID</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>subgraph</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>attr_stmt</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>(<B>graph</B> | <B>node</B> | <B>edge</B>) <I>attr_list</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>attr_list</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>'['</B> [ <I>a_list</I> ] <B>']'</B> [ <I>attr_list</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>a_list</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>ID</I> <B>'='</B> <I>ID</I> [ (<B>';'</B> | <B>','</B>) ] [ <I>a_list</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>edge_stmt</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>(<I>node_id</I> | <I>subgraph</I>) <I>edgeRHS</I> [ <I>attr_list</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>edgeRHS</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>edgeop</I> (<I>node_id</I> | <I>subgraph</I>) [ <I>edgeRHS</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>node_stmt</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>node_id</I> [ <I>attr_list</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>node_id</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>ID</I> [ <I>port</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>port</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>':'</B> <I>ID</I> [ <B>':'</B> <I>compass_pt</I> ]</TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>':'</B> <I>compass_pt</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>subgraph</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>[ <B>subgraph</B> [ <I>ID</I> ] ] <B>'{'</B> <I>stmt_list</I> <B>'}'</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>compass_pt</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT>(<B>n</B> | <B>ne</B> | <B>e</B> | <B>se</B> | <B>s</B> | <B>sw</B> | <B>w</B> | <B>nw</B> | <B>c</B> | <B>_</B>)</TD>
-</TR>
-</TABLE>
-<P>
-The keywords <B>node</B>, <B>edge</B>, <B>graph</B>, <B>digraph</B>,
-<B>subgraph</B>, and <B>strict</B> are case-independent.
-Note also that the allowed compass point values are not keywords, so
-these strings can be used elsewhere as ordinary identifiers and, conversely,
-the parser will actually accept any identifier.
-<P>
-An <I>ID</I> is one of the following: 
-<MENU>
-<LI> Any string of alphabetic (<TT>[a-zA-Z&#92;200-&#92;377]</TT>) characters, underscores (<TT>'_'</TT>) or
-digits (<TT>[0-9]</TT>), not beginning with a digit;
-<LI> a numeral [<tt>-</tt>]<sup>?</sup>(<tt>.</tt>[<tt>0</tt>-<tt>9</tt>]<sup>+</sup>  | [<tt>0</tt>-<tt>9</tt>]<sup>+</sup>(<tt>.</tt>[<tt>0</tt>-<tt>9</tt>]<sup>*</sup>)<sup>?</sup> ); 
-<LI> any double-quoted string (&quot;...&quot;) possibly containing escaped 
-quotes (\&quot;)<SUP>1</SUP>;
-<LI> an HTML string (&lt;...&gt;).
-</MENU>
-An ID is just a string; the lack of quote characters in the first two
-forms is just for simplicity. There is no semantic difference between
-<TT>abc_2</TT> and <TT>"abc_2"</TT>, or between <TT>2.34</TT> and 
-<TT>"2.34"</TT>. Obviously, to use a keyword as an ID, it must be quoted.
-Note that, in HTML strings, angle
-brackets must occur in matched pairs, and newlines and other formatting whitespace
-characters are allowed.
-In addition, the content must be legal XML, so that the special XML
-escape sequences for &quot;, &amp;, &lt;, and &gt; may be necessary
-in order to embed these characters in attribute values or raw text.
-As an ID, an HTML string can be any legal XML string. However, if used
-as a label attribute, it is interpreted specially and must follow the syntax
-for <A HREF=shapes.html#html>HTML-like labels</A>.
-<P>
-Both quoted strings and HTML strings are scanned as a unit, so
-any embedded comments will be treated as part of the strings.
-<P>
-An <I>edgeop</I> is <TT>-></TT> in directed graphs and <TT>--</TT> in
-undirected graphs.
-<P>
-The language supports C++-style comments: <TT>/* */</TT> and <TT>//</TT>.
-In addition, a line beginning with a '#' character is considered a line
-output from a C preprocessor (e.g., #  34 to indicate line 34 ) and discarded.
-<P>
-Semicolons and commas aid readability but are not required.
-Also, any amount of whitespace may be inserted between terminals.
-<P>
-As another aid for readability, dot allows double-quoted strings to
-span multiple physical lines using the standard C convention of a
-backslash immediately preceding a newline character<SUP>2</SUP>. In addition, 
-double-quoted strings can be concatenated using a '+' operator.
-As HTML strings can contain newline characters, which are used solely for 
-formatting, the language does not allow escaped newlines or
-concatenation operators to be used within them.
-<H2>Subgraphs and Clusters</H2>
-Subgraphs play three roles in Graphviz. First, a subgraph can be used to 
-represent graph structure, indicating that certain nodes and edges should 
-be grouped together. This is the usual role for subgraphs 
-and typically specifies semantic information about the graph components. 
-It can also provide a convenient shorthand for edges. An edge statement allows
-a subgraph on both the left and right sides of the edge operator.
-When this occurs, an edge is created from every node on the left to every node
-on the right. For example, the specification
-<PRE>
-  A -> {B C}
-</PRE>
-is equivalent to
-<PRE>
-  A -> B
-  A -> C
-</PRE>
-<P>
-In the second role, a subgraph can provide a context for setting attributes.
-For example, a subgraph could specify that blue 
-is the default color for all nodes defined in it. 
-In the context of 
-graph drawing, a more interesting example is: 
-<PRE>
-subgraph { 
-rank = same; A; B; C; 
-} 
-</PRE>
-This (anonymous) subgraph specifies that the nodes A, B and C 
-should all be placed on the same rank if drawn using dot. 
-<P>
-The third role for subgraphs directly involves how the graph
-will be laid out by certain layout engines. If the name of 
-the subgraph begins with <TT>cluster</TT>, Graphviz notes the subgraph as 
-a special <I>cluster</I> subgraph. If supported, the layout engine will 
-do the layout so that the nodes belonging to the cluster are drawn together, 
-with the entire drawing of the cluster contained within a bounding rectangle. 
-Note that, for good and bad, cluster subgraphs are not part of the
-DOT language, but solely a syntactic convention adhered to by
-certain of the layout engines.
-<H2>Lexical and Semantic Notes</H2>
-A graph must be specified as either a <B>digraph</B> or a <B>graph</B>.
-Semantically, this indicates whether or not there is a natural direction from
-one of the edge's nodes to the other. 
-Lexically, a digraph must specify an edge using the edge operator <TT>-></TT>
-while a undirected graph must use <TT>--</TT>.
-Operationally, the distinction is used to define different default rendering
-attributes. For example, edges in a digraph will be drawn, by default, with
-an arrowhead pointing to the head node. For ordinary graphs, edges are drawn
-without any arrowheads by default.
-<P>
-A graph may also be described as <B>strict</B>. 
-This forbids the creation of multi-edges, i.e., there can be at most one 
-edge with a given tail node and head node in the directed case. For undirected 
-graphs, there can be at most one
-edge connected to the same two nodes. Subsequent edge statements using
-the same two nodes will identify the edge with the previously defined one
-and apply any attributes given in the edge statement.
-For example, the graph
-<PRE>
-strict graph { 
-  a -- b
-  a -- b
-  b -- a [color=blue]
-} 
-</PRE>
-will have a single edge connecting nodes <TT>a</TT> and <TT>b</TT>,
-whose color is blue.
-<P>
-If a default attribute is
-defined using a <B>node</B>,  <B>edge</B>, or  <B>graph</B> statement,
-or by an attribute assignment not attached to a node or edge, any object of the
-appropriate type defined afterwards will inherit this attribute value.
-This holds until the default attribute is set to a new value, from which
-point the new value is used. Objects defined before a default attribute
-is set will have an empty string value attached to the attribute once
-the default attribute definition is made.
-<P>
-Note, in particular, that a subgraph receives the attribute settings of
-its parent graph at the time of its definition. This can be useful; for
-example, one can assign a font to the root graph and all subgraphs will
-also use the font. For some attributes, however, this property is
-undesirable. If one attaches a label to the root graph, it is probably
-not the desired effect to have the label used by all subgraphs. Rather
-than listing the graph attribute at the top of the graph, and the
-resetting the attribute as needed in the subgraphs, one can simply defer
-the attribute definition in the graph until the appropriate subgraphs
-have been defined.
-<P>
-If an edge belongs to a cluster, its endpoints belong to that cluster.
-Thus, where you put an edge can effect a layout, as clusters are sometimes
-laid out recursively.
-<P>
-There are certain restrictions on subgraphs and clusters. First, at
-present, the names of a graph and it subgraphs share the same namespace.
-Thus, each subgraph must have a unique name. Second, although nodes
-can belong to any number of subgraphs, it is assumed clusters form
-a strict hierarchy when viewed as subsets of nodes and edges.
-<H2>Character encodings</H2>
-The DOT language assumes at least the ascii character set.
-Quoted strings, both ordinary and HTML-like, may contain non-ascii characters.
-In most cases, these strings are uninterpreted: they simply serve as
-unique identifiers or values passed through untouched. Labels, however,
-are meant to be displayed, which requires that the software be able to
-compute the size of the text and determine the appropriate glyphs. 
-For this, it needs to know what character encoding is used.
-<P>
-By default, DOT assumes the UTF-8 character encoding. It also accepts
-the Latin1 (ISO-8859-1) character set, assuming the input graph uses
-the <B><A HREF=attrs.html#a:charset>charset</A></B> attribute to 
-specify this. For graphs using other
-character sets, there are usually programs, such as <TT>iconv</TT>, which
-will translate from one character set to another.
-<P>
-Another way to avoid non-ascii characters in labels is to use HTML entities
-for special characters. During label evaluation, these entities are
-translated into the underlying character. This
-<a HREF="https://www.graphviz.org/doc/char.html">
-table</a> shows the supported entities, with their Unicode value, a typical
-glyph, and the HTML entity name. Thus, to include a lower-case Greek beta
-into a string, one can use the ascii sequence <TT>&amp;beta;</TT>. 
-In general, one should only use entities that are allowed in the output
-character set, and for which there is a glyph in the font.
-<HR>
-<OL TYPE="1">
-<LI> In quoted strings in DOT, the only escaped character is double-quote
-("). That is, in quoted strings, the dyad &#92;" is converted to "; all other
-characters are left unchanged. In particular, &#92;&#92; remains &#92;&#92;. Layout
-engines may apply additional escape sequences.
-<LI> Previous to 2.30, the language allowed escaped newlines to be used anywhere outside
-of HTML strings. The new lex-based scanner makes this difficult to implement. Given the
-perceived lack of usefulness of this generality, we have restricted this feature to
-double-quoted strings, where it can actually be helpful.
-</OL>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/lang.html" />
+Moved to <a href="https://graphviz.org/doc/info/lang.html">https://graphviz.org/doc/info/lang.html</a>. Redirecting...
index 47b46fd3a59643c2be63e7e5bf45535426336175..2a1d980462ced16d2b3e00118dac5a7c7769fb54 100644 (file)
@@ -1,708 +1,2 @@
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<!--
-    This is a generated document.  Do not edit.
--->
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>Output Formats</TITLE>
-<style>
-.jsontable {
-    border: 1px solid black;
-    background-color: beige;
-}
-</style>
-<script src="w3data.js"></script>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 align=CENTER>Output Formats</H1>
-<HR>
-The output format is specified with the <STRONG>-T</STRONG><I>lang</I>
-flag on the <A HREF=command.html>command line</A>, where <I>lang</I>
-is one of the parameters listed below.
-<P>
-The formats actually available in a given Graphviz system depend on
-how the system was built and the presence of additional libraries.
-To see what formats <b>dot</b> supports, run <TT>dot -T?</TT>.
-See the <A HREF=command.html#d:T> description of the -T</A>
-flag for additional information.
-<P>
-Note that the internal coordinate system has the origin
-in the lower left corner.
-Thus, positions in the
-<A HREF=#d:canon>canon</A>,
-<A HREF=#d:dot>dot</A>,
-<A HREF=#d:xdot>xdot</A>,
-<A HREF=#d:plain>plain</A>, and
-<A HREF=#d:plain-ext>plain-ext</A>
-formats need to be interpreted in this manner.
-<P>
-<TABLE ALIGN=CENTER>
-<TR><TH>Command-line<BR>parameter</TH><TH>Format</TH></TR>
- <TR><TD ALIGN=CENTER><A NAME=a:bmp HREF=#d:bmp>bmp</A>
-</TD><TD>Windows Bitmap Format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:canon HREF=#d:canon>canon</A>
-<BR><A NAME=a:dot HREF=#d:dot>dot</A>
-<BR><A NAME=a:gv HREF=#d:gv>gv</A>
-<BR><A NAME=a:xdot HREF=#d:xdot>xdot</A>
-<BR><A NAME=a:xdot1.2 HREF=#d:xdot1.2>xdot1.2</A>
-<BR><A NAME=a:xdot1.4 HREF=#d:xdot1.4>xdot1.4</A>
-</TD><TD>DOT</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:cgimage HREF=#d:cgimage>cgimage</A>
-</TD><TD>CGImage bitmap format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:cmap HREF=#d:cmap>cmap</A>
-</TD><TD>Client-side imagemap (deprecated)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:eps HREF=#d:eps>eps</A>
-</TD><TD>Encapsulated PostScript</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:exr HREF=#d:exr>exr</A>
-</TD><TD>OpenEXR</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:fig HREF=#d:fig>fig</A>
-</TD><TD>FIG</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:gd HREF=#d:gd>gd</A>
-<BR><A NAME=a:gd2 HREF=#d:gd2>gd2</A>
-</TD><TD>GD/GD2 formats</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:gif HREF=#d:gif>gif</A>
-</TD><TD>GIF</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:gtk HREF=#d:gtk>gtk</A>
-</TD><TD>GTK canvas</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:ico HREF=#d:ico>ico</A>
-</TD><TD>Icon Image File Format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:imap HREF=#d:imap>imap</A>
-<BR><A NAME=a:cmapx HREF=#d:cmapx>cmapx</A>
-</TD><TD>Server-side and client-side imagemaps</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:imap_np HREF=#d:imap_np>imap_np</A>
-<BR><A NAME=a:cmapx_np HREF=#d:cmapx_np>cmapx_np</A>
-</TD><TD>Server-side and client-side imagemaps</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:ismap HREF=#d:ismap>ismap</A>
-</TD><TD>Server-side imagemap (deprecated)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:jp2 HREF=#d:jp2>jp2</A>
-</TD><TD>JPEG 2000</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:jpg HREF=#d:jpg>jpg</A>
-<BR><A NAME=a:jpeg HREF=#d:jpeg>jpeg</A>
-<BR><A NAME=a:jpe HREF=#d:jpe>jpe</A>
-</TD><TD>JPEG</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:json HREF=#d:json>json</A>
-<BR><A NAME=a:json0 HREF=#d:json0>json0</A>
-<BR><A NAME=a:dot_json HREF=#d:dot_json>dot_json</A>
-<BR><A NAME=a:xdot_json HREF=#d:xdot_json>xdot_json</A>
-</TD><TD>Dot graph represented in JSON format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:pct HREF=#d:pct>pct</A>
-<BR><A NAME=a:pict HREF=#d:pict>pict</A>
-</TD><TD>PICT</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:pdf HREF=#d:pdf>pdf</A>
-</TD><TD>Portable Document Format (PDF)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:pic HREF=#d:pic>pic</A>
-</TD><TD>Kernighan&#39;s PIC graphics language </TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:plain HREF=#d:plain>plain</A>
-<BR><A NAME=a:plain-ext HREF=#d:plain-ext>plain-ext</A>
-</TD><TD>Simple text format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:png HREF=#d:png>png</A>
-</TD><TD>Portable Network Graphics format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:pov HREF=#d:pov>pov</A>
-</TD><TD>POV-Ray markup language (prototype)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:ps HREF=#d:ps>ps</A>
-</TD><TD>PostScript</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:ps2 HREF=#d:ps2>ps2</A>
-</TD><TD>PostScript for PDF</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:psd HREF=#d:psd>psd</A>
-</TD><TD>PSD</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:sgi HREF=#d:sgi>sgi</A>
-</TD><TD>SGI</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:svg HREF=#d:svg>svg</A>
-<BR><A NAME=a:svgz HREF=#d:svgz>svgz</A>
-</TD><TD>Scalable Vector Graphics</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:tga HREF=#d:tga>tga</A>
-</TD><TD>Truevision TGA</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:tif HREF=#d:tif>tif</A>
-<BR><A NAME=a:tiff HREF=#d:tiff>tiff</A>
-</TD><TD>TIFF (Tag Image File Format)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:tk HREF=#d:tk>tk</A>
-</TD><TD>TK graphics</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:vml HREF=#d:vml>vml</A>
-<BR><A NAME=a:vmlz HREF=#d:vmlz>vmlz</A>
-</TD><TD>Vector Markup Language (VML)</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:vrml HREF=#d:vrml>vrml</A>
-</TD><TD>VRML</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:wbmp HREF=#d:wbmp>wbmp</A>
-</TD><TD>Wireless BitMap format</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:webp HREF=#d:webp>webp</A>
-</TD><TD>Image format for the Web</TD> </TR>
- <TR><TD ALIGN=CENTER><A NAME=a:xlib HREF=#d:xlib>xlib</A>
-<BR><A NAME=a:x11 HREF=#d:x11>x11</A>
-</TD><TD>Xlib canvas</TD> </TR>
-</TABLE>
-<HR>
-<H2>Format Descriptions</H2>
-<DL>
-<DT><A NAME=d:bmp HREF=#a:bmp><STRONG>bmp</STRONG></A>
-<DD>Outputs images in the Windows <A HREF="http://en.wikipedia.org/wiki/Bitmap">BMP</A> format.
-
-<DT><A NAME=d:canon HREF=#a:canon><STRONG>canon</STRONG></A>
-,<DT><A NAME=d:dot HREF=#a:dot><STRONG>dot</STRONG></A>
-,<DT><A NAME=d:gv HREF=#a:gv><STRONG>gv</STRONG></A>
-,<DT><A NAME=d:xdot HREF=#a:xdot><STRONG>xdot</STRONG></A>
-,<DT><A NAME=d:xdot1.2 HREF=#a:xdot1.2><STRONG>xdot1.2</STRONG></A>
-,<DT><A NAME=d:xdot1.4 HREF=#a:xdot1.4><STRONG>xdot1.4</STRONG></A>
-<DD>These formats produce output in the
-<A HREF=lang.html>dot language</A>.
-Using <B>canon</B> produces a prettyprinted version of the input,
-with no layout performed.
-<P>
-The <B>dot</B> option corresponds to attributed dot output,
-and is the default output format.
-It reproduces the input, along with layout information for the graph.
-In particular, a <A HREF=attrs.html#d:bb>bb</A> attribute is
-attached to the graph, specifying the bounding box of the drawing.
-If the graph has a label, its position is specified by the
-<A HREF=attrs.html#d:lp>lp</A> attribute.
-<P>
-Each node gets <A HREF=attrs.html#d:pos>pos</A>,
-<A HREF=attrs.html#d:width>width</A> and
-<A HREF=attrs.html#d:height>height</A> attributes. If the node is a record,
-the record rectangles are given in the
-<A HREF=attrs.html#d:rects>rects</A> attribute.
-If the node is a polygon and the
-<A HREF=attrs.html#d:vertices>vertices</A> attribute is defined, this
-attribute contains the vertices of the node.
-<P>
-Every edge is
-assigned a <A HREF=attrs.html#d:pos>pos</A> attribute,
-and if the edge has a label, the label position
-is given in <A HREF=attrs.html#d:lp>lp</A>.
-<P>
-The <B>xdot</B> format extends the
-<B>dot</B> format by providing much more detailed information about
-how graph components are drawn. It relies on additional attributes
-for nodes, edges and graphs.
-<P>
-The format is fluid; comments and
-suggestions for better representations are welcome.
-To allow for changes in the format, Graphviz attaches the attribute
-<TT>xdotversion</TT> to the graph.
-If the <TT>xdotversion</TT> attribute is set in the input graph, the renderer
-will only output features supported by that version. Note that the formats <TT>xdot1.2</TT>
-and <TT>xdot1.4</TT> are equivalent to setting <TT>xdotversion=1.2</TT> and <TT>xdotversion=1.4</TT>,
-respectively.
-<P>
-Additional drawing attributes can appear on nodes, edges, clusters and 
-on the graph itself. There are six new attributes: 
-<TABLE  border bgcolor=beige>
-<TR><TD>_draw_<TD colspan=2>General drawing without labels
-<TR><TD>_ldraw_<TD colspan=2>Label drawing
-<TR><TD>_hdraw_<TD>Head arrowhead<TD>Edge only
-<TR><TD>_tdraw_<TD>Tail arrowhead<TD>Edge only
-<TR><TD>_hldraw_<TD>Head label<TD>Edge only
-<TR><TD>_tldraw_<TD>Tail label<TD>Edge only
-</TABLE>
-<P>
-For a given graph object, one will typically a draw directive before the
-label directive. For example, for a node, one would first use the commands
-in <B>_draw_</B> followed by the commands in <B>_ldraw_</B>.
-<P>
-The value of these attributes consists of the concatenation of some
-(multi-)set of the following 13 rendering or attribute operations.
-(The number is parentheses gives the xdot version when the operation
-was added to the format. If no version number is given, the operation
-was in the original specification.)
-<TABLE border bgcolor=beige>
-<TR><TD>E x<sub>0</sub> y<sub>0</sub> w h
-<TD>Filled ellipse ((x-x<sub>0</sub>)/w)<sup>2</sup> + ((y-y<sub>0</sub>)/h)<sup>2</sup> = 1
-<TR><TD>e x<sub>0</sub> y<sub>0</sub> w h
-<TD>Unfilled ellipse ((x-x<sub>0</sub>)/w)<sup>2</sup> + ((y-y<sub>0</sub>)/h)<sup>2</sup> = 1
-<TR><TD>P n x<sub>1</sub> y<sub>1</sub> ... x<sub>n</sub> y<sub>n</sub>
-<TD>Filled polygon using the given n points
-<TR><TD>p n x<sub>1</sub> y<sub>1</sub> ... x<sub>n</sub> y<sub>n</sub>
-<TD>Unfilled polygon using the given n points
-<TR><TD>L n x<sub>1</sub> y<sub>1</sub> ... x<sub>n</sub> y<sub>n</sub>
-<TD>Polyline using the given n points
-<TR><TD>B n x<sub>1</sub> y<sub>1</sub> ... x<sub>n</sub> y<sub>n</sub>
-<TD>B-spline using the given n control points
-<TR><TD>b n x<sub>1</sub> y<sub>1</sub> ... x<sub>n</sub> y<sub>n</sub>
-<TD>Filled B-spline using the given n control points (1.1)
-<TR><TD>T x y j w n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Text drawn using the baseline point (x,y). The text consists of the
-n bytes following '-'. The text should be left-aligned (centered,
-right-aligned) on the point if j is -1 (0, 1), respectively. The value
-w gives the width of the text as computed by the library.
-<TR><TD>t f
-<TD>Set font characteristics. The integer f is the OR of BOLD=1, ITALIC=2, UNDERLINE=4, SUPERSCRIPT=8, SUBSCRIPT=16, (1.5) STRIKE-THROUGH=32 (1.6),
-and OVERLINE=64 (1.7).
-<TR><TD>C n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Set fill color. The color value consists of the
-n bytes following '-'. (1.1)
-<TR><TD>c n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Set pen color. The color value consists of the
-n bytes following '-'. (1.1)
-<TR><TD>F s n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Set font. The font size is s points. The font name consists of the
-n bytes following '-'. (1.1)
-<TR><TD>S n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Set style attribute. The style value consists of the
-n bytes following '-'. The syntax of the value is the same as
-specified for a <B>styleItem</B> in <A HREF=attrs.html#k:style>style</A>. (1.1)
-<TR><TD>I x y w h n -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>n</sub></I>
-<TD>Externally-specified image drawn in the box with lower left
-corner (x,y) and upper right corner (x+w,y+h). The name of the image
-consists of the n bytes following '-'. This is usually a bitmap
-image. Note that the image size, even when converted from pixels to
-points, might be different from the required size (w,h). It is
-assumed the renderer will perform the necessary scaling. (1.2)
-</TABLE>
-<P>
-Note that the filled figures (ellipses, polygons and B-Splines)
-imply two operations: first, drawing the filled figure with the
-current fill color; second, drawing an unfilled figure with the
-current pen color, pen width and pen style.
-<P>
-Within the context of a single drawing attribute, e.g., <TT>_draw_</TT>, there is
-an implicit state for the graphical attributes. That is, once a color, style, font, or
-font characteristic is set, it remains valid for all relevant drawing operations
-until the value is reset by another xdot cmd.
-<P>
-Style values which can be incorporated in the graphics model do not
-appear in xdot output. In particular, the style values
-<TT>filled</TT>, <TT>rounded</TT>, <TT>diagonals</TT>, and <TT>invis</TT>
-will not appear. Indeed, if style contains <TT>invis</TT>, 
-there will not be any xdot output at all.
-<P>
-With version 1.4 of xdot, color strings may now encode linear and radial gradients. Linear
-gradients have the form <br>
-&nbsp;&nbsp;&nbsp;&nbsp;'[' x<sub>0</sub> y<sub>0</sub> x<sub>1</sub> y<sub>1</sub> n [<I>color-stop</I>]<sup>+</sup> ']'<br>
-where (x<sub>0</sub>,y<sub>0</sub>) and (x<sub>1</sub>,y<sub>1</sub>) define the starting and
-ending points of the gradient line segment, and n gives the number of <I>color-stops</I>. Each
-<I>color-stop</I> has the form<br>
-&nbsp;&nbsp;&nbsp;&nbsp;v m -<I>b<sub>1</sub>b<sub>2</sub>...b<sub>m</sub></I><br>
-where v is a number in the range [0,1] defining a position on the gradient line segment, with
-color specified by the m byte string <I>b<sub>1</sub>b<sub>2</sub>...b<sub>m</sub></I>, 
-the same format as used for colors in the 'c' and 'C' operations.
-<P>
-Radial gradients have the form<br>
-&nbsp;&nbsp;&nbsp;&nbsp;'(' x<sub>0</sub> y<sub>0</sub> r<sub>0</sub> x<sub>1</sub> y<sub>1</sub> r<sub>1</sub> n [<I>color-stop</I>]<sup>+</sup> ')' <br>
-where x<sub><i>j</i></sub> y<sub><i>j</i></sub> r<sub><i>j</i></sub>, for <i>j</i>=0,1, specify
-the center and radius of the start and ending circle, and n gives the number of <I>color-stops</I>.
-A <I>color-stop</I> has the same format as defined for linear gradients, again given the fractional
-offset and its associated color. 
-<P>
-In handling text alignment, the application may want to recompute the
-string width using its own rendering primitives.
-<P>
-The text operation is only used in the label attributes. Normally,
-the non-text operations are only used in the non-label attributes.
-If, however, the <A HREF=attrs.html#d:decorate>decorate</A>
-attribute is set on an edge, its label
-attribute will also contain a polyline operation.
-In addition, if a label is a complex, HTML-like label, it will also
-contain non-text operations.
-<P>
-All coordinates and sizes are in points.
-Note though that if
-an edge or node is invisible, no drawing operations are attached to it.
-<P>
-Version info:
-<TABLE  border="1" >
-<TR><TH>Xdot version</TH><TH>Graphviz version</TH><TH>Modification</TH></TR>
-<TR><TD>1.0</TD> <TD>1.9</TD><TD> </TD></TR>
-<TR><TD>1.1</TD> <TD>2.8</TD><TD>First plug-in version</TD></TR>
-<TR><TD>1.2</TD><TD>2.13</TD><TD>Support image operator <b>I</b></TD></TR>
-<TR><TD>1.3</TD><TD>2.31</TD><TD>Add numerical precision</TD></TR>
-<TR><TD>1.4</TD><TD>2.32</TD><TD>Add gradient colors</TD></TR>
-<TR><TD>1.5</TD><TD>2.34</TD><TD>Fix text layout problem; fix inverted vector in gradient; support version-specific output; new <B>t</B> op for text characteristics</TD></TR>
-<TR><TD>1.6</TD><TD>2.35</TD><TD>Add STRIKE-THROUGH bit for <tt>t</tt></TD></TR>
-<TR><TD>1.7</TD><TD>2.37</TD><TD>Add OVERLINE for <tt>t</tt></TD></TR>
-</TABLE>
-
-<DT><A NAME=d:cgimage HREF=#a:cgimage><STRONG>cgimage</STRONG></A>
-<DD>Output using the <A HREF="https://developer.apple.com/library/mac/documentation/graphicsimaging/reference/CGImage/Reference/reference.html">CGImage format</A>.
-
-<DT><A NAME=d:cmap HREF=#a:cmap><STRONG>cmap</STRONG></A>
-<DD>Produces map files for client-side image maps. The cmap format is
-mostly identical to cmapx, but the latter is well-formed XML amenable
-to processing by XML tools. In particular, the cmapx output is wrapped in
-&lt;map&gt;&lt;/map&gt;.
-<P>
-See <A HREF=#ID>Note</A>.
-
-<DT><A NAME=d:eps HREF=#a:eps><STRONG>eps</STRONG></A>
-<DD>Produces Encapsulated PostScript output.
-At present, this is only guaranteed to be correct for a single
-input graph since the Bounding Box information has to appear
-at the beginning of the output, and this will be based on the first graph.
-
-<DT><A NAME=d:exr HREF=#a:exr><STRONG>exr</STRONG></A>
-<DD>Output in the OpenEXR format
-
-<DT><A NAME=d:fig HREF=#a:fig><STRONG>fig</STRONG></A>
-<DD>Outputs graphs in the FIG graphics language.
-
-<DT><A NAME=d:gd HREF=#a:gd><STRONG>gd</STRONG></A>
-,<DT><A NAME=d:gd2 HREF=#a:gd2><STRONG>gd2</STRONG></A>
-<DD>Output images in the GD and GD2 format. These are the internal
-formats used by the gd library. The latter is compressed.
-
-<DT><A NAME=d:gif HREF=#a:gif><STRONG>gif</STRONG></A>
-<DD>Outputs GIF bitmap images.
-
-<DT><A NAME=d:gtk HREF=#a:gtk><STRONG>gtk</STRONG></A>
-<DD>Creates a <A HREF="http://www.gtk.org/">GTK</A> window and displays the output there.
-
-<DT><A NAME=d:ico HREF=#a:ico><STRONG>ico</STRONG></A>
-<DD>Outputs images in the Windows <A HREF="http://en.wikipedia.org/wiki/ICO_(icon_image_file_format)">ICO format</A>.
-
-<DT><A NAME=d:imap HREF=#a:imap><STRONG>imap</STRONG></A>
-,<DT><A NAME=d:cmapx HREF=#a:cmapx><STRONG>cmapx</STRONG></A>
-<DD>Produces map files for server-side and client-side image maps.
-These can be used in a web page with
-a graphical form of the output, e.g. in JPEG, GIF or PNG format, to attach
-links to nodes and edges. 
-Graphviz generates an object's map information only if the object has a non-trival 
-<A HREF=attrs.html#d:URL>URL</A> or <A HREF=attrs.html#d:href>href</A>
-attribute, or if it has an explicit <A HREF=attrs.html#d:tooltip>tooltip</A> attribute.
-<P>
-For example, to create a server-side map
-given the dot file
-<PRE>
-/* x.gv */
-digraph mainmap {
-  URL="http://www.research.att.com/base.html";
-  command [URL="http://www.research.att.com/command.html"];
-  command -> output [URL="colors.html"];
-}
-</PRE>
-one would process the graph and generate two output files:
-<PRE>
-dot -Timap -ox.map -Tgif -ox.gif x.gv
-</PRE>
-and then refer to it in a web page:
-<PRE>
-&lt;A HREF="x.map"&gt;&lt;IMG SRC="x.gif" ismap="ismap" /&gt;&lt;/A&gt;
-</PRE>
-For client-side maps, one again generates two output files:
-<PRE>
-dot -Tcmapx -ox.map -Tgif -ox.gif x.gv
-</PRE>
-and uses the HTML
-<PRE>
-&lt;IMG SRC="x.gif" USEMAP="#mainmap" /&gt;
-... [content of x.map] ...
-</PRE>
-Note that the name given in the USEMAP attribute must be the same
-as the ID attribute of the MAP element. The Graphviz renderer
-uses the name of the graph as the ID. Thus, in the example above,
-where the graph's name is <CODE>mainmap</CODE>, we have <CODE>USEMAP="#mainmap"</CODE>
-in the IMG attribute, and x.map will look like
-<PRE>
-&lt;map id="mainmap" name="mainmap"&gt;
-... 
-&lt;/map&gt;
-</PRE>
-<P>
-<A HREF=attrs.html#d:URL>URLs</A> can be attached to the root
-graph, nodes and edges. If a node has a URL, clicking in the node
-will activate the link.
-If an edge has a URL, various
-points along the edge (but not necessarily the head or tail)
-will link to it. In addition, if the edge has a
-<A HREF=attrs.html#d:label>label</A>, that will link
-to the URL.
-As for the head of the edge, this is linked to the
-<A HREF=attrs.html#d:headURL>headURL</A>, if set.
-Otherwise, it is linked to the edge's URL if that is defined.
-The analogous description holds for the tail and the
-<A HREF=attrs.html#d:tailURL>tailURL</A>.
-A URL associated with the graph is used as a default link.
-<P>
-If the URL
-of a node contains the escape sequence "&#92;N", it will be replaced by
-the node's name.
-If the headURL is defined and contains the escape sequence "&#92;N",
-it will be replaced by
-the <A HREF=attrs.html#d:headlabel>headlabel</A>, if defined.
-The analogous result holds for the tailURL and the
-<A HREF=attrs.html#d:taillabel>taillabel</A>.
-<P>
-See <A HREF=#ID>Note</A>.
-
-<DT><A NAME=d:imap_np HREF=#a:imap_np><STRONG>imap_np</STRONG></A>
-,<DT><A NAME=d:cmapx_np HREF=#a:cmapx_np><STRONG>cmapx_np</STRONG></A>
-<DD>These are identical to the imap and cmapx formats, except they
-rely solely on rectangles as active areas.
-
-<DT><A NAME=d:ismap HREF=#a:ismap><STRONG>ismap</STRONG></A>
-<DD>Produces HTML image map files. This is a predecessor (circa 1994)
-of the IMAP format.  Most servers now use the latter.
-<A HREF=attrs.html#d:URL>URLs</A> can be attached to the root graph,
-nodes and edges. Since edge
-links are attached to edge labels, an edge must
-have a <A HREF=attrs.html#d:label>label</A> for its
-URL to be used. For both nodes and edges, if the URL has the escape
-sequence "&#92;N" embedded in its string, this will be replaced with the
-node or edge name.
-
-<DT><A NAME=d:jp2 HREF=#a:jp2><STRONG>jp2</STRONG></A>
-<DD>Output using the <A HREF="http://www.jpeg.org/jpeg2000/">JPEG 2000</A> format.
-
-<DT><A NAME=d:jpg HREF=#a:jpg><STRONG>jpg</STRONG></A>
-,<DT><A NAME=d:jpeg HREF=#a:jpeg><STRONG>jpeg</STRONG></A>
-,<DT><A NAME=d:jpe HREF=#a:jpe><STRONG>jpe</STRONG></A>
-<DD>Output JPEG compressed image files.
-
-<DT><A NAME=d:json HREF=#a:json><STRONG>json</STRONG></A>
-,<DT><A NAME=d:json0 HREF=#a:json0><STRONG>json0</STRONG></A>
-,<DT><A NAME=d:dot_json HREF=#a:dot_json><STRONG>dot_json</STRONG></A>
-,<DT><A NAME=d:xdot_json HREF=#a:xdot_json><STRONG>xdot_json</STRONG></A>
-<DD>These formats produce a JSON output encoding the DOT language.
-Using <B>json0</B> produces output in JSON format that contains the
-same information produced by  <A HREF=#d:dot>-Tdot</A>. 
-Using <B>json</B> produces output in JSON format that contains the
-same information produced by <A HREF=#d:xdot>-Txdot</A>. 
-Both of these assume the graph has been processed by one of the layout
-algorithms.
-The <B>dot_json</B> and <B>xdot_json</B> also produce JSON output similar to
-to <B>json0</B> and <B>json</B>, respectively, except they only use the
-content of the graph on input. In particular, they do not assume that the
-graph has been processed by any layout algorithm, and the only xdot information
-appearing in the output was in the original input file.
-<P>
-The output produced by these follows the json schema shown below.
-Note that the <b>objects</b> array has all of the subgraphs first,
-followed by all of the nodes. The <b>_gvid</b> value is the index of
-the subgraph or node in the <b>objects</b> array. This also holds
-true for the edges in the <b>objects</b> array. Note that this format
-allows clustered graphs, where edges can connect clusters as well as nodes.
-<div w3-include-html="schema.html"></div>
-<script>
-w3IncludeHTML();
-</script>
-
-
-<DT><A NAME=d:pct HREF=#a:pct><STRONG>pct</STRONG></A>
-,<DT><A NAME=d:pict HREF=#a:pict><STRONG>pict</STRONG></A>
-<DD>Output in the Apple PICT file format.
-
-<DT><A NAME=d:pdf HREF=#a:pdf><STRONG>pdf</STRONG></A>
-<DD>Produces <A HREF="http://www.adobe.com/devnet/pdf/">PDF</A> output.
-(This option assumes Graphviz includes the Cairo renderer.)
-Alternatively, one can use the <A HREF="#d:ps2">ps2</A> option to
-produce PDF-compatible PostScript, and then use a ps-to-pdf converter.
-
-<DT><A NAME=d:pic HREF=#a:pic><STRONG>pic</STRONG></A>
-<DD>Output is given in the text-based PIC language developed for troff.
-See <A HREF="https://en.wikipedia.org/wiki/Pic_language">Pic language</A>.
-
-<DT><A NAME=d:plain HREF=#a:plain><STRONG>plain</STRONG></A>
-,<DT><A NAME=d:plain-ext HREF=#a:plain-ext><STRONG>plain-ext</STRONG></A>
-<DD>The plain and plain-ext formats produce output using
-a simple, line-based language.
-The latter format differs in that, on edges, it provides port names
-on head and tail nodes when applicable.
-<P>
-There are four types of statements.
-<PRE>
- <STRONG>graph</STRONG> <I>scale</I> <I>width</I> <I>height</I>
- <STRONG>node</STRONG> <I>name</I> <I>x</I> <I>y</I> <I>width</I> <I>height</I> <I>label</I> <I>style</I> <I>shape</I> <I>color</I> <I>fillcolor</I>
- <STRONG>edge</STRONG> <I>tail</I> <I>head</I> <I>n</I> <I>x<sub>1</sub></I> <I>y<sub>1</sub></I> .. <I>x<sub>n</sub></I> <I>y<sub>n</sub></I> [<I>label</I> <I>xl</I> <I>yl</I>] <I>style</I> <I>color</I>
- <STRONG>stop</STRONG>
-</PRE>
-<DL>
-<DT><STRONG>graph</STRONG>
-<DD>The <I>width</I> and <I>height</I> values give the width and height
-of the drawing. The lower left corner of the drawing is at the origin.
-The <I>scale</I> value indicates how the drawing should be scaled
-if a <A HREF=attrs.html#d:size>size</A> attribute was given and the drawing
-needs to be scaled to conform to that size. If no scaling is necessary,
-it will be set to 1.0. Note that all graph, node and edge
-coordinates and lengths are given unscaled.
-<DT><STRONG>node</STRONG>
-<DD>The <I>name</I> value is the name of the node, and <I>x</I> and <I>y</I>
-give the node's position. The <I>width</I> and <I>height</I> are the
-width and height of the node.
-The <I>label</I>,
-<I>style</I>, <I>shape</I>, <I>color</I> and <I>fillcolor</I> give the
-node's <A HREF=attrs.html#d:label>label</A>,
-<A HREF=attrs.html#d:style>style</A>, <A HREF=attrs.html#d:shape>shape</A>,
-<A HREF=attrs.html#d:color>color</A> and
-<A HREF=attrs.html#d:fillcolor>fillcolor</A>,
-respectively, using attribute default values where necessary. If the
-node does not have a style attribute, "solid" is used.
-<DT><STRONG>edge</STRONG>
-<DD>The <I>tail</I> and <I>head</I> values give the names of the head and
-tail nodes. In plain-ext format, the head or tail name will be appended
-with a colon and a portname if the edge connects to the node at a port.
-<I>n</I> is the number of control points defining the
-B-spline forming the edge. This is followed by 2*<I>n</I> numbers giving
-the x and y coordinates of the control points in order from tail to head.
-If the edge has a <A HREF=attrs.html#d:label>label</A>, this comes next
-followed by the x and y coordinates of the label's position.
-The edge description is completed by the edge's
-<A HREF=attrs.html#d:style>style</A> and <A HREF=attrs.html#d:color>color</A>.
-As with nodes, if a style is not defined, "solid" is used.
-<P>
-<B>Note:</B> The control points given in an edge statement define the
-body of the edge. In particular, if the edge has an arrowhead to the
-head or tail node,
-there will be a gap between the last or first control points and the
-boundary of the associated node. There are at least 3 possible ways
-of handling this gap:
-<UL>
-<LI> Arrange that the input graph uses <TT>dir=none</TT>,
-<TT>arrowhead=none</TT>, or <TT>arrowtail=none</TT> for all edges.
-In this case, the terminating control points will always touch the node.
-<LI> Consider the line segment joining the control point and the center
-of the node, and determine the point where the segment intersects the
-node's boundary. Then use the control point and the intersection point
-as the main axis of an arrowhead. The problem with this approach is
-that, if the edge has a port, the edge will not be pointing to the
-center of the node. In this case, rather than use the control point
-and center point, one can use the control point and its tangent.
-<LI> Arrange that the input graph uses <TT>headclip=false</TT> or
-<TT>tailclip=false</TT>. In this case, the edge will terminate at
-the node's center rather than its boundary. If arrowheads are used,
-there will still be a gap, but normally this will occur within the
-node. The application will still need to clip the spline to the node
-boundary. Also, as with the previous item, if the edge points to
-a node port, this technique will fail.
-</UL>
-</DL>
-The output consists of one <STRONG>graph</STRONG> line, a sequence of
-<STRONG>node</STRONG> lines, one per node, a sequence of
-<STRONG>edge</STRONG> lines, one per edge, and a final <STRONG>stop</STRONG>
-line. All units are in inches, represented by a floating point number.
-<P>
-Note that the plain formats provide minimal information, really giving not
-much more than node positions and sizes, and edge spline control points.
-These formats are usually most useful to applications wanting just this
-geometric information, and willing to fill in all of the graphical details.
-The only real advantages to these formats is their terseness and their
-ease of parsing. In general, the <A HREF=#d:dot>dot</A> and
-<A HREF=#d:xdot>xdot</A> are preferable in terms of the quantity of
-information provided.
-
-<DT><A NAME=d:png HREF=#a:png><STRONG>png</STRONG></A>
-<DD>Produces output in the PNG (Portable Network Graphics) format.
-<P>
-(25 November 2014) A standard Graphviz installation will render using both
-the Cairo and GD library. 
-By <A HREF=command.html#d:T>mixing the rendering and formatting</A> of these
-libraries, one can achieve different variations in the output.
-<DL> 
-  <DT><TT>-Tpng:gd</TT> (or <TT>-Tpng:gd:gd</TT>) 
-    <DD>Indexed color, no antialiasing
-  <DT><TT>-Tpng:cairo:gd</TT>
-    <DD>Indexed color, with antialiasing
-  <DT><TT>-Tpng</TT> (or <TT>-Tpng:cairo</TT>) 
-    <DD>True color, with antialiasing
-</DL> 
-These options are listed in increasing order of image quality and output size.
-
-<DT><A NAME=d:pov HREF=#a:pov><STRONG>pov</STRONG></A>
-<DD>Scene-description language for 3D modelling for the 
-<A HREF="http://www.povray.org/">Persistence of Vision Raytracer</A>.
-
-<DT><A NAME=d:ps HREF=#a:ps><STRONG>ps</STRONG></A>
-<DD>Produces PostScript output.
-<P>
-Note: The default PostScript renderer can only handle the Latin-1
-character set. To get non-Latin-1 characters into PostScript output,
-use <TT>-Tps:cairo</TT>, assuming your version was built with the
-Cairo renderer.
-
-<DT><A NAME=d:ps2 HREF=#a:ps2><STRONG>ps2</STRONG></A>
-<DD>Produces PostScript output with PDF notations. It is assumed the output
-will be directly converted into PDF format. The notations include PDF
-bounding box information, so that the resulting PDF file can be correctly
-used with pdf tools, such as <STRONG>pdflatex</STRONG>.
-In addition, if a node has a URL
-attribute, this gets translated into PDF code such that the node,
-when viewed in a PDF-viewer, e.g.,
-<STRONG>acroread</STRONG>,
-is a link to the given URL. If a URL is attached to the graph, this serves
-as a base, such that relative URLs on nodes are derived from it.
-
-<DT><A NAME=d:psd HREF=#a:psd><STRONG>psd</STRONG></A>
-<DD>Output in the Adobe PhotoShop PSD file format.
-
-<DT><A NAME=d:sgi HREF=#a:sgi><STRONG>sgi</STRONG></A>
-<DD>Output in the SGI image file format.
-
-<DT><A NAME=d:svg HREF=#a:svg><STRONG>svg</STRONG></A>
-,<DT><A NAME=d:svgz HREF=#a:svgz><STRONG>svgz</STRONG></A>
-<DD>Produce <A HREF="http://www.adobe.com/svg/">SVG</A> output,
-the latter in compressed format.
-<P>
-See <A HREF=#ID>Note</A>.
-
-<DT><A NAME=d:tga HREF=#a:tga><STRONG>tga</STRONG></A>
-<DD>Output in the Truevision TGA or TARGA format.
-
-<DT><A NAME=d:tif HREF=#a:tif><STRONG>tif</STRONG></A>
-,<DT><A NAME=d:tiff HREF=#a:tiff><STRONG>tiff</STRONG></A>
-<DD>Produces <A HREF="http://www.libtiff.org/">TIFF</A> output.
-
-<DT><A NAME=d:tk HREF=#a:tk><STRONG>tk</STRONG></A>
-<DD>Output using the text-based TK graphics primitives.
-
-<DT><A NAME=d:vml HREF=#a:vml><STRONG>vml</STRONG></A>
-,<DT><A NAME=d:vmlz HREF=#a:vmlz><STRONG>vmlz</STRONG></A>
-<DD>Produces <A HREF="http://www.w3.org/TR/NOTE-VML">VML</A> output,
-the latter in compressed format.
-<P>
-See <A HREF=#ID>Note</A>.
-
-<DT><A NAME=d:vrml HREF=#a:vrml><STRONG>vrml</STRONG></A>
-<DD>Outputs graphs in the <A HREF="http://www.vrml.org/">VRML</A> format.
-To get a 3D embedding, nodes must have a <A HREF=attrs.html#d:z>z</A>
-attribute. These can either be supplied as part of the input graph, or
-be generated by neato provided <A HREF=attrs.html#d:dim>dim</A><TT>=3</TT>
-and at least one node has a <B>z</B> value.
-<P>
-Line segments are drawn as cylinders.
-In general, VRML output relies on having the PNG library to produce images
-used to texture-fill the node shapes. However, if
-<A HREF=attrs.html#d:shape>shape</A><TT>=point</TT>,
-a node is drawn as a 3D sphere.
-
-<DT><A NAME=d:wbmp HREF=#a:wbmp><STRONG>wbmp</STRONG></A>
-<DD>Produces output in the Wireless BitMap (WBMP) format, optimized for
-mobile computing.
-
-<DT><A NAME=d:webp HREF=#a:webp><STRONG>webp</STRONG></A>
-<DD>Produces output in the image format for the Web (WEBP) format, optimized for
-web devices such as tablets.
-See Wikipedia's <a href="http://en.wikipedia.org/wiki/Webp">WebP</a>
-or Google's <a href="http://code.google.com/speed/webp/">webp</a> pages.
-
-<DT><A NAME=d:xlib HREF=#a:xlib><STRONG>xlib</STRONG></A>
-,<DT><A NAME=d:x11 HREF=#a:x11><STRONG>x11</STRONG></A>
-<DD>Creates an <A HREF="http://en.wikipedia.org/wiki/Xlib">Xlib</A> window and displays the output there.
-
-</DL>
-<HR>
-<H1 align=CENTER><A NAME=d:image_fmts>Image Formats</A></H1>
-<HR>
-The <A HREF=attrs.html#a:image>image</A> and <A HREF=attrs.html#a:shapefile>shapefile</A> attributes specify an image file to be included
-as part of the final diagram. Not all image formats can be read. In addition,
-even if read, not all image formats can necessarily be used in a given
-output format.
-<P>
-The graph below shows what image formats can be used in which output formats,
-and the required plugins. On the left are the supported image formats. 
-On the right are the supported output formats.
-In the middle are the plugins: image loaders, renderers, drivers, arranged by 
-plugin library.  
-This presents the most general case. A given installation may not provide
-one of the plugins, in which case, that transformation is not possible.
-<BR>
-<IMG WIDTH="80%" SRC="plugins.png">
-<HR>
-<H2>Notes</H2>
-<OL TYPE="1">
-<LI>
-<A NAME=ID></A>In the formats: -Tcmap, -Tcmapx, -Tsvg, -Tvml, the output generates
-'id="node#"' properties for nodes, 'id="edge#"' properties for edges, and 'id="cluster#"' properties for clusters, with the '#' replaced by an internally assigned integer. These strings can be provided instead by an externally provided "id=xxx" attribute on the object.
-Normal "&#92;N" "&#92;E" "&#92;G" substitutions are applied.
-Externally provided id values are not used internally, and it is the use's reponsibilty to ensure
-that they are sufficiently unique for their intended downstream use.
-Note, in particular, that "&#92;E" is not a unique id for multiedges.
-</OL>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/output.html" />
+Moved to <a href="https://graphviz.org/doc/info/output.html">https://graphviz.org/doc/info/output.html</a>. Redirecting...
diff --git a/doc/info/schema.html b/doc/info/schema.html
deleted file mode 100644 (file)
index 251c443..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<table class="jsontable"><tr><th>description</th><td>JSON representation of a graph encoding xdot attributes</td></tr><tr><th>title</th><td>Graphviz JSON</td></tr><tr><th>required</th><td><ul><li>name</li><li>directed</li><li>strict</li><li>_subgraph_cnt</li></ul></td></tr><tr><th>definitions</th><td><table class="jsontable"><tr><th>drawops</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>oneOf</th><td><table class="jsontable"><tr><th>$ref</th></tr><tr><td>#/definitions/ellipse</td></tr><tr><td>#/definitions/polygon</td></tr><tr><td>#/definitions/polyline</td></tr><tr><td>#/definitions/bspline</td></tr><tr><td>#/definitions/text</td></tr><tr><td>#/definitions/font_style</td></tr><tr><td>#/definitions/drawcolor</td></tr><tr><td>#/definitions/font</td></tr><tr><td>#/definitions/style</td></tr></table></td></tr></table></td></tr><tr><th>type</th><td>array</td></tr></table></td></tr><tr><th>style</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>style</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>style</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>S</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>font_style</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>fontchar</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>t</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>fontchar</th><td><table class="jsontable"><tr><th>minimum</th><td>0</td></tr><tr><th>type</th><td>integer</td></tr><tr><th>maximum</th><td>127</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>polygon</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>points</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>points</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/pointlist</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>[pP]</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>metanode</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>_gvid</li><li>name</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>_draw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>name</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr><tr><th>description</th><td>The node or subgraph name</td></tr></table></td></tr><tr><th>_ldraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_gvid</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr></table></td></tr><tr><th>subgraphs</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>description</th><td>index of a child subgraph</td></tr></table></td></tr><tr><th>edges</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>description</th><td>index of an edge in this subgraph</td></tr></table></td></tr><tr><th>additionalProperties</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>nodes</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>description</th><td>index of a node in this subgraph</td></tr></table></td></tr></table></td></tr><tr><th>title</th><td>node or subgraph</td></tr></table></td></tr><tr><th>color</th><td><table class="jsontable"><tr><th>pattern</th><td>(#[0-9a-f]*)|(#[0-9a-f]{8})</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>text</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>pt</li><li>align</li><li>text</li><li>width</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>text</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>align</th><td><table class="jsontable"><tr><th>pattern</th><td>[lcr]</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>T</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>pt</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/point</td></tr></table></td></tr><tr><th>width</th><td><table class="jsontable"><tr><th>type</th><td>number</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>point</th><td><table class="jsontable"><tr><th>minItems</th><td>2</td></tr><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>number</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>maxItems</th><td>2</td></tr></table></td></tr><tr><th>stop</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>frac</li><li>color</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>color</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/color</td></tr></table></td></tr><tr><th>frac</th><td><table class="jsontable"><tr><th>type</th><td>number</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>drawcolor</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>grad</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>p0</th><td><table class="jsontable"><tr><th>oneOf</th><td><table class="jsontable"><tr><th>$ref</th></tr><tr><td>#/definitions/point</td></tr><tr><td>#/definitions/point3</td></tr></table></td></tr></table></td></tr><tr><th>p1</th><td><table class="jsontable"><tr><th>oneOf</th><td><table class="jsontable"><tr><th>$ref</th></tr><tr><td>#/definitions/point</td></tr><tr><td>#/definitions/point3</td></tr></table></td></tr></table></td></tr><tr><th>color</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/color</td></tr></table></td></tr><tr><th>stops</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/stop</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr></table></td></tr><tr><th>grad</th><td><table class="jsontable"><tr><th>enum</th><td><ul><li>none</li><li>linear</li><li>radial</li></ul></td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>[cC]</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>ellipse</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>rect</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>rect</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/rectangle</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>[eE]</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>bspline</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>points</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>points</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/pointlist</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>[bB]</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>edge</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>_gvid</li><li>tail</li><li>head</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>_hldraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_tdraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_draw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_ldraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_gvid</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr></table></td></tr><tr><th>tail</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr><tr><th>description</th><td>_gvid of tail node</td></tr></table></td></tr><tr><th>_tldraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>_hdraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>additionalProperties</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>head</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr><tr><th>description</th><td>_gvid of tail head</td></tr></table></td></tr></table></td></tr><tr><th>title</th><td>edge</td></tr></table></td></tr><tr><th>polyline</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>points</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>points</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/pointlist</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>L</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>font</th><td><table class="jsontable"><tr><th>required</th><td><ul><li>op</li><li>size</li><li>face</li></ul></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>size</th><td><table class="jsontable"><tr><th>minimum</th><td>0</td></tr><tr><th>type</th><td>number</td></tr></table></td></tr><tr><th>op</th><td><table class="jsontable"><tr><th>pattern</th><td>F</td></tr><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>face</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr></table></td></tr></table></td></tr><tr><th>point3</th><td><table class="jsontable"><tr><th>minItems</th><td>3</td></tr><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>number</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>maxItems</th><td>3</td></tr></table></td></tr><tr><th>rectangle</th><td><table class="jsontable"><tr><th>minItems</th><td>4</td></tr><tr><th>items</th><td><table class="jsontable"><tr><th>type</th><td>number</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>maxItems</th><td>4</td></tr></table></td></tr><tr><th>pointlist</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/point</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr></table></td></tr></table></td></tr><tr><th>type</th><td>object</td></tr><tr><th>properties</th><td><table class="jsontable"><tr><th>directed</th><td><table class="jsontable"><tr><th>type</th><td>boolean</td></tr><tr><th>description</th><td>True if the graph is directed</td></tr></table></td></tr><tr><th>_draw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>name</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr><tr><th>description</th><td>The graph name</td></tr></table></td></tr><tr><th>objects</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/metanode</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr><tr><th>description</th><td>The graph's subgraphs followed by the graph's nodes</td></tr></table></td></tr><tr><th>_ldraw_</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/drawops</td></tr></table></td></tr><tr><th>strict</th><td><table class="jsontable"><tr><th>type</th><td>boolean</td></tr><tr><th>description</th><td>True if the graph is strict</td></tr></table></td></tr><tr><th>edges</th><td><table class="jsontable"><tr><th>items</th><td><table class="jsontable"><tr><th>$ref</th><td>#/definitions/edge</td></tr></table></td></tr><tr><th>type</th><td>array</td></tr></table></td></tr><tr><th>additionalProperties</th><td><table class="jsontable"><tr><th>type</th><td>string</td></tr></table></td></tr><tr><th>_subgraph_cnt</th><td><table class="jsontable"><tr><th>type</th><td>integer</td></tr><tr><th>description</th><td>Number of subgraphs in the graph</td></tr></table></td></tr></table></td></tr></table>
\ No newline at end of file
index 5cc45f3f8ef1bfd2826b311cee697786b64e7b62..ccd09ead5a6471fed1e0db0eae0907be07222b3f 100644 (file)
-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<!--
-    This is a generated document.  Do not edit.
--->
-<HTML VERSION="2.0">
-<HEAD>
-<TITLE>Node Shapes</TITLE>
-</HEAD>
-<BODY BGCOLOR=white>
-<A NAME="top"></A>
-<H1 align=CENTER>Node Shapes</H1>
-<HR>
-There are three main types of shapes :
-<A HREF=shapes.html#polygon>polygon-based</A>,
-<A HREF=shapes.html#record>record-based</A> and
-<A HREF=shapes.html#epsf>user-defined</A>.
-The record-based shape has largely been superseded and greatly generalized
-by <A HREF=shapes.html#html>HTML-like labels</A>. 
-That is, instead of using <TT>shape=record</TT>, one might
-consider using <TT>shape=none</TT>, <TT>margin=0</TT> and an HTML-like label.
-<P>
-The geometry and style of all node shapes are affected by
-the node attributes 
-<A HREF=attrs.html#d:fixedsize><TT>fixedsize</TT></A>, 
-<A HREF=attrs.html#d:fontname><TT>fontname</TT></A>, 
-<A HREF=attrs.html#d:fontsize><TT>fontsize</TT></A>, 
-<A HREF=attrs.html#d:height><TT>height</TT></A>,
-<A HREF=attrs.html#d:label><TT>label</TT></A>, 
-<A HREF=#d:style><TT>style</TT></A> and
-<A HREF=attrs.html#d:width><TT>width</TT></A>.
-
-<H2><A NAME=polygon>Polygon-based Nodes</A></H2>
-The possible polygon-based shapes are displayed below.
-<TABLE ALIGN=CENTER>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=box.gif>
-    <TD><IMG SRC=polygon.gif>
-    <TD><IMG SRC=ellipse.gif>
-    <TD><IMG SRC=oval.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:box>box</A>
-    <TD><A NAME=d:polygon>polygon</A>
-    <TD><A NAME=d:ellipse>ellipse</A>
-    <TD><A NAME=d:oval>oval</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=circle.gif>
-    <TD><IMG SRC=point.gif>
-    <TD><IMG SRC=egg.gif>
-    <TD><IMG SRC=triangle.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:circle>circle</A>
-    <TD><A NAME=d:point>point</A>
-    <TD><A NAME=d:egg>egg</A>
-    <TD><A NAME=d:triangle>triangle</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=plaintext.gif>
-    <TD><IMG SRC=plain.gif>
-    <TD><IMG SRC=diamond.gif>
-    <TD><IMG SRC=trapezium.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:plaintext>plaintext</A>
-    <TD><A NAME=d:plain>plain</A>
-    <TD><A NAME=d:diamond>diamond</A>
-    <TD><A NAME=d:trapezium>trapezium</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=parallelogram.gif>
-    <TD><IMG SRC=house.gif>
-    <TD><IMG SRC=pentagon.gif>
-    <TD><IMG SRC=hexagon.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:parallelogram>parallelogram</A>
-    <TD><A NAME=d:house>house</A>
-    <TD><A NAME=d:pentagon>pentagon</A>
-    <TD><A NAME=d:hexagon>hexagon</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=septagon.gif>
-    <TD><IMG SRC=octagon.gif>
-    <TD><IMG SRC=doublecircle.gif>
-    <TD><IMG SRC=doubleoctagon.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:septagon>septagon</A>
-    <TD><A NAME=d:octagon>octagon</A>
-    <TD><A NAME=d:doublecircle>doublecircle</A>
-    <TD><A NAME=d:doubleoctagon>doubleoctagon</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=tripleoctagon.gif>
-    <TD><IMG SRC=invtriangle.gif>
-    <TD><IMG SRC=invtrapezium.gif>
-    <TD><IMG SRC=invhouse.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:tripleoctagon>tripleoctagon</A>
-    <TD><A NAME=d:invtriangle>invtriangle</A>
-    <TD><A NAME=d:invtrapezium>invtrapezium</A>
-    <TD><A NAME=d:invhouse>invhouse</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=Mdiamond.gif>
-    <TD><IMG SRC=Msquare.gif>
-    <TD><IMG SRC=Mcircle.gif>
-    <TD><IMG SRC=rect.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:Mdiamond>Mdiamond</A>
-    <TD><A NAME=d:Msquare>Msquare</A>
-    <TD><A NAME=d:Mcircle>Mcircle</A>
-    <TD><A NAME=d:rect>rect</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=rectangle.gif>
-    <TD><IMG SRC=square.gif>
-    <TD><IMG SRC=star.gif>
-    <TD><IMG SRC=none.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:rectangle>rectangle</A>
-    <TD><A NAME=d:square>square</A>
-    <TD><A NAME=d:star>star</A>
-    <TD><A NAME=d:none>none</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=underline.gif>
-    <TD><IMG SRC=cylinder.gif>
-    <TD><IMG SRC=note.gif>
-    <TD><IMG SRC=tab.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:underline>underline</A>
-    <TD><A NAME=d:cylinder>cylinder</A>
-    <TD><A NAME=d:note>note</A>
-    <TD><A NAME=d:tab>tab</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=folder.gif>
-    <TD><IMG SRC=box3d.gif>
-    <TD><IMG SRC=component.gif>
-    <TD><IMG SRC=promoter.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:folder>folder</A>
-    <TD><A NAME=d:box3d>box3d</A>
-    <TD><A NAME=d:component>component</A>
-    <TD><A NAME=d:promoter>promoter</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=cds.gif>
-    <TD><IMG SRC=terminator.gif>
-    <TD><IMG SRC=utr.gif>
-    <TD><IMG SRC=primersite.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:cds>cds</A>
-    <TD><A NAME=d:terminator>terminator</A>
-    <TD><A NAME=d:utr>utr</A>
-    <TD><A NAME=d:primersite>primersite</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=restrictionsite.gif>
-    <TD><IMG SRC=fivepoverhang.gif>
-    <TD><IMG SRC=threepoverhang.gif>
-    <TD><IMG SRC=noverhang.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:restrictionsite>restrictionsite</A>
-    <TD><A NAME=d:fivepoverhang>fivepoverhang</A>
-    <TD><A NAME=d:threepoverhang>threepoverhang</A>
-    <TD><A NAME=d:noverhang>noverhang</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=assembly.gif>
-    <TD><IMG SRC=signature.gif>
-    <TD><IMG SRC=insulator.gif>
-    <TD><IMG SRC=ribosite.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:assembly>assembly</A>
-    <TD><A NAME=d:signature>signature</A>
-    <TD><A NAME=d:insulator>insulator</A>
-    <TD><A NAME=d:ribosite>ribosite</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=rnastab.gif>
-    <TD><IMG SRC=proteasesite.gif>
-    <TD><IMG SRC=proteinstab.gif>
-    <TD><IMG SRC=rpromoter.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:rnastab>rnastab</A>
-    <TD><A NAME=d:proteasesite>proteasesite</A>
-    <TD><A NAME=d:proteinstab>proteinstab</A>
-    <TD><A NAME=d:rpromoter>rpromoter</A>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><IMG SRC=rarrow.gif>
-    <TD><IMG SRC=larrow.gif>
-    <TD><IMG SRC=lpromoter.gif>
-  </TR>
-  <TR ALIGN=CENTER>
-    <TD><A NAME=d:rarrow>rarrow</A>
-    <TD><A NAME=d:larrow>larrow</A>
-    <TD><A NAME=d:lpromoter>lpromoter</A>
-  </TR>
-
-</TABLE>
-As the figures suggest, the shapes <TT>rect</TT> and <TT>rectangle</TT> are synonyms for <TT>box</TT>, and <TT>none</TT> is a synonym for <TT>plaintext</TT>.
-The shape <TT>plain</TT> is similar to these two, except that it also enforces 
-<TT>width=0 height=0 margin=0</TT>, which guarantees that the actual size of the node is entirely determined by the label.
-This is useful, for example, when using <A HREF=shapes.html#html>HTML-like labels</A>.
-Also, unlike the rest, we have shown these three, as well as <TT>underline</TT>,
-without <TT>style=filled</TT>
-to indicate the normal use. If fill were turned on, the label text would
-appear in a filled rectangle.
-<P>
-The geometries of polygon-based shapes are also affected
-by the node attributes 
-<A HREF=attrs.html#d:regular><TT>regular</TT></A>, 
-<A HREF=attrs.html#d:peripheries><TT>peripheries</TT></A> and
-<A HREF=attrs.html#d:orientation><TT>orientation</TT></A>.
-If <TT>shape="polygon"</TT>, the attributes
-<A HREF=attrs.html#d:sides><TT>sides</TT></A>, 
-<A HREF=attrs.html#d:skew><TT>skew</TT></A> and
-<A HREF=attrs.html#d:distortion><TT>distortion</TT></A> are also used.
-If unset, they default to 4, 0.0 and 0.0, respectively.
-The point shape is special in that it is
-only affected by the <A HREF=attrs.html#d:peripheries><TT>peripheries</TT></A>, 
-<A HREF=attrs.html#d:width><TT>width</TT></A> and
-<A HREF=attrs.html#d:height><TT>height</TT></A> attributes.
-<P>
-Normally, the size of a node is determined by smallest width and height
-needed to contain its label and image, if any, with a margin specified by
-the <A HREF=attrs.html#d:margin><TT>margin</TT></A> attribute. The width
-and height must also be at least as large as the sizes specified by the
-<A HREF=attrs.html#d:width><TT>width</TT></A> and
-<A HREF=attrs.html#d:height><TT>height</TT></A> attributes, which specify
-the minimum values for these parameters. 
-See the <A HREF=attrs.html#d:fixedsize><TT>fixedsize</TT></A> attribute
-for ways of restricting the node size.
-In particular, if <tt>fixedsize=shape</tt>, the node's shape will be fixed
-by the <A HREF=attrs.html#d:width><TT>width</TT></A> and
-<A HREF=attrs.html#d:height><TT>height</TT></A> attributes, and the shape
-is used for edge termination, but both the shape and label sizes are used
-preventing node overlap. For example, the following graph
-<PRE>
-digraph G {
-  { 
-    node [margin=0 fontcolor=blue fontsize=32 width=0.5 shape=circle style=filled]
-    b [fillcolor=yellow fixedsize=true label="a very long label"]
-    d [fixedsize=shape label="an even longer label"]
-  }
-  a -&gt; {c d}
-  b -&gt; {c d}
-}
-</PRE>
-yields the figure<BR>
-<IMG SRC=fixed.gif>
-<P>
-Note that the label of the yellow node, with <tt>fixedsize=true</tt>, overlaps
-the other node, where there is sufficient space for the gray node with
-<tt>fixedsize=shape</tt>.
-<P>
-The shapes: <TT>note</TT>, <TT>tab</TT>, <TT>folder</TT>,
-<TT>box3d</TT> and <TT>component</TT> were provided by Pander.
-The synthetic biology shapes:
-<TT>promoter</TT>,
-<TT>cds</TT>,
-<TT>terminator</TT>,
-<TT>utr</TT>,
-<TT>primersite</TT>,
-<TT>restrictionsite</TT>,
-<TT>fivepoverhang</TT>,
-<TT>threepoverhang</TT>,
-<TT>noverhang</TT>,
-<TT>assembly</TT>,
-<TT>signature</TT>,
-<TT>insulator</TT>,
-<TT>ribosite</TT>,
-<TT>rnastab</TT>,
-<TT>proteasesite</TT>,
-<TT>proteinstab</TT>,
-<TT>rpromoter</TT>,
-<TT>rarrow</TT>,
-<TT>larrow</TT> and
-<TT>lpromoter</TT>
-were contributed by Jenny Cheng.
-
-<H2><A NAME=record>Record-based Nodes</A></H2>
-<B>NOTE:</B> Please see the note about record-based nodes at the
-<A HREF=#top>top</A> of this page. Also note that there are problems using 
-non-trivial edges (edges with ports or labels) between adjacent
-nodes on the same rank if one or both nodes has a record shape.
-<P>
-These are specified by shape values of "record" and "Mrecord".
-The structure of a record-based node is determined by 
-its <A HREF=attrs.html#d:label><TT>label</TT></A>,
-which has the following schema:
-  <TABLE>
-  <TR><TD ALIGN=right><I>rlabel</I><TD>=<TD><I>field</I> ( '|' <I>field</I> )*</TR>
-  <TR><TD ALIGN=right>where <I>field</I><TD>=<TD><I>fieldId</I> or '{' <I>rlabel</I> '}'</TR>
-  <TR><TD ALIGN=right>and <I>fieldId</I><TD>=<TD> [ '&lt;' <I>string</I> '&gt;'] [ <I>string</I> ]</TR>
-  </TABLE>
-Braces, vertical bars and angle brackets must be escaped with
-a backslash character if you wish them to appear as a literal character.
-Spaces are interpreted as separators between tokens,
-so they must be escaped if you want spaces in the text.
-<P>
-The first string in <I>fieldId</I> assigns a portname to the field and can 
-be combined with the node name to indicate where to attach an edge
-to the node. (See <A HREF=attrs.html#k:portPos>portPos</A>.)
-The second string is used as the text for the field; it supports the usual
-<A HREF=attrs.html#k:escString>escape sequences</A> &#92;n, &#92;l and &#92;r.
-<P>
-Visually, a record is a box, with fields represented by alternating
-rows of horizontal or vertical subboxes. The Mrecord shape is identical
-to a record shape, except that the outermost box has rounded corners.
-Flipping between horizontal and vertical layouts is done by nesting
-fields in braces "{...}". The top-level orientation in a record is
-horizontal. Thus, a record with label "A | B | C | D" will have 4 fields 
-oriented left to right, while "{A | B | C | D}" will have them 
-from top to bottom and "A | { B | C } | D" will have "B" over "C", with
-"A" to the left and "D" to the right of "B" and "C".
-<P> 
-The initial orientation of a record node depends on the
-<A HREF="attrs.html#d:rankdir">rankdir</A> attribute. If this attribute
-is <TT>TB</TT> (the default) or <TT>BT</TT>, corresponding to vertical
-layouts, the top-level fields in a record are displayed horizontally.
-If, however, this attribute is <TT>LR</TT> or <TT>RL</TT>, 
-corresponding to horizontal layouts, the top-level fields are 
-displayed vertically.
-<P>
-As an example of a record node, the dot input
-<PRE>
-digraph structs {
-    node [shape=record];
-    struct1 [label="&lt;f0&gt; left|&lt;f1&gt; mid&amp;#92; dle|&lt;f2&gt; right"];
-    struct2 [label="&lt;f0&gt; one|&lt;f1&gt; two"];
-    struct3 [label="hello&amp;#92;nworld |{ b |{c|&lt;here&gt; d|e}| f}| g | h"];
-    struct1:f1 -&gt; struct2:f0;
-    struct1:f2 -&gt; struct3:here;
-}
-</PRE>
-
-yields the figure<BR>
-<IMG SRC=record.gif>
-<P>
-If we add the line
-<PRE>
-    rankdir=LR
-</PRE>
-we get the layout<BR>
-<IMG SRC=record2.gif>
-<P>
-If we change node <TT>struct1</TT> to have shape <TT>Mrecord</TT>,
-it then looks like:<BR>
-<IMG SRC=mrecord.gif>
-
-<H2><A NAME="d:style">Styles for Nodes</A></H2>
-The <A HREF=attrs.html#d:style><TT>style</TT></A>
-attribute can be used to modify the appearance of a node.
-At present, there are 8 style values recognized:
-<TT>filled</TT>, <TT>invisible</TT>, <TT>diagonals</TT>, <TT>rounded</TT>.
-<TT>dashed</TT>, <TT>dotted</TT>, <TT>solid</TT> and <TT>bold</TT>.
-As usual, the value of the <A HREF=attrs.html#d:style><TT>style</TT></A>
-attribute can be a comma-separated list of any of these. If the
-style contains conflicts (e.g, <TT>style="dotted, solid"</TT>), the last
-attribute wins.
-<DL>
-<DT><A NAME=d:filled></A><TT>filled</TT>
-  <DD>This value indicates that the node's interior should be filled.
-The color used is the node's <TT>fillcolor</TT> or, if that's not defined, its
-<TT>color</TT>. For unfilled nodes, the interior of the node is transparent to
-whatever color is the current graph or cluster background color.
-Note that <TT>point</TT> shapes are always filled.
-<P>
-Thus, the code
-<PRE>
-digraph G {
-  rankdir=LR
-  node [shape=box, color=blue]
-  node1 [style=filled] 
-  node2 [style=filled, fillcolor=red] 
-  node0 -&gt; node1 -&gt; node2
-}
-</PRE>
-yields the figure<BR>
-<IMG SRC=fill.gif>
-
-<DT><A NAME=d:invisible></A><TT>invisible</TT>
-  <DD>Setting this style causes the node not to be displayed at all.
-Note that the node is still used in laying out the graph.
-
-<DT><A NAME=d:diagonals></A><TT>diagonals</TT>
-  <DD>The diagonals style causes small chords to be drawn near the vertices
-of the node's polygon or, in case of circles and ellipses, two chords near
-the top and the bottom of the shape. The special node shapes
-<A HREF=#d:Msquare><TT>Msquare</TT></A>,
-<A HREF=#d:Mcircle><TT>Mcircle</TT></A>, and
-<A HREF=#d:Mdiamond><TT>Mdiamond</TT></A>
-are simply an ordinary square, circle and
-diamond with the diagonals style set.
-
-<DT><A NAME=d:rounded></A><TT>rounded</TT>
-  <DD>The rounded style causes the polygonal corners to be smoothed.
-Note that this style also applies to record-based nodes. Indeed,
-the <TT>Mrecord</TT> shape is simply shorthand for setting this style.
-Also, prior to 26 April 2005, the rounded and filled styles were 
-mutually exclusive.
-<P>
-As an example of rounding, dot uses the graph
-<PRE>
-digraph R {
-  rankdir=LR
-  node [style=rounded]
-  node1 [shape=box]
-  node2 [fillcolor=yellow, style="rounded,filled", shape=diamond]
-  node3 [shape=record, label="{ a | b | c }"]
-
-  node1 -&gt; node2 -&gt; node3
-}
-</PRE>
-to produce the figure<BR>
-<IMG SRC=round.gif>
-<DT><A NAME=d:dashed></A><TT>dashed</TT>
-  <DD>This style causes the node's border to be drawn as a dashed line.
-<DT><A NAME=d:dotted></A><TT>dotted</TT>
-  <DD>This style causes the node's border to be drawn as a dotted line.
-<DT><A NAME=d:solid></A><TT>solid</TT>
-  <DD>This style causes the node's border to be drawn as a solid line,
-which is the default.
-<DT><A NAME=d:bold></A><TT>bold</TT>
-  <DD>This style causes the node's border to be drawn as a bold line.
-See also <A HREF=attrs.html#d:penwidth>penwidth</A>.
-
-</DL>
-
-<P>
-Additional styles may be available with a specific code generator.
-<H2><A NAME=html>HTML-Like Labels</A></H2>
-
-<B>NOTE:</B><EM>This feature is only available on versions of Graphviz
-that are newer than mid-November 2003. In particular, it is not part
-of release 1.10.</EM>
-<P>
-<B>NOTE:</B><EM>The font markups for bold, italic, underlining, subscript and 
-superscript </EM>(<TT>&lt;B&gt;</TT>, <TT>&lt;I&gt;</TT>, <TT>&lt;U&gt;</TT>, <TT>&lt;SUB&gt;</TT> and <TT>&lt;SUP&gt;</TT>) 
-<EM>are only available in versions after 14 October 2011, and 
-the markup for strike-through (<TT>&lt;S&gt;</TT>) requires versions later than 15 September 2013.
-In addition, all of these markups are
-currently only available via the cairo and svg renderers.
-The horizontal and vertical rules </EM>(<TT>&lt;HR&gt;</TT> and <TT>&lt;VR&gt;</TT>)
-<EM>are only available in versions later than 8 July 2011.  </EM>
-<P>
-<B>NOTE:</B><EM>For releases later than 9 September 2014, one can use </EM><TT>shape=plain</TT> <EM>so that the size
-of the node is totally determined by the label. Otherwise, the node's margin, width and height values may cause the
-node to be larger, so that edges are clipped away from the label. In effect, </EM><TT>shape=plain</TT> <EM>is shorthand
-for </EM> <TT>shape=none width=0 height=0 margin=0</TT>.
-<P>
-If the value of a label attribute
-(<A HREF=attrs.html#d:label><TT>label</TT></A> for nodes, edges, clusters, and
-graphs, and the
-<A HREF=attrs.html#d:headlabel><TT>headlabel</TT></A> and
-<A HREF=attrs.html#d:taillabel><TT>taillabel</TT></A>
-attributes of an edge) is given as an
-<A HREF=lang.html#html>HTML string</A>, 
-that is, delimited by <TT>&lt;...&gt;</TT>
-rather than <TT>&quot;...&quot;</TT>,
-the label is interpreted as
-an HTML description. At their simplest, such labels
-can describe multiple lines of variously aligned text as provided by ordinary 
-<A HREF=attrs.html#k:escString>string labels</A>. More generally, the
-label can specify a table similar to those provided by HTML,
-with different graphical attributes at each level.
-<P>
-As <A HREF=lang.html#html>HTML strings</A> are processed like HTML input, any use of
-the &quot;, &amp;, &lt;, and &gt; characters in literal text or in attribute values
-need to be replaced by the corresponding escape sequence. For example, if you want to
-use  &amp; in an <TT>href</TT> value, this should be represented as  &amp;amp;.
-<P>
-<B>NOTE:</B> The features and syntax supported by these labels are
-modeled on HTML. However, there are many aspects that are relevant
-to Graphviz labels that are not in HTML and, conversely, HTML allows
-various constructs which are meaningless in Graphviz. We will generally
-refer to these labels as "HTML labels" rather than the cumbersome
-"HTML-like labels" but the reader is warned that these are not really
-HTML. The grammar below describes precisely what Graphviz will accept.
-<P>
-Although HTML labels are not, strictly speaking, a shape, they can be
-viewed as a generalization of the record shapes described above. 
-In particular, if a node has set its 
-<A HREF=attrs.html#k:shape><TT>shape</TT></A>
-attribute to <TT>none</TT> or <TT>plaintext</TT>, the HTML label will be the node's
-shape. On the other hand, if the node has any other shape (except 
-<TT>point</TT>), the HTML label will be embedded within the node the
-same way an ordinary label would be. Adding HTML labels to record-based shapes (record and Mrecord) is discouraged and may lead to unexpected behavior because of their conflicting label schemas and overlapping functionality.
-<P>
-The following is an abstract grammar for HTML labels.
-Terminals, corresponding to elements, are shown in bold font,
-and nonterminals in italics.
-Square brackets [ and ] enclose optional items.
-Vertical bars | separate alternatives.
-Note that, as in HTML, element and attribute names are case-insensitive.
-(cf. sections 3.2.1 and 3.2.2 of the 
-<A HREF="http://www.w3.org/TR/html401">HTML 4.01 specification</A>).
-<TABLE>
-<TR>
-  <TD ALIGN=RIGHT><I>label</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>text</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>fonttable</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>text</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>textitem</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>text</I> <I>textitem</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>textitem</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>string</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;BR/&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;FONT&gt;</B> <I>text</I> <B>&lt;/FONT&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;I&gt;</B> <I>text</I> <B>&lt;/I&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;B&gt;</B> <I>text</I> <B>&lt;/B&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;U&gt;</B> <I>text</I> <B>&lt;/U&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;O&gt;</B> <I>text</I> <B>&lt;/O&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;SUB&gt;</B> <I>text</I> <B>&lt;/SUB&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;SUP&gt;</B> <I>text</I> <B>&lt;/SUP&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;S&gt;</B> <I>text</I> <B>&lt;/S&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>fonttable</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>table</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;FONT&gt;</B> <I>table</I> <B>&lt;/FONT&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;I&gt;</B> <I>table</I> <B>&lt;/I&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;B&gt;</B> <I>table</I> <B>&lt;/B&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;U&gt;</B> <I>table</I> <B>&lt;/U&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;O&gt;</B> <I>table</I> <B>&lt;/O&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>table</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>&lt;TABLE&gt;</B> <I>rows</I> <B>&lt;/TABLE&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>rows</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>row</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>rows</I> <I>row</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>rows</I> <B>&lt;HR/&gt;</B> <I>row</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>row</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>&lt;TR&gt;</B> <I>cells</I> <B>&lt;/TR&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>cells</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><I>cell</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>cells</I> <I>cell</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><I>cells</I> <B>&lt;VR/&gt;</B> <I>cell</I></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT><I>cell</I></TD>
-  <TD ALIGN=LEFT>:</TD>
-  <TD ALIGN=LEFT><B>&lt;TD&gt;</B> <I>label</I> <B>&lt;/TD&gt;</B></TD>
-</TR>
-<TR>
-  <TD ALIGN=RIGHT></TD>
-  <TD ALIGN=LEFT>|</TD>
-  <TD ALIGN=LEFT><B>&lt;TD&gt;</B> <B>&lt;IMG/&gt;</B> <B>&lt;/TD&gt;</B></TD>
-</TR>
-</TABLE>
-<P>
-All non-printing characters such as tabs or newlines are ignored.
-Above, a <I>string</I> is any collection of printable characters, including
-spaces. For tables, outside of the body of a &lt;TD&gt; element, 
-whitespace characters are ignored, including spaces; within a &lt;TD&gt; element, spaces
-are preserved but all other white space characters are discarded.
-<B>N.B.</B> For technical reasons, if a table is wrapped in a font element such as  &lt;FONT&gt;
-or  &lt;B&gt;, any space immediately before or after this will cause a syntax error. For example,
-the label
-<PRE>
-&lt; &lt;U&gt;&lt;TABLE&gt;&lt;TR&gt;&lt;TD&gt;a&lt;/TD&gt;&lt;/TR&gt;&lt;/U&gt;&gt;
-</PRE>
-is not legal. Removing either the space or the &lt;U&gt;...&lt;/U&gt; will fix this.
-<P>
-HTML comments are allowed within an HTML string. They can occur anywhere
-provided that, if they contain part of an HTML element, they must contain
-the entire element.
-<P>
-As is obvious from the above description, the interpretation of white space
-characters is one place where HTML-like labels is very different from 
-standard HTML. In HTML, any sequence of white space characters is 
-collapsed to a single space, If the user does not want this to happen, the
-input must use non-breaking spaces "&amp;nbsp;". This makes sense in
-HTML, where text layout depends dynamically on the space available. In
-Graphviz, the layout is statically determined by the input, so it is
-reasonable to treat ordinary space characters as non-breaking. In addition,
-ignoring tabs and newlines allows the input text to be formatted for
-easier reading. 
-<P>
-Each of the HTML elements has a set of optional attributes.
-Attribute values must appear in double quotes.
-<P>
-  &lt;!-- Table element --&gt;
-<PRE>
-&lt;TABLE
-  ALIGN="CENTER|LEFT|RIGHT"
-  BGCOLOR="<I>color</I>"
-  BORDER="<I>value</I>"
-  CELLBORDER="<I>value</I>"
-  CELLPADDING="<I>value</I>"
-  CELLSPACING="<I>value</I>"
-  COLOR="<I>color</I>"
-  COLUMNS="<I>value</I>"
-  FIXEDSIZE="FALSE|TRUE"
-  GRADIENTANGLE="<I>value</I>"
-  HEIGHT="<I>value</I>"
-  HREF="<I>value</I>"
-  ID="<I>value</I>"
-  PORT="<I>portName</I>"
-  ROWS="<I>value</I>"
-  SIDES="<I>value</I>"
-  STYLE="<I>value</I>"
-  TARGET="<I>value</I>"
-  TITLE="<I>value</I>"
-  TOOLTIP="<I>value</I>"
-  VALIGN="MIDDLE|BOTTOM|TOP"
-  WIDTH="<I>value</I>"
-&gt;
-</PRE>
-<P>
-  &lt;!-- Table row --&gt;
-<PRE>&lt;TR
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Table cell --&gt;
-<PRE>&lt;TD
-  ALIGN="CENTER|LEFT|RIGHT|TEXT"
-  BALIGN="CENTER|LEFT|RIGHT"
-  BGCOLOR="<I>color</I>"
-  BORDER="<I>value</I>"
-  CELLPADDING="<I>value</I>"
-  CELLSPACING="<I>value</I>"
-  COLOR="<I>color</I>"
-  COLSPAN="<I>value</I>"
-  FIXEDSIZE="FALSE|TRUE"
-  GRADIENTANGLE="<I>value</I>"
-  HEIGHT="<I>value</I>"
-  HREF="<I>value</I>"
-  ID="<I>value</I>"
-  PORT="<I>portName</I>"
-  ROWSPAN="<I>value</I>"
-  SIDES="<I>value</I>"
-  STYLE="<I>value</I>"
-  TARGET="<I>value</I>"
-  TITLE="<I>value</I>"
-  TOOLTIP="<I>value</I>"
-  VALIGN="MIDDLE|BOTTOM|TOP"
-  WIDTH="<I>value</I>"
-&gt;
-</PRE>
-
-<P>
-  &lt;!-- Font specification --&gt;
-<PRE>&lt;FONT
-  COLOR="<I>color</I>"
-  FACE="<I>fontname</I>"
-  POINT-SIZE="<I>value</I>"
-&gt;
-</PRE>
-
-<P>
-  &lt;!-- Line break --&gt;
-<PRE>&lt;BR
-  ALIGN="CENTER|LEFT|RIGHT"
-/&gt;
-</PRE>
-
-<P>
-  &lt;!-- Image inclusion --&gt;
-<PRE>&lt;IMG
-  SCALE="FALSE|TRUE|WIDTH|HEIGHT|BOTH"
-  SRC="<I>value</I>"
-/&gt;
-</PRE>
-<P>
-  &lt;!-- Italic style --&gt;
-<PRE>&lt;I
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Bold style --&gt;
-<PRE>&lt;B
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Underline text --&gt;
-<PRE>&lt;U
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Overline text --&gt;
-<PRE>&lt;O
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Subscript text --&gt;
-<PRE>&lt;SUB
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Superscript text --&gt;
-<PRE>&lt;SUP
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Strike-through text --&gt;
-<PRE>&lt;S
-  &lt;!-- No attributes --&gt;
-&gt;
-</PRE>
-<P>
-  &lt;!-- Horizontal rule --&gt;
-<PRE>&lt;HR
-  &lt;!-- No attributes --&gt;
-/&gt;
-</PRE>
-<P>
-  &lt;!-- Vertical rule --&gt;
-<PRE>&lt;VR
-  &lt;!-- No attributes --&gt;
-/&gt;
-</PRE>
-
-<P>
-<B><I><FONT SIZE=-1>ALIGN</FONT> </I></B>
-<BLOCKQUOTE>
-specifies horizontal placement. When an object is allocated
-more space than required, this value determines where the extra space
-is placed left and right of the object.
-<P>
-<ul>
-<LI>CENTER aligns the object in the center. (Default) </LI>
-<LI>LEFT aligns the object on the left.</LI>
-<LI>RIGHT aligns the object on the right.  </LI>
-<LI>(<CODE>&lt;TD&gt;</CODE> only) TEXT aligns lines of text using the full
-cell width. The alignment of a line is determined by its (possibly
-implicit) associated <CODE>&lt;BR&gt;</CODE> element.</LI> 
-</ul>
-<P>
-The contents of a cell are normally aligned as a block. In particular,
-lines of text are first aligned as a text block based on the width of
-the widest line and the corresponding <CODE>&lt;BR&gt;</CODE> elements. Then,
-the entire text block is aligned within a cell. If, however, the
-cell's <B><I>ALIGN</I></B> value is <CODE>"TEXT"</CODE>, and the cell contains
-lines of text, then the lines are justified using the entire available
-width of the cell. If the cell does not contain text, then the contained
-image or table is centered.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>BALIGN</FONT> </I></B>
-<BLOCKQUOTE>
-specifies the default alignment of <CODE>&lt;BR&gt;</CODE> elements contained
-in the cell. That is, if a <CODE>&lt;BR&gt;</CODE> element has no
-explicit <B><I>ALIGN</I></B> attribute, the attribute value is specified
-by the value of <B><I>BALIGN</I></B>.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>BGCOLOR="color"</FONT></I></B>
-<BLOCKQUOTE>
-sets the color of the background. This color can be 
-overridden by a <B><I>BGCOLOR</I></B> attribute in descendents.
-The value can be a single color or two colors separated by a colon, the
-latter indicating a gradient fill.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>BORDER="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the width of the border around the object in points.
-A value of zero indicates no border. The default is 1.
-The maximum value is 255.
-If set in a table, and <B><I>CELLBORDER</I></B> is not set,
-this value is also used for all cells in the table.
-It can be overridden by a <B><I>BORDER</I></B> tag in  a cell.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>CELLBORDER="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the width of the border for all cells in a table.
-It can be overridden by a <B><I>BORDER</I></B> tag in  a cell.
-The maximum value is 255.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>CELLPADDING="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the space, in points, between a cell's border and its content.
-The default is 2.
-The maximum value is 255.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>CELLSPACING="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the space, in points, between cells in a table and between
-a cell and the table's border.  The default is 2.
-The maximum value is 127.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>COLOR="color"</FONT></I></B>
-<BLOCKQUOTE>
-sets the color of the font within the scope of
-&lt;FONT&gt;...&lt;/FONT&gt;, or the border color
-of the table or cell within the scope of
-&lt;TABLE&gt;...&lt;/TABLE&gt;,
-or &lt;TD&gt;...&lt;/TD&gt;.
-This color can be 
-overridden by a <B><I>COLOR</I></B> attribute in descendents.
-By default, the font color is determined by the
-<A HREF="attrs.html#d:fontcolor">fontcolor</A> attribute of
-the corresponding node, edge or graph, and the border color
-is determined by the
-<A HREF="attrs.html#d:color">color</A> attribute of
-the corresponding node, edge or graph.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>COLSPAN="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the number of columns spanned by the cell. The default is 1.
-The maximum value is 65535.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>COLUMNS="value"</FONT></I></B>
-<BLOCKQUOTE>
-provides general formatting information concerning the columns.
-At present, the only legal value is "*", which causes a vertical rule to
-appear between every cell in every row.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>FACE="fontname"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the font to use within the scope of
-&lt;FONT&gt;...&lt;/FONT&gt;.
-This can be 
-overridden by a <B><I>FACE</I></B> attribute in descendents.
-By default, the font name is determined by the
-<A HREF="attrs.html#d:fontname">fontname</A> attribute of the corresponding
-node, edge or graph.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>FIXEDSIZE</FONT> </I></B>
-<BLOCKQUOTE>
-specifies whether the values given by the <B><I>WIDTH</I></B> 
-and <B><I>HEIGHT</I></B> attributes are enforced.
-<P>
-<ul>
-<LI>FALSE allows the object to grow so that all its contents will fit. (Default) </LI>
-<LI>TRUE fixes the object size to its given <B><I>WIDTH</I></B> 
-and <B><I>HEIGHT</I></B>.
-Both of these attributes must be supplied.</LI>
-</ul>
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>GRADIENTANGLE="value"</FONT></I></B>
-<BLOCKQUOTE>
-gives the angle used in a gradient fill if the 
-<B><I>BGCOLOR</I></B> is a color list. For the default linear gradient,
-this specifies 
-the angle of a line through the center along which the colors transform.
-Thus, an angle of 0 will cause a left-to-right progression.
-For radial gradients (see <B><I>STYLE</I></B>), the angle specifies the position
-of the center of the coloring. An angle of 0 places the center at the center of the
-table or cell; an non-zero angle places the fill center along that angle near the
-boundary.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>HEIGHT="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the mininum height, in points, of the object. The height
-includes the contents, any spacing and the border. Unless
-<B><I>FIXEDSIZE</I></B> is true, the height will be expanded to allow
-the contents to fit.
-The maximum value is 65535.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>HREF="value"</FONT></I></B>
-<BLOCKQUOTE>
-attaches a URL to the object.
-Note that the <TT>"value"</TT> is treated as an
-<A HREF=attrs.html#k:escString>escString</A> similarly to the
-<A HREF=attrs.html#d:URL>URL</A> attribute.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>ID="value"</FONT></I></B>
-<BLOCKQUOTE>
-allows the user to specify a unique ID for a table or cell. See
-the <A HREF=attrs.html#d:id>id</A> attribute for more information.
-Note that the <TT>"value"</TT> is treated as an
-<A HREF=attrs.html#k:escString>escString</A> similarly to the
-<A HREF=attrs.html#d:id>id</A> attribute.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>POINT-SIZE="value"</FONT></I></B>
-<BLOCKQUOTE>
-sets the size of the font, in points, used within the scope of
-&lt;FONT&gt;...&lt;/FONT&gt;.
-This can be 
-overridden by a <B><I>POINT-SIZE</I></B> attribute in descendents.
-By default, the font size is determined by the
-<A HREF="attrs.html#d:fontsize">fontsize</A> attribute of the corresponding
-node, edge or graph.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>PORT="value"</FONT></I></B>
-<BLOCKQUOTE>
-attaches a portname to the object.
-(See <A HREF=attrs.html#k:portPos>portPos</A>.)
-This can be used to modify the head
-or tail of an edge, so that the end attaches directly to the object.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>ROWS="value"</FONT></I></B>
-<BLOCKQUOTE>
-provides general formatting information concerning the rows.
-At present, the only legal value is "*", which causes a horizontal rule to
-appear between every row.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>ROWSPAN="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the number of rows spanned by the cell. The default is 1.
-The maximum value is 65535.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>SCALE</FONT></I></B>
-<BLOCKQUOTE>
-specifies how an image will use any extra space available in its cell.
-Allowed values are
-<ul>
-<LI>FALSE : keep image its natural size. (Default) </LI>
-<LI>TRUE : scale image uniformly to fit.</LI>
-<LI>WIDTH : expand image width to fill  </LI>
-<LI>HEIGHT : expand image height to fill  </LI>
-<LI>BOTH : expand both image width height to fill  </LI>
-</ul>
-If this attribute is undefined, 
-the image inherits the <A HREF="attrs.html#d:imagescale">imagescale</A> 
-attribute of the graph object being drawn.
-As with the <A HREF="attrs.html#d:imagescale">imagescale</A>
-attribute, if the cell has a fixed size and the image is too large,
-any offending dimension will be shrunk to fit the space, the
-scaling being uniform in width and height if <I>SCALE=<TT>"true"</TT></I>.
-Note that the containing cell's <B><I>ALIGN</I></B> 
-and <B><I>VALIGN</I></B> attributes override
-an image's <B><I>SCALE</I></B> attribute.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>SIDES="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies which sides of a border in a cell or table should be drawn, if
-a border is drawn. By default, all sides are drawn. The <TT>"value"</TT>
-string can contain any collection of the (case-insensitive) 
-characters <TT>'L'</TT>, <TT>'T'</TT>, <TT>'R'</TT>, or <TT>'B'</TT>,
-corresponding to the left, top, right and, bottom sides of the border,
-respectively. For example, <TT>SIDES="LB"</TT> would indicate only the
-left and bottom segments of the  border should be drawn.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>SRC="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the image file to be displayed in the cell.
-Note that if the software is used as a web server, file system access
-to images is more restricted. See <A HREF="command.html#d:GV_FILE_PATH">GV_FILE_PATH</A>
-and <A HREF="command.html#d:SERVER_NAME">SERVER_NAME</A>.
-</BLOCKQUOTE>
-
-<P>
-<B><I><FONT SIZE=-1>STYLE</FONT> </I></B>
-<BLOCKQUOTE>
-specifies style characteristics of the table or cell. Style characteristics are
-given as a comma or space separated list of style attributes. At present, the only
-legal attributes are "ROUNDED" and "RADIAL" for tables, and "RADIAL" for cells.
-If "ROUNDED" is specified, the table will have rounded corners.
-This probably works best if the outmost cells have no borders, or their CELLSPACING
-is sufficiently large.
-If it is desirable to have borders around the cells, use <I><B>HR</B></I>
-and <I><B>VR</B></I> elements, or the <I><B>COLUMNS</B></I> and <I><B>ROWS</B></I> attributes of <I><B>TABLE</B></I>.
-<P>
-The "RADIAL" attribute indicates a radial gradient fill. See the <B><I>BGCOLOR</I></B> and
-<B><I>GRADIENTANGLE</I></B> attributes.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>TARGET="value"</FONT></I></B>
-<BLOCKQUOTE>
-determines which window of the browser is used for the URL if the object 
-has one. 
-See <A HREF="http://www.w3.org/TR/html401/present/frames.html#adef-target">W3C documentation</A>.
-Note that the <TT>"value"</TT> is treated as an
-<A HREF=attrs.html#k:escString>escString</A> similarly to the
-<A HREF=attrs.html#d:target>target</A> attribute.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>TITLE="value"</FONT></I></B>
-<BLOCKQUOTE>
-sets the tooltip annotation attached to the element. 
-This is used only if the element has a HREF attribute.
-Note that the <TT>"value"</TT> is treated as an
-<A HREF=attrs.html#k:escString>escString</A> similarly to the
-<A HREF=attrs.html#d:tooltip>tooltip</A> attribute.
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>TOOLTIP="value"</FONT></I></B>
-<BLOCKQUOTE>
-is an alias for <B><I><FONT SIZE=-1>TITLE</FONT></I></B>.
-</BLOCKQUOTE>
-
-<P>
-<B><I><FONT SIZE=-1>VALIGN</FONT> </I></B>
-<BLOCKQUOTE>
-specifies vertical placement. When an object is allocated
-more space than required, this value determines where the extra space
-is placed above and below the object.
-<P>
-<ul>
-<LI>MIDDLE aligns the object in the center. (Default) </LI>
-<LI>BOTTOM aligns the object on the bottom.</LI>
-<LI>TOP aligns the object on the top.  </LI>
-</ul>
-</BLOCKQUOTE>
-
-<B><I><FONT SIZE=-1>WIDTH="value"</FONT></I></B>
-<BLOCKQUOTE>
-specifies the mininum width, in points, of the object. The width
-includes the contents, any spacing and the border. Unless
-<B><I>FIXEDSIZE</I></B> is true, the width will be expanded to allow
-the contents to fit.
-The maximum value is 65535.
-</BLOCKQUOTE>
-
-<P>
-There is some inheritance among the attributes. If a table specifies
-a <I><B>CELLPADDING</B></I>, <I><B>CELLBORDER</B></I> or <I><B>BORDER</B></I> 
-value, this value is used by the table's
-cells unless overridden. If a cell or table specifies a <I><B>BGCOLOR</B></I>,
-this will be the background color for all of its descendents.
-Of course, if a background or fill color is specified for the
-graph object owning the label, this will be the original
-background for the label.
-The object's fontname, fontcolor and fontsize attributes
-are the default for drawing text. These can be overridden by using
-<I><B>FONT</B></I> to set new values. The new font values will hold
-until overridden by an enclosed <I><B>FONT</B></I> element.
-Finally, the pencolor or color of the graph object will be used as
-the border color.
-<P>
-If you want horizontal or vertical rules used uniformly within a table, consider
-using the <I><B>COLUMNS</B></I> or <I><B>ROWS</B></I> attributes 
-rather than using many
-<I><B>HR</B></I> and <I><B>VR</B></I> elements.
-<P>
-Because of certain limitations in handling tables in a device-independent
-manner, when <I><B>BORDER</B></I> is 1 and both table and cell borders
-are on and <I><B>CELLSPACING</B></I> is less than 2, anomalies can arise
-in the output, such as gaps between sides of borders which should be
-abutting or even collinear. The user can usual get around this by increasing
-the border size or the spacing, or turning off the table border.
-<P>
-As an example of HTML labels, the dot input 
-<PRE>
-digraph structs {
-    node [shape=plaintext]
-    struct1 [label=&lt;
-&lt;TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"&gt;
-  &lt;TR&gt;&lt;TD&gt;left&lt;/TD&gt;&lt;TD PORT="f1"&gt;mid dle&lt;/TD&gt;&lt;TD PORT="f2"&gt;right&lt;/TD&gt;&lt;/TR&gt;
-&lt;/TABLE&gt;&gt;];
-    struct2 [label=&lt;
-&lt;TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0"&gt;
-  &lt;TR&gt;&lt;TD PORT="f0"&gt;one&lt;/TD&gt;&lt;TD&gt;two&lt;/TD&gt;&lt;/TR&gt;
-&lt;/TABLE&gt;&gt;];
-    struct3 [label=&lt;
-&lt;TABLE BORDER="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4"&gt;
-  &lt;TR&gt;
-    &lt;TD ROWSPAN="3"&gt;hello&lt;BR/&gt;world&lt;/TD&gt;
-    &lt;TD COLSPAN="3"&gt;b&lt;/TD&gt;
-    &lt;TD ROWSPAN="3"&gt;g&lt;/TD&gt;
-    &lt;TD ROWSPAN="3"&gt;h&lt;/TD&gt;
-  &lt;/TR&gt;
-  &lt;TR&gt;
-    &lt;TD&gt;c&lt;/TD&gt;&lt;TD PORT="here"&gt;d&lt;/TD&gt;&lt;TD&gt;e&lt;/TD&gt;
-  &lt;/TR&gt;
-  &lt;TR&gt;
-    &lt;TD COLSPAN="3"&gt;f&lt;/TD&gt;
-  &lt;/TR&gt;
-&lt;/TABLE&gt;&gt;];
-    struct1:f1 -&gt; struct2:f0;
-    struct1:f2 -&gt; struct3:here;
-}
-</PRE>
-produces the HTML analogue of the record example above<BR>
-<IMG SRC=html1.gif>
-<P>
-As usual, an HTML specification is more verbose. On the other hand,
-HTML labels are much more general, as the following example shows:
-<P>
-<IMG SRC=html2.gif>
-<P>
-The source for this graph can be found <A HREF=html2.gv>here</A>.
-<P>
-Here is an example using &lt;FONT&gt; elements 
-<P>
-<IMG SRC=html3.gif>
-<P>
-with the <A HREF=html3.gv>input graph</A>.
-<P>
-Here is an example using an &lt;IMG&gt; element 
-<P>
-<IMG SRC=html4.gif>
-<P>
-with the <A HREF=html4.gv>input graph</A>.
-<P>
-The <tt>sides</tt> attribute (version 2.37 and later) allows one to combine cells to form 
-various non-convex shapes. For example, a <tt>tee-shaped</tt> node
-<P>
-<IMG SRC=tee.gif>
-<P>
-can be produced using
-<PRE>
-  tee [shape=none margin=0 label=
-    &lt;&lt;table border="0" cellspacing="0" cellborder="1"&gt;
-     &lt;tr&gt;
-      &lt;td width="9" height="9" fixedsize="true" style="invis"&gt;&lt;/td&gt;
-      &lt;td width="9" height="9" fixedsize="true" sides="ltr"&gt;&lt;/td&gt;
-      &lt;td width="9" height="9" fixedsize="true" style="invis"&gt;&lt;/td&gt;
-     &lt;/tr&gt;
-     &lt;tr&gt;
-      &lt;td width="9" height="9" fixedsize="true" sides="tlb"&gt;&lt;/td&gt;
-      &lt;td width="9" height="9" fixedsize="true" sides="b"&gt;&lt;/td&gt;
-      &lt;td width="9" height="9" fixedsize="true" sides="brt"&gt;&lt;/td&gt;
-     &lt;/tr&gt;
-    &lt;/table&gt;&gt;]
-</PRE>
-<H2><A NAME=epsf>User-defined Nodes</A></H2>
-
-There is a third type of node shape which is specified by the user.
-Typically, these shapes rely on the details of a concrete graphics
-format. At present, shapes can be described using PostScript, via a
-file or add-on library, for use in PostScript output, or shapes can
-be specified by a bitmap-image file for use with SVG or bitmap (jpeg,
-gif, etc.) output. More information can be found on the page 
-<A HREF="../../../faq/#FaqCustShape">
-How to create custom shapes</A>.
-
-<H2><A NAME=sdlshapes>SDL Shapes for PostScript</A></H2>
-One example of user-defined node shapes is provided by Mark Rison of CSR.
-These are the <A  HREF=http://www.sdl-forum.org/SDL/index.htm>SDL</A> shapes.
-These are available as PostScript functions whose use is described in
-<A HREF="../../../faq/#ext_ps_proc"> External PostScript procedures</A>.
-The necessary PostScript library file and sample use can be found in the
-<tt>contrib/sdlshapes</tt> directory in the release. Please note the
-COPYRIGHT AND PERMISSION NOTICE contained in the library file <tt>sdl.ps</tt>.
-<P>
-The table below
-gives the shape names and the corresponding node shapes.
-<P>
-<CENTER>
-<IMG SRC=sdlshapes.png>
-</CENTER>
-</BODY>
-</HTML>
+<meta http-equiv="refresh" content="2;url=https://graphviz.org/doc/info/shapes.html" />
+Moved to <a href="https://graphviz.org/doc/info/shapes.html">https://graphviz.org/doc/info/shapes.html</a>. Redirecting...