Skip to content

Instantly share code, notes, and snippets.

@iwatobipen
Created June 7, 2020 07:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwatobipen/07a668e972ecd772e47705804b68bc94 to your computer and use it in GitHub Desktop.
Save iwatobipen/07a668e972ecd772e47705804b68bc94 to your computer and use it in GitHub Desktop.
bokeh and rdkit
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
" <div class=\"bk-root\">\n",
" <a href=\"https://bokeh.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n",
" <span id=\"1001\">Loading BokehJS ...</span>\n",
" </div>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"\n",
"(function(root) {\n",
" function now() {\n",
" return new Date();\n",
" }\n",
"\n",
" var force = true;\n",
"\n",
" if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n",
" root._bokeh_onload_callbacks = [];\n",
" root._bokeh_is_loading = undefined;\n",
" }\n",
"\n",
" var JS_MIME_TYPE = 'application/javascript';\n",
" var HTML_MIME_TYPE = 'text/html';\n",
" var EXEC_MIME_TYPE = 'application/vnd.bokehjs_exec.v0+json';\n",
" var CLASS_NAME = 'output_bokeh rendered_html';\n",
"\n",
" /**\n",
" * Render data to the DOM node\n",
" */\n",
" function render(props, node) {\n",
" var script = document.createElement(\"script\");\n",
" node.appendChild(script);\n",
" }\n",
"\n",
" /**\n",
" * Handle when an output is cleared or removed\n",
" */\n",
" function handleClearOutput(event, handle) {\n",
" var cell = handle.cell;\n",
"\n",
" var id = cell.output_area._bokeh_element_id;\n",
" var server_id = cell.output_area._bokeh_server_id;\n",
" // Clean up Bokeh references\n",
" if (id != null && id in Bokeh.index) {\n",
" Bokeh.index[id].model.document.clear();\n",
" delete Bokeh.index[id];\n",
" }\n",
"\n",
" if (server_id !== undefined) {\n",
" // Clean up Bokeh references\n",
" var cmd = \"from bokeh.io.state import curstate; print(curstate().uuid_to_server['\" + server_id + \"'].get_sessions()[0].document.roots[0]._id)\";\n",
" cell.notebook.kernel.execute(cmd, {\n",
" iopub: {\n",
" output: function(msg) {\n",
" var id = msg.content.text.trim();\n",
" if (id in Bokeh.index) {\n",
" Bokeh.index[id].model.document.clear();\n",
" delete Bokeh.index[id];\n",
" }\n",
" }\n",
" }\n",
" });\n",
" // Destroy server and session\n",
" var cmd = \"import bokeh.io.notebook as ion; ion.destroy_server('\" + server_id + \"')\";\n",
" cell.notebook.kernel.execute(cmd);\n",
" }\n",
" }\n",
"\n",
" /**\n",
" * Handle when a new output is added\n",
" */\n",
" function handleAddOutput(event, handle) {\n",
" var output_area = handle.output_area;\n",
" var output = handle.output;\n",
"\n",
" // limit handleAddOutput to display_data with EXEC_MIME_TYPE content only\n",
" if ((output.output_type != \"display_data\") || (!output.data.hasOwnProperty(EXEC_MIME_TYPE))) {\n",
" return\n",
" }\n",
"\n",
" var toinsert = output_area.element.find(\".\" + CLASS_NAME.split(' ')[0]);\n",
"\n",
" if (output.metadata[EXEC_MIME_TYPE][\"id\"] !== undefined) {\n",
" toinsert[toinsert.length - 1].firstChild.textContent = output.data[JS_MIME_TYPE];\n",
" // store reference to embed id on output_area\n",
" output_area._bokeh_element_id = output.metadata[EXEC_MIME_TYPE][\"id\"];\n",
" }\n",
" if (output.metadata[EXEC_MIME_TYPE][\"server_id\"] !== undefined) {\n",
" var bk_div = document.createElement(\"div\");\n",
" bk_div.innerHTML = output.data[HTML_MIME_TYPE];\n",
" var script_attrs = bk_div.children[0].attributes;\n",
" for (var i = 0; i < script_attrs.length; i++) {\n",
" toinsert[toinsert.length - 1].firstChild.setAttribute(script_attrs[i].name, script_attrs[i].value);\n",
" toinsert[toinsert.length - 1].firstChild.textContent = bk_div.children[0].textContent\n",
" }\n",
" // store reference to server id on output_area\n",
" output_area._bokeh_server_id = output.metadata[EXEC_MIME_TYPE][\"server_id\"];\n",
" }\n",
" }\n",
"\n",
" function register_renderer(events, OutputArea) {\n",
"\n",
" function append_mime(data, metadata, element) {\n",
" // create a DOM node to render to\n",
" var toinsert = this.create_output_subarea(\n",
" metadata,\n",
" CLASS_NAME,\n",
" EXEC_MIME_TYPE\n",
" );\n",
" this.keyboard_manager.register_events(toinsert);\n",
" // Render to node\n",
" var props = {data: data, metadata: metadata[EXEC_MIME_TYPE]};\n",
" render(props, toinsert[toinsert.length - 1]);\n",
" element.append(toinsert);\n",
" return toinsert\n",
" }\n",
"\n",
" /* Handle when an output is cleared or removed */\n",
" events.on('clear_output.CodeCell', handleClearOutput);\n",
" events.on('delete.Cell', handleClearOutput);\n",
"\n",
" /* Handle when a new output is added */\n",
" events.on('output_added.OutputArea', handleAddOutput);\n",
"\n",
" /**\n",
" * Register the mime type and append_mime function with output_area\n",
" */\n",
" OutputArea.prototype.register_mime_type(EXEC_MIME_TYPE, append_mime, {\n",
" /* Is output safe? */\n",
" safe: true,\n",
" /* Index of renderer in `output_area.display_order` */\n",
" index: 0\n",
" });\n",
" }\n",
"\n",
" // register the mime type if in Jupyter Notebook environment and previously unregistered\n",
" if (root.Jupyter !== undefined) {\n",
" var events = require('base/js/events');\n",
" var OutputArea = require('notebook/js/outputarea').OutputArea;\n",
"\n",
" if (OutputArea.prototype.mime_types().indexOf(EXEC_MIME_TYPE) == -1) {\n",
" register_renderer(events, OutputArea);\n",
" }\n",
" }\n",
"\n",
" \n",
" if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n",
" root._bokeh_timeout = Date.now() + 5000;\n",
" root._bokeh_failed_load = false;\n",
" }\n",
"\n",
" var NB_LOAD_WARNING = {'data': {'text/html':\n",
" \"<div style='background-color: #fdd'>\\n\"+\n",
" \"<p>\\n\"+\n",
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n",
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n",
" \"</p>\\n\"+\n",
" \"<ul>\\n\"+\n",
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n",
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n",
" \"</ul>\\n\"+\n",
" \"<code>\\n\"+\n",
" \"from bokeh.resources import INLINE\\n\"+\n",
" \"output_notebook(resources=INLINE)\\n\"+\n",
" \"</code>\\n\"+\n",
" \"</div>\"}};\n",
"\n",
" function display_loaded() {\n",
" var el = document.getElementById(\"1001\");\n",
" if (el != null) {\n",
" el.textContent = \"BokehJS is loading...\";\n",
" }\n",
" if (root.Bokeh !== undefined) {\n",
" if (el != null) {\n",
" el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n",
" }\n",
" } else if (Date.now() < root._bokeh_timeout) {\n",
" setTimeout(display_loaded, 100)\n",
" }\n",
" }\n",
"\n",
"\n",
" function run_callbacks() {\n",
" try {\n",
" root._bokeh_onload_callbacks.forEach(function(callback) {\n",
" if (callback != null)\n",
" callback();\n",
" });\n",
" } finally {\n",
" delete root._bokeh_onload_callbacks\n",
" }\n",
" console.debug(\"Bokeh: all callbacks have finished\");\n",
" }\n",
"\n",
" function load_libs(css_urls, js_urls, callback) {\n",
" if (css_urls == null) css_urls = [];\n",
" if (js_urls == null) js_urls = [];\n",
"\n",
" root._bokeh_onload_callbacks.push(callback);\n",
" if (root._bokeh_is_loading > 0) {\n",
" console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n",
" return null;\n",
" }\n",
" if (js_urls == null || js_urls.length === 0) {\n",
" run_callbacks();\n",
" return null;\n",
" }\n",
" console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n",
" root._bokeh_is_loading = css_urls.length + js_urls.length;\n",
"\n",
" function on_load() {\n",
" root._bokeh_is_loading--;\n",
" if (root._bokeh_is_loading === 0) {\n",
" console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n",
" run_callbacks()\n",
" }\n",
" }\n",
"\n",
" function on_error() {\n",
" console.error(\"failed to load \" + url);\n",
" }\n",
"\n",
" for (var i = 0; i < css_urls.length; i++) {\n",
" var url = css_urls[i];\n",
" const element = document.createElement(\"link\");\n",
" element.onload = on_load;\n",
" element.onerror = on_error;\n",
" element.rel = \"stylesheet\";\n",
" element.type = \"text/css\";\n",
" element.href = url;\n",
" console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n",
" document.body.appendChild(element);\n",
" }\n",
"\n",
" const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.2.min.js\": \"ufR9RFnRs6lniiaFvtJziE0YeidtAgBRH6ux2oUItHw5WTvE1zuk9uzhUU/FJXDp\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.2.min.js\": \"8QM/PGWBT+IssZuRcDcjzwIh1mkOmJSoNMmyYDZbCfXJg3Ap1lEvdVgFuSAwhb/J\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.2.min.js\": \"Jm8cH3Rg0P6UeZhVY5cLy1WzKajUT9KImCY+76hEqrcJt59/d8GPvFHjCkYgnSIn\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.2.min.js\": \"Ozhzj+SI7ywm74aOI/UajcWz+C0NjsPunEVyVIrxzYkB+jA+2tUw8x5xJCbVtK5I\"};\n",
"\n",
" for (var i = 0; i < js_urls.length; i++) {\n",
" var url = js_urls[i];\n",
" var element = document.createElement('script');\n",
" element.onload = on_load;\n",
" element.onerror = on_error;\n",
" element.async = false;\n",
" element.src = url;\n",
" if (url in hashes) {\n",
" element.crossOrigin = \"anonymous\";\n",
" element.integrity = \"sha384-\" + hashes[url];\n",
" }\n",
" console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n",
" document.head.appendChild(element);\n",
" }\n",
" };\n",
"\n",
" function inject_raw_css(css) {\n",
" const element = document.createElement(\"style\");\n",
" element.appendChild(document.createTextNode(css));\n",
" document.body.appendChild(element);\n",
" }\n",
"\n",
" \n",
" var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.2.min.js\"];\n",
" var css_urls = [];\n",
" \n",
"\n",
" var inline_js = [\n",
" function(Bokeh) {\n",
" Bokeh.set_log_level(\"info\");\n",
" },\n",
" function(Bokeh) {\n",
" \n",
" \n",
" }\n",
" ];\n",
"\n",
" function run_inline_js() {\n",
" \n",
" if (root.Bokeh !== undefined || force === true) {\n",
" \n",
" for (var i = 0; i < inline_js.length; i++) {\n",
" inline_js[i].call(root, root.Bokeh);\n",
" }\n",
" if (force === true) {\n",
" display_loaded();\n",
" }} else if (Date.now() < root._bokeh_timeout) {\n",
" setTimeout(run_inline_js, 100);\n",
" } else if (!root._bokeh_failed_load) {\n",
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n",
" root._bokeh_failed_load = true;\n",
" } else if (force !== true) {\n",
" var cell = $(document.getElementById(\"1001\")).parents('.cell').data().cell;\n",
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n",
" }\n",
"\n",
" }\n",
"\n",
" if (root._bokeh_is_loading === 0) {\n",
" console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n",
" run_inline_js();\n",
" } else {\n",
" load_libs(css_urls, js_urls, function() {\n",
" console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n",
" run_inline_js();\n",
" });\n",
" }\n",
"}(window));"
],
"application/vnd.bokehjs_load.v0+json": "\n(function(root) {\n function now() {\n return new Date();\n }\n\n var force = true;\n\n if (typeof root._bokeh_onload_callbacks === \"undefined\" || force === true) {\n root._bokeh_onload_callbacks = [];\n root._bokeh_is_loading = undefined;\n }\n\n \n\n \n if (typeof (root._bokeh_timeout) === \"undefined\" || force === true) {\n root._bokeh_timeout = Date.now() + 5000;\n root._bokeh_failed_load = false;\n }\n\n var NB_LOAD_WARNING = {'data': {'text/html':\n \"<div style='background-color: #fdd'>\\n\"+\n \"<p>\\n\"+\n \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n \"</p>\\n\"+\n \"<ul>\\n\"+\n \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n \"<li>use INLINE resources instead, as so:</li>\\n\"+\n \"</ul>\\n\"+\n \"<code>\\n\"+\n \"from bokeh.resources import INLINE\\n\"+\n \"output_notebook(resources=INLINE)\\n\"+\n \"</code>\\n\"+\n \"</div>\"}};\n\n function display_loaded() {\n var el = document.getElementById(\"1001\");\n if (el != null) {\n el.textContent = \"BokehJS is loading...\";\n }\n if (root.Bokeh !== undefined) {\n if (el != null) {\n el.textContent = \"BokehJS \" + root.Bokeh.version + \" successfully loaded.\";\n }\n } else if (Date.now() < root._bokeh_timeout) {\n setTimeout(display_loaded, 100)\n }\n }\n\n\n function run_callbacks() {\n try {\n root._bokeh_onload_callbacks.forEach(function(callback) {\n if (callback != null)\n callback();\n });\n } finally {\n delete root._bokeh_onload_callbacks\n }\n console.debug(\"Bokeh: all callbacks have finished\");\n }\n\n function load_libs(css_urls, js_urls, callback) {\n if (css_urls == null) css_urls = [];\n if (js_urls == null) js_urls = [];\n\n root._bokeh_onload_callbacks.push(callback);\n if (root._bokeh_is_loading > 0) {\n console.debug(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n return null;\n }\n if (js_urls == null || js_urls.length === 0) {\n run_callbacks();\n return null;\n }\n console.debug(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n root._bokeh_is_loading = css_urls.length + js_urls.length;\n\n function on_load() {\n root._bokeh_is_loading--;\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: all BokehJS libraries/stylesheets loaded\");\n run_callbacks()\n }\n }\n\n function on_error() {\n console.error(\"failed to load \" + url);\n }\n\n for (var i = 0; i < css_urls.length; i++) {\n var url = css_urls[i];\n const element = document.createElement(\"link\");\n element.onload = on_load;\n element.onerror = on_error;\n element.rel = \"stylesheet\";\n element.type = \"text/css\";\n element.href = url;\n console.debug(\"Bokeh: injecting link tag for BokehJS stylesheet: \", url);\n document.body.appendChild(element);\n }\n\n const hashes = {\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.2.min.js\": \"ufR9RFnRs6lniiaFvtJziE0YeidtAgBRH6ux2oUItHw5WTvE1zuk9uzhUU/FJXDp\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.2.min.js\": \"8QM/PGWBT+IssZuRcDcjzwIh1mkOmJSoNMmyYDZbCfXJg3Ap1lEvdVgFuSAwhb/J\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.2.min.js\": \"Jm8cH3Rg0P6UeZhVY5cLy1WzKajUT9KImCY+76hEqrcJt59/d8GPvFHjCkYgnSIn\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.2.min.js\": \"Ozhzj+SI7ywm74aOI/UajcWz+C0NjsPunEVyVIrxzYkB+jA+2tUw8x5xJCbVtK5I\"};\n\n for (var i = 0; i < js_urls.length; i++) {\n var url = js_urls[i];\n var element = document.createElement('script');\n element.onload = on_load;\n element.onerror = on_error;\n element.async = false;\n element.src = url;\n if (url in hashes) {\n element.crossOrigin = \"anonymous\";\n element.integrity = \"sha384-\" + hashes[url];\n }\n console.debug(\"Bokeh: injecting script tag for BokehJS library: \", url);\n document.head.appendChild(element);\n }\n };\n\n function inject_raw_css(css) {\n const element = document.createElement(\"style\");\n element.appendChild(document.createTextNode(css));\n document.body.appendChild(element);\n }\n\n \n var js_urls = [\"https://cdn.bokeh.org/bokeh/release/bokeh-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-tables-2.0.2.min.js\", \"https://cdn.bokeh.org/bokeh/release/bokeh-gl-2.0.2.min.js\"];\n var css_urls = [];\n \n\n var inline_js = [\n function(Bokeh) {\n Bokeh.set_log_level(\"info\");\n },\n function(Bokeh) {\n \n \n }\n ];\n\n function run_inline_js() {\n \n if (root.Bokeh !== undefined || force === true) {\n \n for (var i = 0; i < inline_js.length; i++) {\n inline_js[i].call(root, root.Bokeh);\n }\n if (force === true) {\n display_loaded();\n }} else if (Date.now() < root._bokeh_timeout) {\n setTimeout(run_inline_js, 100);\n } else if (!root._bokeh_failed_load) {\n console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n root._bokeh_failed_load = true;\n } else if (force !== true) {\n var cell = $(document.getElementById(\"1001\")).parents('.cell').data().cell;\n cell.output_area.append_execute_result(NB_LOAD_WARNING)\n }\n\n }\n\n if (root._bokeh_is_loading === 0) {\n console.debug(\"Bokeh: BokehJS loaded, going straight to plotting\");\n run_inline_js();\n } else {\n load_libs(css_urls, js_urls, function() {\n console.debug(\"Bokeh: BokehJS plotting callback run at\", now());\n run_inline_js();\n });\n }\n}(window));"
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"import pandas as pd\n",
"import numpy as np\n",
"import os\n",
"from rdkit import Chem\n",
"from rdkit import RDPaths\n",
"from rdkit.Chem.Draw import IPythonConsole\n",
"from rdkit.Chem import Draw\n",
"from rdkit.Chem import AllChem\n",
"from rdkit.Chem.Draw import rdMolDraw2D\n",
"from rdkit.Chem.Draw import MolDraw2DSVG\n",
"\n",
"from bokeh.plotting import ColumnDataSource, figure, output_file, show\n",
"from sklearn.decomposition import PCA\n",
"from rdkit.Chem import AllChem\n",
"from rdkit.Chem import DataStructs\n",
"from bokeh.io import output_notebook\n",
"output_notebook()"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"from sqlalchemy import create_engine, MetaData\n",
"from sqlalchemy.orm import sessionmaker\n",
"from sqlalchemy import Table\n",
"from sqlalchemy import Column, BIGINT, Index\n",
"from sqlalchemy.orm import mapper\n",
"from sqlalchemy.ext.declarative import declarative_base\n",
"from razi import rdkit_postgresql\n",
"from razi.rdkit_postgresql.types import Mol\n",
"from razi.rdkit_postgresql.types import Bfp\n",
"from razi.rdkit_postgresql.functions import mol_amw\n",
"db = create_engine('postgres://iwatobipen@localhost:5432/chembl_27',\n",
" #echo=True\n",
" )\n",
"metadata = MetaData(schema='rdk')\n",
"Base = declarative_base()\n",
"class Mols(Base):\n",
" __table__ = Table('mols',\n",
" metadata,\n",
" Column('molregno', BIGINT, primary_key=True),\n",
" Column('m', Mol),\n",
" extend_existing=True,\n",
" )\n",
" __table_args__ = (\n",
" Index('molidx', 'structure',\n",
" postgresql_using='gist'),\n",
" )\n",
" \n",
" def __repr__(self):\n",
" if isinstance(self.m, Chem.Mol):\n",
" return '(%s) < %s >' % (self.molregno, Chem.MolToSmiles(self.m))\n",
" return '(%s) < %s >' % (self.molregno, self.m)\n",
" \n",
" \n",
"class Fps(Base):\n",
" __table__ = Table('fps',\n",
" metadata,\n",
" Column('molregno', BIGINT, primary_key=True),\n",
" Column('torsionbv', Bfp),\n",
" Column('mfp2', Bfp),\n",
" Column('ffp2', Bfp),\n",
" extend_existing=True)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"Session = sessionmaker(bind=db)\n",
"session = Session()"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<rdkit.Chem.rdchem.Mol at 0x7f8e71982f30>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"(1) < Cc1cc(-n2ncc(=O)[nH]c2=O)ccc1C(=O)c1ccccc1Cl >\n"
]
},
{
"data": {
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAcIAAACWCAIAAADCEh9HAAAABmJLR0QA/wD/AP+gvaeTAAAgAElEQVR4nO2deVyU5drHfyzCKAompiyCGQKuuOEGKqlgpnAKFY+mpLmMveectHqtMc/pY6fTMtrbCe3Uaag0UzMx07Q0d9xTccdQ1FTcZVMQGGS53j9uGobZZJmZ5wGu76c/7H5m5vmR9Jv7ua/NgYjAMAzD1BZHqQUwDMPUb9hGGYZh6gTbKMMwTJ1gG2UYhqkTbKMMwzB1gm2UYRimTrCNMgzD1In6aqMODpg2reLPGzZg3DhJ1TAM04iprzbq6Ihdu/D772ZfsGQJPvrIjoIYhmms1FcbdXDA//4v3n/f9NWrVzF3LubOxeTJKCqyrzKGYRoZ9dVGAcyciR07cOWKiUvt22P9enh4YNUqhIWZfg3DMIxVqMc2qlDgtdfMbkhHj8bhw+jUCSdPom9f7N5tX3EMwzQa6rGNAlAqsW0bMjIq/pUIJSWVV4ODcfgwYmKQlYURI7BwoSQaGYZp4NRvG1Uo8OqrlaGk997DsGG4c6fyBe7uWL8eKhVKSzFvHmbNwsOHkihlGKbBUr9tFIBSWeGMDx4gMRH796N/f5w4UfkCJyeo1Vi5Ek2bIjERw4fj9u1yqdQyDNPwcGhI/UYzMxEXhz17oFBAo8ELL1S5evIkYmMBpCsUY5YvX9qvXz9pVDIM07Co97tRfR5/HNu2YcYMaLWYMgVz5qCsrPJqz5749Vf06aM+d+5sRETEypUrpVPKMEzDod7baHk5rl6t/FcXF3zxBTQauLhgyRKMHo3c3Mqrbdviu+8SVSqVVquNj4+fNWtWiX5MimEYpubUexv9+9/RvTt+/LHKolKJnTvRti22bkW/fjh7tvKSs7OzWq3WaDQuLi6JiYlRUVGZmZl21swwTEOifttoeTkuXUJ+PsaMgVoN/WPeQYOQkoK+fXHxIgYMwPr1Vd6oVCp3797t5eW1Z8+egQMHpqam2lk5wzANhvpto46OWLMGajUAvPkmJkxAQUHl1XbtkJyMCRPw4AHGjcO//kX68bSwsLCUlJR+/fpdunRp4MCB69ats7t8hrE5169fz8nJKSwslFpIg4YaBJs3U8uWBFBICP3+u+HVhARycqKnnvogOjr6/v37+pcKCwsnT54MwMHBYdGiRfZTzDC2pLi4eOPGjXFxcc7OzjExMYGBgb/99pvUohosDcRGiSg9nTp3JoA8PWnHDsOr27bleHp6AujevfulS5cMrmo0GldX182bN9tJK8PYjNOnT8+ZM6d169Zin+Tq6tq2bVsALVu2/Pnnn6VW1zBpODZKRHl59OyzBJCzM6nVhlcvXLjQtWtXAK1atdq2bZvB1YyMDDupZBgbcO/ePY1GEx4ernvQ7NKli1qtvnv37oMHD8aNGyceuVQqVXl5udRiGxoNykaJqKyM5s0jBwcC6M0392u1Wv2r+fn5sbGxAJycnNTGRssw9ZCUlBSlUunm5ibc08PDQ6lU7tu3T/815eXlarXa0dERwPjx4x88eCCV2gZJQ7NRwZo11LPn8WbNmvXu3fvq1av6l/R/nyZOnFhQUCCVSIapCxkZtGhR9pNPPinc09HRMTIy8ttvvy0qKjL3ls2bN7ds2RJASEjI78YxBKa2NEwbJaITJ062b98egI+Pz6+//mpwddOmTe7u7gB69ep15coVSRQyTC0oLqaNGykujpydCaDOnfv4+vqqVCrjE3+TpKend+7cGYCnp+cO4xgCUysarI0SUVZW1vDhw8Up+5dffmlw9dy5c8HBwQBat269e/duKQQyTA04dYpmzyZPTwIIIIWCJkygXbtulJWVmXtLfn6+8WJeXt6zzz6LP0pRbCnZiNJSOnGi4s85ORQfTz4+5O1NY8fSzZt2VWJVGrKNElFJSYlKpRJPPUql8uHDh/pXs7Ozo6KixO/TkiVLpBLJMBa4d480GgoPr3BPgLp0IbWaMjPNvkWr1SYlJUVHR/v7+5eWlhq/QBxtOTg4AJg0aVJhYaENfwBBRgap1fTEE6RQUE4OEdGoUfTaa1RSQmVl9M471L+/zTXYjAZuo4KVK1c2bdoUwODBg2/fvq1/qbS0VPhsRESEUqksLi6WSiTTmAHoxRcr/rx+PY0dS+XltG8fKZXk5lbhnh4epFRSSoqlz0lJSfnrX//62GOPia1D06ZNT+h2f0asWbNGBKaMQwhWo6CAli+niIiKsC9AQUGUkkKnTpGvL+m2NeXl1Lkz7dxpEw22p1HYKBEdO3bM398fQLt27Y4ePWpwdfXq1eL3aciQIXfu3JFEIdOYcXSk9u1JHG8KG/300wrbcXSkqChavZrMh44oNzdXo9H07t3bINspKyvL8n1PnTrVoUMHEUI4dOiQNX+klBSaPZtatao8g4iLo+3bSaRbrVpF0dFVXj9lCtXbJ8LGYqNEdOPGjf79+wMIDg42ftI5fvy4CEn5+voeOXJEEoVMo8XJiZYsoenTif6w0Tt3KDCQ3n6bLERAy8rol19o/Hjq2LGzcM/WrVu/8sorp0+frv6tLYcQakxODmk01LNn5RlEnz6k0VBeXpWXGdvoCy+wjdYPtFrtrFmzzLlkZmbmU089BUChUHz99dd21sY0ZpycqKiI2reny5crbNQy166RWk0dOlQ41dCh740aNWrt2rW1O5WyHEKoDqWlpT/99NP52bPJxaVCU9u2NHcumatAFQ/1JSUV/8oP9Q2JkpKSl19+Wff7VKL7a2YYW+LkRES0eDHNnGnJRrVaSkqi6GhycqowKz8/Uqno8mUraLAQQrBARkaGWq0WT3J/DQkhR0eKjKSkJLLgxbdu0f/9H40YUSXE1K8f1dvyKrZRE4hupACefvrpHBFVZBhbImxUbEgXLzZto0uXVvTfAahZM4qPp927rew8lkMI+hQUFCxfvjwiIkKE+wEEBQWpP/ig3ELeUmkpbd9OcXHUpAkB9OWXNGkSeXuTlxfFxtKNG9b8SewL26hp9u/f7+XlBSAgIODMmTNSy2EaOMJGiSghgfz9Tdvotm0VJ40JCfSo0FHtuXHjxoABA8TR1jfffGP8gpSUlNmzZ7dq1Uq4p0KhiIuL2759u6VS/bQ0ev118vKq+BJo0oRiY8m6ES1JYRs1y/Xr1/v27QugefPm69atk1oO05DR2WhhIXl5mbbRsjJKTbWHGK1WO336dF0rExGPzcnJ0Wg0PXv21CUD9OnTR6PR5BnEjvQpLKSkJIqMrMx26tSJ1Gqq9olBfYFt1BJFRUVTpkzR/T5ZKBexETk5OZ988sn06dM///zzm/W5zIOxTHExTZhAorO4TNBoNE2aNAEwcuTI3Nzcjh07Cvds27bt3LlzH9G9NCWFlEpq0aLCPd3dKT6+MtupwcE2+mg0Go2zszOA0aNH37t3zw53LCsr27dvn1KpbNasme7L32RzAKZhcPYsARQQILWOquzdu1f0Ku3YsePLL78cExOzYcMGC3H8mzdvqtVqzXPPVbingwMNGUJff00NvaEU22i12Lp1q6gMCQ4OTktLs92Nrl+/rlarDdr2fPrppyITy9XV9auvvrLd3RmpWLeOAMNMSjlw7dq10NBQAC1atFi/fr3J15SWlm7fvj0uLk7sXps6Oz/s3p3efJPS0+2sVirYRqvLxYsXu3XrJro+b9261bofriuCdnJyEgbarl07lUql62ZW98w+Rs68+y4BNHeu1DpM8eDBg/HjxwMYOHCgQRzp3LlzKpVK7FhFG9/IyMikpKTG9vvJNloD8vPzx4wZY92uz6mpqSqVSn/kg4W4p35mHxetNiQmT65IAZIn5eXlvXr1ApCUlEREhYWFSUlJkZGRumynTp06qdXq6mebNjDYRmuGftfnCRMm1LrrsyiC7tOnT02LoI8dO+bn5wfAz88vxXKbCqb+EBpKAB04ILUO83Tv3h3A0qVLp06d2rx5c/FL6+7urlQq+ciebbQ2/PTTTx4eHgB69ux5uSYVJMaxo5YtWyqVyuPHj1f/Qx6Z2cfUL8rLyd2dABtmg9aRsrIyhULh4OAwc+ZM/Wwnk/1MGyFso7Xk3LlznTp1Es0gdu3a9cjXX7t2zTh2tHz5cgutHjMzMw+Y2Z9otdpp06ZJmInFWJGMDAKoTRupdZjn4sWL4gHo5MmT8+fPv3DhgtSK5AXbaO25f/9+TEwMLHYRN44d+fn5qVQqC3vYsrKy7du3x8fHN23a1NfX12TbXYEus++ZZ57Jzc2t+09Ua86fPy/h3es7ojxpyBCpdZhn06ZNAKKioqQWIlPYRuuEruuzCKDr99cxiB1Vp2bu4sWLf//739u1a6eLe0ZHR9+9e9eCgL1797Zp0wZAYGDg2bNnrfmzVZvFixc7OzsvXrxYkrs3AJYsIYBmzZJah3k+/PBDALNnz5ZaiExhG7UCq1evFmedYWFh58+fr2kD3aKiIoO4Z2Bg4IIFC6o5ay8jI0OEqixk9tmUN954Q8h+6aWXGlumi1X4y18IoI8/llqHeURt6GeffSa1EJnCNmodUlJSRABdoVAIT6lOA13R5cHT07P6O1aTFBUVxcfHS3hU+u2334ovkvDw8Fu3btn57vWdoUMJoC1bpNZhnrCwMADViQE0TthGrcbt27c9PT09PDzCwsIsx45MdnlISEjIzs6u9d31M7Hi4uIe2L38Tn98wOHDh+1893qNtzcB1ukZaiPENz1/QZqDbdRqlJWViR2ZuWiPiB3FxcWJZqYAHnvsMaVSefLkSWtp2Lx5c8uWLQGEhIToKqDshv74gGXLltn57vWU3NyK/qGyzba4c+eOyMyTWoh8YRu1GpcvXwbg7e1tfEm/Q7gu28lGNXPp6eldunQB4OnpuX37dqt/vmVKSkpmz56ti7nx+IBHcugQAdSrl9Q6zJOcnAxgwIABUguRL2yjVmPLli0Ahg0bZrC+dOlSXewoODhYrVbbuuVdXl7ec889B6sWrdYI3fiAiIgIy5kGzLJlBNDEiVLrMM/nn38O4EXdAGjGCEcwViItLQ2AyMnXJyoqqlmzZiJ2lJaWplKpvL29baqkRYsWP/zwgzDQefPmTZ48uaioyKZ3NECpVO7atcvLy2vPnj0DBw5MTU215931ycnJKS8vl+ru1eHcOQAw+q2REZmZj/XoMaRbt1CphcgYqX284aBUKgEsMTUktsjCiHFbkpSU5ObmBqB3795Xr161892vX7/er18/AM2bN//+++/teWtdCUOzZs2mTJkyadIkCxE/aXn2WQIoKUlqHeZ5+mkC6McfpdYhY9hGrcaQIUMAbNu2TWohVTh16lSHDh0AeHt7H7L79JuioqKpU6fCjplYv//++1tvvSWSzwA4OTmJ44UBAwbckOXQtKAgAqgmg+XtTfv2BBDXqVmAbdRqiGqia9euSS3EkMzMzKFDhwJwdXW1f9CJ7DI+wELRrbRfJJYpLiZnZ3J0JIkeVx5NQQE5OpKLC3Gw0AJso9YhOztbPL3WNHPePpSWlr788sseHh4ffvihJAKSk5Mff/xxAEFBQdYdHyCKbi2XMGRlZQ0fPlx8kXwpp6ae8pwdos/x4wRQ165S65A3bKPWYf/+/QBCQ0OlFmKWnTt3AggPD5dKgG58gLu7+8aNG+v4aaJhq+glLBAlDOaKbuU5PqC4mI4do927pdZhnlWrCDA9qZTRwTZqHb788ksA8fHxUgsxy6effgpg+vTpEmrIz88fO3Ys/sjEqsXOXb/9lfBEUcJw4sSJ6rxdf3xAo23VXiPeeosA+sc/pNYhbzjhyTqcO3cOprKdpOLBgwcGK3JQ2Lx587Vr1+oysZ5//vnCwsJqvvf69esLFy7s2LFjVFTUihUriouLRQnD7du3DSprLTBp0qT9+/f7+/vv27cvNDQ0JSWlDj9NnXBwwLRpFX/esAHjxkkl5BHIPx9LFkjt4w2E0aNHA1i3bp3UQoiIysvL3dzcvLy89GecREVFAfjpp58kFKaj+uMDROxIv/3VIxu2lpSUbNq0aeLEieZGvMhhfICjI7VvT5cuERGtXy/fp+Zu3QggnlZjGbZR6xAQEABAqo6fBly5cgWAl5eX/qJoY3rx4kWpVBlw/vx53fiAnTt3Gr+gOrEj489csGCBruh2xYoV5l6p1WpF8zeRiWWhN7aNcHKiJUtIHLHI1kZLS0mhIAcH4lkhlmEbtQJardbJycnZ2Vmr1UqthYjol19+ATB06FDdSn5+voODg0KhsL9fWMDk+ABzsSML7a8ePHiwbNmywYMH6w+qXLRo0SNPP3XjA0aOHGmf8QHFxRUpok5OVFRE7dvT5cvytdELFwggf3+pdcgetlErcPr0aQDBwcFSC6ng448/BvA///M/upWjR48CCAkJkVCVScT4AGF/0dHRY8aM0bW/atOmzWuvvZaammrh7SkpKUqlskWLFuItTZs2rWnD1r1794ox67YeH5CWRioVtWlDnp6k1ZKTExHR4sU0c6Z8bXTjRgJoxAipdcgetlErsGbNGgDPPvus1EIqmDVrFgD9qR7ffPMNgPHjx0uoygKrV69WKBQisVTX/kp/IosB2dnZGo2mR48e+jtWjUaTl5dXi7tfu3YtNDQUthkfcP8+aTTUvz8BFf+EhNCFCxU2KjakixdX2OiePWT+h5aARYsIoDlzpNYhe9hGrcA///lPAPPmzZNaSAURERGoWpY6f/58AAsWLJBO1CMQ3ftHjBhhoWRT17BVPImL89/Zs2dbHjFQHWwxPiAlhZRKat68wj09PEippH37Kq4KGyWihATy96exY+nAAXJxofBwkk9z5ORkmjOH5BGVlDVso1Zg4sSJAL7++muphVQgylIzMjJ0K2PGjAGwevVqCVVZxnKqg4gd+fv7C/d0cnKyesNWMT5A1JLWZXzAzZukVlPHjpXbzz59SKMhg8/T2WhhIXl50dixlJJC7doRQH5+HBmvZ7CNWgGRtPjrr79KLYSIKDc3F4Cbm5v++WDnzp0BVDNHXRJEqsNvv/2mv1hYWLh06dJBgwbpHt47d+784Ycf2i5zfsuWLbUbH1BcXPz999/PnPmrk1OFe/r50VtvVaQ0VZPMzIq5TK6uJO30AIB0/UX1j26ByuL6TZvo6acl0CZD2EbryiNnh9iZAwcOiLNC3UpJSYmLi4ujo6O5PErJKSoqEqkOBueh9+7dE/9taxE7qjU1HR8gesiKJ4ABA8a6uFB0NCUl1bKXR0kJqVQVRqxUklQ1q+bSWtlGTcI2WlcszA6RBFGWOnnyZN2KqF964oknJFRlmVOnTplLdXjvvfeWLVtm5wl91RkfcO/evc8//1w0VBWEhIR88sln5gdp1wCNhlxcCKCICJJkeoC5tFa2UZM4m65tYqqNMCnx1CwHzp8/j6pFn6Itv3wUGmOhUFUEx+yMGB+waNGi+fPnz5s378yZM1988YWuiv/YsWOJiYmrVq0qKCgA4OHh8ec//zk+Pl7/8KGOKJXo2hXjxmHPHgwciA0b0K2btT77ERBBZN/OnIlOnXDliuELOnas+ENREfSyexs1XFNfV8zNDpEKYz1yqKa3jAyNXoTsv/vuOzc3t1WrVg0aNOjo0aMLFy4MDAwMDQ1NTEwsLCwMDw/XaDQ3btzQaDRW9FBBeDhSUtCvHy5dwsCBWLfOuh9viFaLtWsRFYUPPqhYUSjw2mt4/33DV168iCtXcOUKvvrKtpLqEbwbrStyMynj3bHcFBpjvIOWCXFxcUFBQbGxscePHx88eHBxcTEAPz+/qVOnvvjii6IbtO3w9UVyMmbOxKpViIvDRx9dfOWVAF2llrU4cgRLl+K773D/PgDcvQvdA4BSiU6d7LcRrr/wbrSuyMqkiouLL1++7OzsLALfArkdOxgjtx29Pj169Dhy5EjLli2bNGkyatSoX3755cqVK++8846tPVTQtClWroRGgx498t58s09MTMx94XZ1JjcXiYno1Qv9+0Ojwf376NMHCQnYvbvyNQoFXn0VH31klRs2aKQ+nK33iNobmcwOEWWpQUFB+osig0e2g47llupgzMOHDyVPddi2bWerVq0AdO3a9cKFC7X+nLIy2r6d4uIqQlgAPfYYKZV08mSVlxmntQo4xGQSttE6YWF2iCT91ZOSklC1LPXGjRsAPD097S+mmohUBx8fH6mFmEVsljt06CCtjDqOD7hw4ff588nXt8I9nZ0pJobWr5csp6ohwQ/1dUL3NGpwYpWdnd2jR4+lS5dKpUe3wk/0NWXXrl0//PDD3bt3dSsyObcJCAg4dOjQ2LFj8/LyYmNjFy5cSESPfJdWq127dm1UVFRQUMCPPz64cQNBQViwAJcuYeNGPPcc/iisZWoP22idEP+DddTlgPzB6tWr09LSpk+f/uqrr5aWltpZj3G2k+QWYAG5Gf3HH388duxYMVxLIJ9EAoPxARMnTrQwPuDXX3+dNWtW27Ztx48fv2PHDjc3t5iY/fv24fx5vP02/iisZawA22id6NGjR1hYWHJycmpqqv763/72txUrVjRt2jQhIWH48OH6WxubYmyjMtlJWUBuCo2/eGSVSCAysTZu3Ojh4bFmzZrw8PArVXM7c3NzExMTe/XqNXDgwMTExLy8PNH+6ubNmx98MNLaeVkMAA4x1Q2tVmuhx9rBgwe9vb0B+Pn5pdi+20RZWZmbmxuAnJwc3WJkZCRkMzvEJIMHDwZQnbJLO2CyA7coVdq7d6+EwowxGB+ga3+la9jaqlUrpVJ56tQpqZU2fNhG60pRUdHUqVNhpsfajRs3+vfvD8DNzW3t2rU2VWKyLNXX1xfApRp1yLAvMkx1MChLFWOjMjMzpVJlksLCwqNHj44YMQKAs7OzbtqKs7Pzn/70pw0bNshkiHRjgG3UOmg0GmdnZwCjR4++d++e/iWtVjtt2jRzPmtFCgoKtm7dqm/WeXl5Mpwdok9WVpbYy9uh50h1MO7ALdtUhz179gAICwtTqVQ9evRwdXUNDAxUKpVpaWlSS2t0sI1ajeTkZLGxCgoKMv5V1o39eeaZZ+yWIHnkyBHIcnaIjn379gHo27ev1EIqMO7AvWPHDgCDBg2SUJVJPv/8cwBTp04lIq1Wm5aWdubMGQCBgYFSS2t0cIjJakRERBw6dKhbt27p6en9+/fftGmT/lWlUrljx442bdps2bKlX79+v/32mx0kyS0Ibozc4ktCT3BwsMGKfBTq0Bfm6uraqVMn+f91N1TYRq2J5cy+IUOGpKSk9OnT58KFCwMGDPjxxx9trUe2FqBDbgrrUUcCY6nyT25rqLCNWhmDzL7nn39eP7PPz89v//79kydPzs/Pj42NFQ+PthMj9rxy/v9KVhuo8vLy9PR0mNqNykShPvWxlVeDReJDhYbLTz/9JCK8PXv2vHz5sv4lMfbH0dERdRv7YwExebhZs2bNmjVbtGiR1T/fWjz55JMwmh0iFfUo1aGgoMDR0dHFxaVEr8l+7969ARw8eFBCYY0TtlEbop/Zt2vXLoOrmzdvrt3YHwvcvn37ww8/NNg6OTg4zJ8/33YZArVGzA5p0qSJhVnK9mTLli0Ahg0bpluRbarD8ePHAXTt2lW3Ul5e3rx5c1TNGmbsAz/U25CgoKDDhw/HxMRkZWWNGDFi4cKF+lefeeaZI0eOdOnS5fTp03379t25c2etb1ReXr5jx47x48f7+fm9/vrraWlpusnDIhPr/fffj46OvnfvXp1/JmuSnp5eVlYWEBCgyxiXFpOPyUQUHBwsJobKB2Op165de/DggZeX12OPPSadrkYK26htcXd3X79+vUgXnTdv3qxZsx4+fKi7GhgYePDgwVGjRmVnZ8fExNy+fbumn5+env7222936NAhKipq7dq15eXlYvJwRkbG4sWLu3fvrlQqd+7caecMgWoit5CIufkr8lGog+NLsoK739scMRatZ8+e06dPT0xMTE1NXbdunZeXl7jq4eGxadOmf/zjHz4+PrrFR6LVajdt2pSYmLhz504iAhAcHPziiy9OnTq1bdu2Bi8ePHhwSkpKbGzssWPHBgwY8M0334h5bZIjt+iNzKvp9TGXmCWf/5iNC6lPFRoRJ06ceOKJJwD4+voePny4dh8iYkctWrQQf33VnzxcVFQUHx8P2xdTVZ8JEyYA+Prrr6UWUoEYkqxflhobGwtg9erVEqoyiWg8qt+o4aWXXgKQkJAgoapGC9uoXcnMzBw6dCgAV1fXZcuWVf+Nt27dSkhICAkJ0X3/ibY9+fn51f8QO2QI1IgePXoAMP5GSUtLu3nzpp3FmOzALTZ3Jw1aw0tNaWmpQqFwcHDQ/9t/6qmnAGzdulVCYY0WtlF7U1JSolKphBUqlUrL/SNKS0tF254mfzTX9fb2FrGjWguwRYZALdDNDjFoQZCdnR0QEODj43Po0CF76hENRkNDQ3UrcpgdYpL7ly4lDBw4Mzxcf1Ec5ly9elUqVY0ZtlFp0Gg0Ijw9ZMgQk1OSzp8/v2DBAv8/mus6OTmJ2JFV2vakp6d36dIFgKenpyQd6nJyct5++20ALVu2NMglyszMjIiIAKBQKOz5vP/ll18CmDx5sm5FJrNDTLBxIwE0YoRuoSQn55vBg/8WGiqTDi+NDbZRyThw4ICIKQUEBJw5c0YsFhYWJiUlRUZG6qaSBAcHq9Xq27dvW/fueXl5ItAkImDW/XBzlJWV7du3T9QFABDdUUeMGJGdna3/shpt2K3F3LlzAbz77ru6lfXr1wMYNWqUHe5eMxYtIoBmz65cOXiQAOrdWzpNjRq2USm5fv26aAncvHnz9957b9q0aSKDGkCLFi1mzJhh04oU/aNSUbRqu3tduXJlwYIF7du3Fz+do6Pj008//c477xh/kegQ4wMADB48+M6dO7bTJoiOjgawbt063cr7778P4LXXXrP1rWvMtGkE0GefVa589RUBNGmSdJoaNWyjElNYWDh58mTxfF3r2FFdSEpKErvC3r17W/1kTavVJiUlRUdH69LX25uuCFoAAAeESURBVLVrp1KpdGey+l8k33//vcHb7Tk+YPjw4U5OTmfPntWtTJkyBUBiYqJN71sbwsIIoN27K1feeIMA+te/JJPUuGEblQVffPHFihUr5s2bl56ebv+7nzp1qkOHDgAef/zx5ORkq3xmamqqSqVq3bq1cE9XV1dziVlardby+IABAwaIo9IVK1ZYRZs5tFqt/t3lOTuEiMjTkwC6datyJSaGALLxeAXGHGyjDBFRVlaWmNrk6ur6xRdf1PpzcnNzNRpNnz59dIlZXbp0UavVWVlZlt8oh/EBBshzdgjdvk0AtWxZZTEwkABKTZVIU2OHbZSpoLS0tNaBHYPYkQjBK5XK48ePV/9DZDU+QLazQyg5mQAaOLBypbiYnJ3JyYn0xvAx9oRtlKnCqlWrRGBn0KBB1UkPuHbtmlqtFv3uROwoMjJy+fLltQtYXbx4UdTnuLu7b9y40eDq3r17RaFRYGCg/iGmLZDt7BD6738JoBdfrFw5c4YA4tkh0sE2yhhy7Ngxka/arl27I0eOmHyNcezIz89PpVIZdFatBfn5+WPHjtVlYhmcpWZkZIgTA5MTra3Iq6++CmDGjBm2u0UtmTOHAFq4sHJl7VoC6E9/kk5TY4dtlDHB3bt3dTnwy5cv179kEDtSKBTVLOqvPvqZWBMmTDAoIioqKhK5DeKo1LoJ56Lotnv37gBGjhz5888/W/HDrcPTTxNA+lv1d94hgN54QzpNjR22UcY0Wq12xowZwitnz56dlZWl0WhEf3VdYlZCQsIjY0e1xp7jAx4+fLhhw4aYmBgR5gLg4+Pzn//8p44faxP8/Qkg/YyO558ngJYulU5TY4dtlDFNWVnZihUrXn/9dRHY0flL69atX3nllboU9Vcf/fEBoiWgPlZpDnDu3DmVSqXrLmjdolvrU1BAjo7k4kJ6s0Ood28CyL4tCBh92EYZ04jBRD4+PsnJyTExMV27do2MjJwxY8bmzZvtOVHj/v37MTExwseNi1bT0tJEa/qadgYwLrrt1KmTLYpurcz9+7RwIc2fX7lSXk7NmxNAPDtEOthGGdNs3rwZeoOJtFrt/fv3HRwcmjZtaudepSITS/jdzJkzDQY33bt3r0axJtGwVVd06+7uHh8fb92zXbtSXEz//S+9+abUOho1bKOMaf79738D+Mtf/qJbOXz4sDiplETP6tWrRVJqWFhYLbqR6seOJCm6ZRowPIuJMY3x0HNpp/1MmDDhwIEDTzzxxMGDB0NDQ4WnP5KysjIx7M/f3/+VV145c+aMt7e3SqVKT0832JbWG3Jz8cIL8PWFjw/GjcOtW1ILYnikHWMGYZr6s30kH0zUs2fPo0ePDhs27ObNmxEREcuWLbPw4vPnz8+bN8/X19d42J9arQ4MDLSbbCszeTIefxxXr+L6dfTogdhYqQUxPIuJMYOoy9QfTCT6k3733XcSqqJHdSPNy8tbvny5cezIDq327MGpU+TrS7ofubycOncmoxwGxs6wjTImMDmYSOxDZTKYKDExUTc+QFikudiR1EqtyqpVFB1dZWXKFFqyRCI1TAU8YJkxge6JXrenKykpuXTpkqOjo0weh2fOnNmlS5dx48bt3bs3JCTEzc3t999/B+Dg4BARETF9+vSxY8fq+qQ0ZIikVsDwnHrGFMbRpEuXLpWUlDz55JPy8abw8PBjx46NGTPm4cOHJ06c8PHxiY+PnzFjRseOHaWWZjO6dcOJEygthaiGIMLRo5gyRWpZjR22UcYEcgvTm0NUBxQUFBw9ejQqKkrXJ6XBEhKC7t2hUmHhQjg64r330KIFhg6VWlZjhyP1jAmEjeqH6Y1XZIJCofD09Bw5cmTD91DBqlW4cwf+/vD1xYkTWL8efxy8MFLBu1HGBMZ7T2GjwcHBkmliBK1aYeVKqUUwVWAbZYzQar/39z/j5xcQEKBbk+1ulGEkh22UMSI9vVdycq9OneDioltb6e5+PiKiq8zORhlGDrCNMkakpQGAvmPeuBG4Y0egpyf+6NbMMIwODjExRpw7BwD6z+9ipUsXafQwjLxhG2WMEKapH00y3p8yDPMHbKOMEcI0jXejbKMMYwq2UaYq5eW4cAGouhs1fsxnGOYP2EaZqly9isJC+PjAw6NykR/qGcY8bKNMVYyf6PPycOsWFAr4+0slimHkDNsoUxXjY9Bz50CE4GA0kmpLhqkhbKNMVYxt1Hh/yjCMHmyjTFXMJY3ywSjDmIFtlKmKcTSJbZRhLMLFoExV1q7FhQvw8alc4WwnhrGIA/EQAsYyJ08iLQ2xsVAopJbCMHKEbZSpSm4u5szBzp0gQlgYPvkE3t5Sa2IYWcNno0xVeAw6w9QQ3o0yepw+jVGjcPkymjQBACJ07Yr//AfDhkmtjGHkC+9GGT1SU9GrV4WHAnBwQL9+OHtWUk0MI3fYRhmL8MMKwzwKtlFGD90YdIEYg961q6SaGEbusI0yeujGoJeWorwc777LY9AZ5pGwjTJV4THoDFNDOFLPMAxTJ3g3yjAMUyfYRhmGYeoE2yjDMEydYBtlGIapE2yjDMMwdYJtlGEYpk78P21AOLxfihUdAAAAAElFTkSuQmCC\n",
"text/plain": [
"<rdkit.Chem.rdchem.Mol at 0x7f8e719bb030>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"(2) < Cc1cc(-n2ncc(=O)[nH]c2=O)ccc1C(=O)c1ccc(C#N)cc1 >\n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"<rdkit.Chem.rdchem.Mol at 0x7f8e719bb0f0>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"(3) < Cc1cc(-n2ncc(=O)[nH]c2=O)cc(C)c1C(O)c1ccc(Cl)cc1 >\n"
]
},
{
"data": {
"image/png": "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\n",
"text/plain": [
"<rdkit.Chem.rdchem.Mol at 0x7f8e719bb1b0>"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"(4) < Cc1ccc(C(=O)c2ccc(-n3ncc(=O)[nH]c3=O)cc2)cc1 >\n"
]
}
],
"source": [
"\n",
"cpds = session.query(Mols)\n",
"from IPython.display import display\n",
"for row in cpds[:4]:\n",
" display(row.m)\n",
" print(row)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"cpds = session.query(Mols)\n",
"cpds = cpds.filter(Mols.m.hassubstruct('n1cccc2ccccc12')).filter(mol_amw(Mols.m) <= 350).filter(mol_amw(Mols.m) > 250)"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"hitrows = [row for row in cpds] #m, molregno as column"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"def mol2svg(mol):\n",
" d2d = rdMolDraw2D.MolDraw2DSVG(200, 100)\n",
" d2d.DrawMolecule(mol)\n",
" d2d.FinishDrawing()\n",
" return d2d.GetDrawingText()\n",
"\n",
"def mol2fp(mol, radi=2, nBits=1024):\n",
" arr = np.zeros((1,))\n",
" fp = AllChem.GetMorganFingerprintAsBitVect(mol, radi, nBits=nBits)\n",
" DataStructs.ConvertToNumpyArray(fp, arr)\n",
" return arr"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"mols = [row.m for row in hitrows[:400]]\n",
"ids = [row.molregno for row in hitrows[:400]]\n",
"molsvgs = [mol2svg(m) for m in mols]\n",
"fparrs = np.array([mol2fp(m) for m in mols], dtype=np.int32)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(400, 1024)"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"fparrs.shape"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"pca = PCA(n_components=2)"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [],
"source": [
"pca_res = pca.fit_transform(fparrs)"
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"data = dict(\n",
" x= pca_res[:,0],\n",
" y=pca_res[:,1],\n",
" ids = ids,\n",
" img = molsvgs\n",
")"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"TOOLTIPS = \"\"\"\n",
"<div>\n",
"ChEMBL-molregno: @ids<br>\n",
"@img{safe}\n",
"</div>\n",
"\"\"\""
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [],
"source": [
"source = ColumnDataSource(data)"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
" <div class=\"bk-root\" id=\"7fb3b849-36d7-4a26-8a52-68424d85ca33\" data-root-id=\"1105\"></div>\n"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"application/javascript": [
"(function(root) {\n",
" function embed_document(root) {\n",
" \n",
" var docs_json = {\"40d62439-d81c-44cb-a8b8-4d331737f934\":{\"roots\":{\"references\":[{\"attributes\":{\"below\":[{\"id\":\"1114\"}],\"center\":[{\"id\":\"1117\"},{\"id\":\"1121\"}],\"left\":[{\"id\":\"1118\"}],\"plot_height\":400,\"renderers\":[{\"id\":\"1141\"}],\"title\":{\"id\":\"1152\"},\"toolbar\":{\"id\":\"1130\"},\"x_range\":{\"id\":\"1106\"},\"x_scale\":{\"id\":\"1110\"},\"y_range\":{\"id\":\"1108\"},\"y_scale\":{\"id\":\"1112\"}},\"id\":\"1105\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"1112\",\"type\":\"LinearScale\"},{\"attributes\":{\"data_source\":{\"id\":\"1104\"},\"glyph\":{\"id\":\"1139\"},\"hover_glyph\":null,\"muted_glyph\":null,\"nonselection_glyph\":{\"id\":\"1140\"},\"selection_glyph\":null,\"view\":{\"id\":\"1142\"}},\"id\":\"1141\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"data\":{\"ids\":[237,241,246,14384,702,16403,1208,1348,1385,1446,1462,1479,1480,1490,1497,1500,1501,1512,1531,1563,1575,1572,1587,1589,1668,1704,1705,2295,2544,2635,2718,2809,2920,2951,2961,3186,3536,3584,3986,3790,3797,3944,5805,4021,4114,4139,4183,4263,4415,28278,5105,5661,5700,5745,5746,5757,5778,5779,5782,5786,5812,5813,5818,5842,5851,5860,5980,6043,6579,7472,7497,8193,8290,8428,8816,9546,13003,9857,10389,12187,10794,10894,11010,11035,11045,11075,11164,11177,11199,11448,11455,11457,14790,11474,11483,11499,11510,11513,11528,11529,11534,11576,11640,12079,12081,12087,12102,12126,12133,12134,12325,12143,12162,12164,12166,12199,12210,12215,12223,12250,12274,12275,12326,12303,12306,12307,12332,12333,12345,12352,12371,12372,12373,12376,12385,12386,12395,12461,12492,14387,14388,13413,14349,14133,14134,14135,14200,14201,14245,14246,14250,14261,14251,14253,14258,14269,14270,14283,14297,14304,14305,14363,14370,14371,14374,14398,14399,14439,14481,14487,14488,14492,14500,14502,14511,14512,14529,14560,14663,14699,14700,14701,14712,14714,14716,14726,14751,14782,14784,14793,14807,14814,14852,14875,14885,15302,15306,14937,15304,15328,15594,15141,15148,15155,15305,15313,15322,15323,15332,15337,15368,15369,15399,15420,15447,15462,15490,15498,15520,15523,15529,15538,15561,15584,15641,15709,15715,15753,15794,15987,15989,16072,16089,16101,16130,16215,16245,16317,16354,16355,16356,16363,16381,16402,16404,16423,16453,16460,17112,17203,17283,17255,17262,17271,18395,18637,18685,19657,18851,20260,20305,20345,20349,20390,20436,20489,20633,20822,20980,21014,21098,21139,21173,21194,21208,21210,21290,21306,21351,21426,21429,21441,21442,21480,21720,21760,21792,21793,21890,21894,21948,21988,21993,22162,22170,22210,22243,22251,22286,22304,22305,22357,22771,23353,23379,23380,23421,23443,23490,23492,23507,23519,24053,24088,24413,24460,24582,24575,24579,24624,24626,24627,24661,24666,24686,24819,24820,24821,25800,25801,25810,25811,25933,25995,25997,26026,26345,26686,27059,27060,27091,27092,27115,27116,27125,27126,27129,27139,27150,27166,27171,27247,27216,27273,27276,27355,27425,27387,27390,27422,27423,27424,27428,27472,27520,27525,27528,27649,27650,27651,27700,27703,27705,27723,27724,27734,27736,27755,27758,27773,27807,27815,27834,27841,27850,27862,27863,27864,27894,27977,28013,28014,28017,28033,28036,28046,28047,28050,28053,28055],\"img\":[\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 49.713,43.3477 L 61.6325,29.255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 49.713,43.3477 L 55.958,60.7167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 54.1235,44.7041 L 58.495,56.8623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 49.713,43.3477 L 31.5486,40.0716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 79.7969,32.5311 L 61.6325,29.255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 79.7969,32.5311 L 86.0419,49.9' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 84.2074,33.8875 L 88.5789,46.0457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 79.7969,32.5311 L 91.7163,18.4383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 63.3694,28.6305 L 60.7999,21.4841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 60.7999,21.4841 L 58.2304,14.3378' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 59.8956,29.8795 L 57.3261,22.7331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 57.3261,22.7331 L 54.7566,15.5868' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 71.4561,63.5119 L 63.707,62.1143' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 63.707,62.1143 L 55.958,60.7167' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 75.2285,67.0691 L 79.2613,78.2855' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 76.7243,60.9166 L 81.3831,55.4083' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 81.3831,55.4083 L 86.0419,49.9' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 86.0419,49.9 L 104.206,53.1762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 104.206,53.1762 L 116.126,39.0834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 103.176,48.6784 L 111.519,38.8135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 116.126,39.0834 L 109.881,21.7145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 116.126,39.0834 L 123.875,40.481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 123.875,40.481 L 131.624,41.8787' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 91.7163,18.4383 L 109.881,21.7145' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 93.7858,22.5626 L 106.501,24.8559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 135.396,45.4358 L 137.966,52.5822' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 137.966,52.5822 L 140.535,59.7285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 136.892,39.2833 L 141.551,33.7751' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 141.551,33.7751 L 146.21,28.2668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 33.2855,39.4471 L 30.716,32.3007' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 30.716,32.3007 L 28.1466,25.1544' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 29.8117,40.6961 L 27.2422,33.5497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 27.2422,33.5497 L 24.6728,26.4034' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 31.5486,40.0716 L 26.8898,45.5798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 26.8898,45.5798 L 22.231,51.0881' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 109.881,21.7145 L 114.712,16.002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 114.712,16.002 L 119.544,10.2895' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 168.017,51.9881 L 163.358,57.4964' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 163.358,57.4964 L 158.7,63.0047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 173.285,49.3928 L 181.034,50.7904' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 181.034,50.7904 L 188.783,52.188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 169.513,45.8356 L 166.944,38.6893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 166.944,38.6893 L 164.374,31.543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 77.7656,84.438 L 73.1068,89.9463' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 73.1068,89.9463 L 68.448,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 140.535,59.7285 L 158.7,63.0047' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 146.21,28.2668 L 164.374,31.543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='74.1224' y='64.9157' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='134.29' y='43.2825' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='170.619' y='49.8348' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='53.1296' y='12.8089' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='78.3163' y='82.2846' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='23.0457' y='23.6255' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='120.159' y='8.54458' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='21.887' y='55.0872' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 31.6821,23.8522 L 34.0739,30.7683' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 34.0739,30.7683 L 36.4656,37.6844' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 35.1229,36.5204 L 30.5867,41.7528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 30.5867,41.7528 L 26.0504,46.9853' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 37.8082,38.8484 L 33.272,44.0809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 33.272,44.0809 L 28.7357,49.3133' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 36.4656,37.6844 L 53.9133,41.0518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 53.9133,41.0518 L 59.7209,57.8456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 58.1432,42.4093 L 62.2086,54.165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 53.9133,41.0518 L 65.5534,27.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 59.7209,57.8456 L 67.1613,59.2816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 67.1613,59.2816 L 74.6017,60.7176' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 78.1928,64.1746 L 80.5846,71.0907' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 80.5846,71.0907 L 82.9763,78.0068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 79.7356,58.2521 L 84.2722,53.0193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 84.2722,53.0193 L 88.8087,47.7865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 82.9763,78.0068 L 96.4028,89.6469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 82.9763,78.0068 L 79.6089,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 96.4028,89.6469 L 79.6089,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 88.8087,47.7865 L 106.256,51.1539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 92.0994,44.8021 L 104.313,47.1592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 88.8087,47.7865 L 83.0011,30.9927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 106.256,51.1539 L 117.897,37.7274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 117.897,37.7274 L 125.337,39.1634' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 125.337,39.1634 L 132.777,40.5993' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 117.897,37.7274 L 112.089,20.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 113.667,36.3698 L 109.601,24.6142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 136.368,44.0564 L 138.76,50.9725' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 138.76,50.9725 L 141.152,57.8886' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 137.911,38.1338 L 142.448,32.9011' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 142.448,32.9011 L 146.984,27.6683' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 141.152,57.8886 L 158.6,61.256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 158.6,61.256 L 163.136,56.0232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 163.136,56.0232 L 167.673,50.7904' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 169.215,44.8679 L 166.824,37.9518' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 166.824,37.9518 L 164.432,31.0356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 164.432,31.0356 L 146.984,27.6683' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 112.089,20.9335 L 116.823,15.4732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 116.823,15.4732 L 121.557,10.0128' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 112.089,20.9335 L 94.6412,17.5662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 94.6412,17.5662 L 83.0011,30.9927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 95.5805,21.9082 L 87.4324,31.3067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 83.0011,30.9927 L 65.5534,27.6253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 67.2328,27.0445 L 64.841,20.1284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 64.841,20.1284 L 62.4493,13.2123' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 63.874,28.2061 L 61.4823,21.29' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 61.4823,21.29 L 59.0905,14.3738' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='28.4842' y='21.7791' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='26.9993' y='51.9994' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='77.1686' y='62.1015' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='135.344' y='41.9832' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='168.265' y='48.718' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='122.149' y='8.39555' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='57.572' y='11.7199' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-6' d='M 121.795,60.5723 L 115.873,78.3282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 121.795,60.5723 L 109.379,46.5656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 117.131,60.9545 L 108.44,51.1498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 121.795,60.5723 L 129.612,58.9741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 129.612,58.9741 L 137.429,57.3759' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 115.873,78.3282 L 97.5345,82.0775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 112.372,75.223 L 99.5354,77.8475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 115.873,78.3282 L 120.937,84.0409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 120.937,84.0409 L 126.001,89.7536' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 97.5345,82.0775 L 85.1185,68.0708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 109.379,46.5656 L 91.0406,50.3148' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 91.0406,50.3148 L 86.1846,44.8366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 86.1846,44.8366 L 81.3285,39.3584' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 91.0406,50.3148 L 85.1185,68.0708' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 93.7035,54.1626 L 89.558,66.5918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 85.1185,68.0708 L 66.7803,71.82' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 65.0047,71.2278 L 62.5639,78.546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 62.5639,78.546 L 60.123,85.8642' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 68.5559,72.4122 L 66.1151,79.7304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 66.1151,79.7304 L 63.6742,87.0486' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 66.7803,71.82 L 54.3643,57.8133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 54.3643,57.8133 L 36.0261,61.5625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 54.3643,57.8133 L 60.2864,40.0574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 58.8038,56.3343 L 62.9493,43.9052' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 60.2864,40.0574 L 68.1036,38.4591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 68.1036,38.4591 L 75.9207,36.8609' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 79.6651,33.1885 L 82.1059,25.8703' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 82.1059,25.8703 L 84.5468,18.5522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 84.5468,18.5522 L 72.1307,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 36.0261,61.5625 L 31.2007,56.119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 31.2007,56.119 L 26.3754,50.6754' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 34.2505,60.9703 L 31.8097,68.2885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 31.8097,68.2885 L 29.3688,75.6067' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 37.8017,62.1548 L 35.3608,69.4729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 35.3608,69.4729 L 32.92,76.7911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 142.837,59.8734 L 147.693,65.3516' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 147.693,65.3516 L 152.549,70.8298' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 141.173,53.7035 L 143.614,46.3853' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 143.614,46.3853 L 146.055,39.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 152.549,70.8298 L 170.887,67.0805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 170.887,67.0805 L 173.328,59.7624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 173.328,59.7624 L 175.769,52.4442' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 174.105,46.2743 L 169.249,40.7961' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 169.249,40.7961 L 164.393,35.3179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 164.393,35.3179 L 146.055,39.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='78.6246' y='37.244' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='58.5684' y='90.5118' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='25.8998' y='48.4917' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='27.8142' y='80.2544' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='126.624' y='93.2708' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='140.133' y='57.7589' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='174.729' y='50.2605' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 94.799,46.5696 L 98.9697,40.0782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 98.9697,40.0782 L 103.14,33.5868' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 99.2882,46.7026 L 102.208,42.1586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 102.208,42.1586 L 105.127,37.6147' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 94.799,46.5696 L 103.619,63.6731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 94.799,46.5696 L 75.577,45.6563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 107.981,30.5117 L 116.202,30.9023' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 116.202,30.9023 L 124.423,31.2929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 103.619,63.6731 L 122.841,64.5864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 106.685,59.9657 L 120.14,60.605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 133.243,48.3964 L 122.841,64.5864' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 133.243,48.3964 L 152.465,49.3097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 136.309,44.689 L 149.764,45.3283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 133.243,48.3964 L 124.423,31.2929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 122.841,64.5864 L 126.424,71.5345' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 126.424,71.5345 L 130.007,78.4826' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.423,31.2929 L 134.825,15.1028' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 129.221,30.9448 L 136.503,19.6118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 75.577,45.6563 L 66.757,28.5528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 70.8333,44.8548 L 64.6593,32.8824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 75.577,45.6563 L 65.175,61.8464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 152.465,49.3097 L 162.867,33.1196' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 134.825,15.1028 L 154.047,16.0162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 66.757,28.5528 L 47.5349,27.6395' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 65.175,61.8464 L 45.953,60.933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 62.4743,57.865 L 49.0189,57.2256' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 162.867,33.1196 L 170.98,33.5052' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 170.98,33.5052 L 179.094,33.8907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 162.867,33.1196 L 154.047,16.0162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 158.123,32.3181 L 151.949,20.3457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 37.1329,43.8296 L 45.953,60.933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 37.1329,43.8296 L 29.0197,43.4441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 29.0197,43.4441 L 20.9064,43.0585' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 37.1329,43.8296 L 47.5349,27.6395' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 41.9313,43.4815 L 49.2127,32.1484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 183.743,37.2403 L 187.326,44.1884' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 187.326,44.1884 L 190.909,51.1364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 16.257,39.7089 L 12.6739,32.7608' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 12.6739,32.7608 L 9.09091,25.8128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='107.339' y='31.3417' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='129.307' y='82.6521' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='179.735' y='34.9952' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='20.265' y='43.8784' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 86.207,63.2642 L 91.9892,68.3859' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 91.9892,68.3859 L 97.7714,73.5076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 80.6763,61.7382 L 72.9803,64.3082' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 72.9803,64.3082 L 65.2843,66.8782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 84.0927,57.6242 L 85.6809,49.8413' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 85.6809,49.8413 L 87.2691,42.0583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 97.7714,73.5076 L 105.36,70.9734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 105.36,70.9734 L 112.949,68.4392' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 95.8957,73.1249 L 94.3075,80.9078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 94.3075,80.9078 L 92.7193,88.6908' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 99.647,73.8904 L 98.0588,81.6733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 98.0588,81.6733 L 96.4706,89.4563' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 65.2843,66.8782 L 50.9545,54.1853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 63.4087,66.4955 L 61.8205,74.2784' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 61.8205,74.2784 L 60.2322,82.0614' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 67.16,67.261 L 65.5717,75.0439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 65.5717,75.0439 L 63.9835,82.8269' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 87.2691,42.0583 L 105.426,35.9948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 88.78,37.5173 L 101.49,33.2729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 87.2691,42.0583 L 72.9393,29.3654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 105.426,35.9948 L 109.254,17.2384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 105.426,35.9948 L 119.756,48.6877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 50.9545,54.1853 L 54.782,35.4289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 55.2799,52.1373 L 57.9592,39.0078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 72.9393,29.3654 L 54.782,35.4289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 72.9393,29.3654 L 76.7668,10.609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 77.2647,27.3174 L 79.944,14.1879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 54.782,35.4289 L 40.4522,22.736' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 109.254,17.2384 L 116.843,14.7042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 116.843,14.7042 L 124.431,12.17' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 109.254,17.2384 L 94.9241,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 104.566,18.2004 L 94.535,9.31535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 119.756,48.6877 L 137.913,42.6242' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 121.267,44.1467 L 133.977,39.9023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 130.391,13.8143 L 136.066,18.841' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 136.066,18.841 L 141.741,23.8678' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 118.909,70.0836 L 124.583,75.1103' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 124.583,75.1103 L 130.258,80.137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 137.913,42.6242 L 141.741,23.8678' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 141.741,23.8678 L 151.753,7.55159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 141.741,23.8678 L 159.548,30.8941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 76.7668,10.609 L 94.9241,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 130.258,80.137 L 142.951,65.8073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 130.258,80.137 L 117.566,94.4668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 130.258,80.137 L 144.588,92.83' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='83.4416' y='61.7719' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='127.411' y='12.132' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='115.929' y='68.4013' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='91.6022' y='93.2212' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='59.1151' y='86.5918' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 80.4364,40.9717 L 81.4111,47.1745' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 81.4111,47.1745 L 82.3858,53.3773' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 83.7135,42.3636 L 84.3958,46.7055' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 84.3958,46.7055 L 85.0781,51.0475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 82.223,36.6912 L 87.0076,32.8263' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 87.0076,32.8263 L 91.7922,28.9614' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 82.3858,53.3773 L 96.4824,58.8081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 82.3858,53.3773 L 70.6344,62.8699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 96.4824,58.8081 L 108.234,49.3155' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 96.3466,55.0339 L 104.573,48.3891' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 108.234,49.3155 L 105.889,34.3922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 108.234,49.3155 L 114.106,51.5779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 114.106,51.5779 L 119.979,53.8404' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 91.7922,28.9614 L 105.889,34.3922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 92.8205,32.5953 L 102.688,36.3969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 91.7922,28.9614 L 89.4471,14.038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 105.889,34.3922 L 117.64,24.8996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 70.6344,62.8699 L 56.5378,57.4392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 67.4337,64.8746 L 57.5661,61.0731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 70.6344,62.8699 L 72.9794,77.7933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 122.726,57.264 L 123.701,63.4668' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 123.701,63.4668 L 124.675,69.6696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 117.64,24.8996 L 115.295,9.97622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 114.304,23.1301 L 112.662,12.6837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 89.4471,14.038 L 101.199,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 93.1083,14.9644 L 101.334,8.31963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 56.5378,57.4392 L 44.7863,66.9317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 72.9794,77.7933 L 61.228,87.2859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 69.3182,76.8669 L 61.0922,83.5117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 124.675,69.6696 L 138.772,75.1004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 138.772,75.1004 L 141.117,90.0238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 141.117,90.0238 L 155.214,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 115.295,9.97622 L 101.199,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 61.228,87.2859 L 47.1314,81.8551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 44.7863,66.9317 L 47.1314,81.8551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 48.1228,68.7012 L 49.7643,79.1476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='81.7194' y='39.2093' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='120.482' y='55.5016' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 130.917,54.0546 L 129.229,31.3273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 130.917,54.0546 L 151.444,63.9564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 130.917,54.0546 L 112.079,66.88' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 125.526,52.2107 L 112.339,61.1885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 129.229,31.3273 L 120.612,27.1704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 120.612,27.1704 L 111.995,23.0136' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 124.664,34.1855 L 118.632,31.2757' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 118.632,31.2757 L 112.6,28.3659' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 129.229,31.3273 L 137.002,26.0352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 137.002,26.0352 L 144.776,20.7432' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 105.411,23.6668 L 97.6376,28.9589' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 97.6376,28.9589 L 89.8645,34.2509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 151.444,63.9564 L 159.217,58.6643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 159.217,58.6643 L 166.99,53.3723' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 151.21,58.6011 L 156.652,54.8967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 156.652,54.8967 L 162.093,51.1922' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 151.444,63.9564 L 152.147,73.4209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 152.147,73.4209 L 152.849,82.8853' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 170,47.3326 L 169.297,37.8681' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 169.297,37.8681 L 168.594,28.4037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 112.079,66.88 L 91.5524,56.9782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 89.8645,34.2509 L 91.5524,56.9782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 85.5722,37.9976 L 86.7538,53.9067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 89.8645,34.2509 L 69.3381,24.3491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 151.36,20.09 L 159.977,24.2468' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 159.977,24.2468 L 168.594,28.4037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 151.965,25.4423 L 157.997,28.3521' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 157.997,28.3521 L 164.029,31.2619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 91.5524,56.9782 L 72.714,69.8036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 69.3381,24.3491 L 50.4997,37.1745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 69.0774,30.0406 L 55.8905,39.0184' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 50.4997,37.1745 L 52.1877,59.9018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 50.4997,37.1745 L 42.0103,33.0793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 42.0103,33.0793 L 33.5208,28.984' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 52.1877,59.9018 L 72.714,69.8036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 57.247,57.2818 L 71.6154,64.2131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 52.1877,59.9018 L 44.5422,65.1069' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 44.5422,65.1069 L 36.8968,70.3121' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 29.6912,23.4744 L 28.9883,14.0099' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 28.9883,14.0099 L 28.2854,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 33.6313,76.5256 L 34.3343,85.9901' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 34.3343,85.9901 L 35.0372,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='108.703' y='22.565' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='167.75' y='52.2704' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='148.068' y='19.6413' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='150.344' y='87.8231' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='32.7612' y='28.4122' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='36.1371' y='73.8668' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 142.443,53.3407 L 123.706,46.9774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 140.905,48.6389 L 127.789,44.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 142.443,53.3407 L 146.3,72.7487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 142.443,53.3407 L 157.322,40.296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 123.706,46.9774 L 119.849,27.5695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 123.706,46.9774 L 108.827,60.0221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 119.849,27.5695 L 101.112,21.2062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 119.849,27.5695 L 125.859,22.3002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 125.859,22.3002 L 131.869,17.0309' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 124.261,28.9645 L 128.468,25.276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 128.468,25.276 L 132.675,21.5875' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 146.3,72.7487 L 147.901,80.8037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.901,80.8037 L 149.502,88.8587' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 146.3,72.7487 L 154.795,71.0603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 154.795,71.0603 L 163.289,69.3719' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 146.3,72.7487 L 137.806,74.437' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 137.806,74.437 L 129.311,76.1254' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 70.3551,28.8584 L 78.2941,31.5546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 78.2941,31.5546 L 86.2332,34.2509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 64.6382,30.3937 L 58.6279,35.663' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 58.6279,35.663 L 52.6176,40.9323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 137.586,15.4956 L 145.525,18.1918' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 145.525,18.1918 L 153.464,20.8881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 86.2332,34.2509 L 90.0907,53.6588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 86.2332,34.2509 L 101.112,21.2062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 91.074,35.27 L 101.489,26.1387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 153.464,20.8881 L 157.322,40.296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 150.161,24.5708 L 152.862,38.1563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 153.464,20.8881 L 159.364,15.7159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 159.364,15.7159 L 165.263,10.5438' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 90.0907,53.6588 L 108.827,60.0221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 94.1738,50.866 L 107.289,55.3203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 90.0907,53.6588 L 75.2116,66.7035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 52.6176,40.9323 L 56.4751,60.3402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 52.6176,40.9323 L 34.5174,32.6953 L 33.2447,36.4426 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 75.2116,66.7035 L 56.4751,60.3402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 56.4751,60.3402 L 40.2916,71.897 L 42.9005,74.8728 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 33.8811,34.569 L 30.0236,15.161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 41.5961,73.3849 L 22.8595,67.0216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='67.4966' y='28.877' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.2977' y='22.2811' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='134.728' y='15.5142' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='165.923' y='8.83277' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='148.398' y='93.146' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='163.949' y='69.8805' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='128.652' y='77.5955' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 133.877,51.3793 L 115.467,42.5898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 132.873,46.379 L 119.987,40.2264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 133.877,51.3793 L 135.469,71.7169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 133.877,51.3793 L 150.693,39.8312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 115.467,42.5898 L 113.875,22.2522' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 115.467,42.5898 L 98.6507,54.1379' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 113.875,22.2522 L 95.4653,13.4627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 113.875,22.2522 L 120.809,17.49' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 120.809,17.49 L 127.744,12.7277' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 118.265,24.1868 L 123.119,20.8533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 123.119,20.8533 L 127.973,17.5197' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 78.6488,25.0108 L 80.2415,45.3484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 78.6488,25.0108 L 70.9176,21.3195' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 70.9176,21.3195 L 63.1864,17.6283' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 78.6488,25.0108 L 95.4653,13.4627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 83.4809,26.6419 L 95.2525,18.5582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 135.469,71.7169 L 136.132,80.1858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 136.132,80.1858 L 136.796,88.6546' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 135.469,71.7169 L 144.391,71.0182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 144.391,71.0182 L 153.313,70.3195' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 135.469,71.7169 L 126.547,72.4156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 126.547,72.4156 L 117.625,73.1143' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.638,12.1111 L 141.369,15.8023' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 141.369,15.8023 L 149.1,19.4936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 80.2415,45.3484 L 98.6507,54.1379' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 84.7607,42.985 L 97.6472,49.1376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 80.2415,45.3484 L 63.4249,56.8965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 57.2926,18.245 L 50.3578,23.0072' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 50.3578,23.0072 L 43.423,27.7694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 149.1,19.4936 L 150.693,39.8312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 145.272,22.8627 L 146.387,37.0991' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.1,19.4936 L 155.921,14.8098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.921,14.8098 L 162.741,10.1261' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 63.4249,56.8965 L 45.0157,48.107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 63.4249,56.8965 L 62.9838,77.3934 L 67.0514,77.0749 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-12' d='M 43.423,27.7694 L 45.0157,48.107' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 43.423,27.7694 L 25.8927,17.139 L 24.1348,20.8208 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 65.0176,77.2342 L 48.201,88.7823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.691' y='11.724' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='60.2395' y='17.2413' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='57.9726' y='10.4413' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='163.421' y='8.96543' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='135.248' y='93.0746' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='153.993' y='71.1442' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='116.945' y='74.3296' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 149.904,52.2413 L 131.349,44.5168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 148.666,47.3716 L 135.677,41.9644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 149.904,52.2413 L 152.492,72.173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 149.904,52.2413 L 165.872,40.0342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 131.349,44.5168 L 128.761,24.5851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 131.349,44.5168 L 115.382,56.7239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 128.761,24.5851 L 110.206,16.8605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 128.761,24.5851 L 135.293,19.5914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 135.293,19.5914 L 141.825,14.5976' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 133.162,26.2804 L 137.734,22.7848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 137.734,22.7848 L 142.307,19.2892' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 152.492,72.173 L 153.569,80.4639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 153.569,80.4639 L 154.645,88.7549' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 152.492,72.173 L 161.23,71.0385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 161.23,71.0385 L 169.967,69.904' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 152.492,72.173 L 143.755,73.3075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 143.755,73.3075 L 135.018,74.442' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 78.5863,22.5519 L 86.4122,25.8098' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 86.4122,25.8098 L 94.2382,29.0677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 72.7793,23.5629 L 66.2474,28.5566' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 66.2474,28.5566 L 59.7155,33.5503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 147.632,13.5866 L 155.458,16.8445' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 155.458,16.8445 L 163.284,20.1025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 94.2382,29.0677 L 96.8262,48.9994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 94.2382,29.0677 L 110.206,16.8605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 99.0747,30.4301 L 110.252,21.8851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 163.284,20.1025 L 165.872,40.0342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 159.685,23.6098 L 161.497,37.562' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 163.284,20.1025 L 169.703,15.1948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 169.703,15.1948 L 176.122,10.2872' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 96.8262,48.9994 L 115.382,56.7239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 101.154,46.447 L 114.143,51.8542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 96.8262,48.9994 L 80.8589,61.2066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 59.7155,33.5503 L 62.3035,53.482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 59.7155,33.5503 L 41.9325,23.9703 L 40.3876,27.6813 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 80.8589,61.2066 L 62.3035,53.482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 60.5847,54.5431 L 60.8289,54.8624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 58.8659,55.6041 L 59.3542,56.2428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 57.1471,56.6652 L 57.8795,57.6232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 55.4283,57.7262 L 56.4049,59.0036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 53.7095,58.7873 L 54.9302,60.384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.9907,59.8483 L 53.4556,61.7644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 50.2719,60.9093 L 51.9809,63.1448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 48.5531,61.9704 L 50.5062,64.5252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 46.8343,63.0314 L 49.0316,65.9055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 45.1155,64.0925 L 47.5569,67.2859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 41.1601,25.8258 L 38.572,5.89411' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 46.3362,65.6892 L 27.7808,57.9647' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 27.7808,57.9647 L 11.8135,70.1718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='75.6828' y='22.3481' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='73.4493' y='15.6485' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='144.728' y='13.3829' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='176.792' y='8.90024' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='153.293' y='93.1097' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='170.637' y='70.5899' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='134.348' y='75.766' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 136.189,52.8582 L 117.532,45.8971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 134.783,48.0825 L 121.722,43.2098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 136.189,52.8582 L 139.49,72.4969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 136.189,52.8582 L 151.547,40.1807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 117.532,45.8971 L 114.231,26.2585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 117.532,45.8971 L 102.174,58.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 114.231,26.2585 L 95.5733,19.2974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.231,26.2585 L 120.471,21.1071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 120.471,21.1071 L 126.712,15.9557' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 118.639,27.7845 L 123.007,24.1786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 123.007,24.1786 L 127.375,20.5726' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 139.49,72.4969 L 140.861,80.6567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 140.861,80.6567 L 142.232,88.8165' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 139.49,72.4969 L 148.092,71.0512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 148.092,71.0512 L 156.694,69.6056' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 139.49,72.4969 L 130.888,73.9425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 130.888,73.9425 L 122.286,75.3882' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 64.4349,26.0872 L 72.3254,29.0311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 72.3254,29.0311 L 80.216,31.975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 58.6814,27.3886 L 52.4411,32.54' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 52.4411,32.54 L 46.2008,37.6914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 132.465,14.6542 L 140.356,17.5981' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 140.356,17.5981 L 148.246,20.542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 80.216,31.975 L 83.5164,51.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 80.216,31.975 L 95.5733,19.2974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 85.0551,33.1448 L 95.8052,24.2705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 148.246,20.542 L 151.547,40.1807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 144.814,24.1479 L 147.124,37.895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 148.246,20.542 L 154.375,15.4827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 154.375,15.4827 L 160.504,10.4234' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 83.5164,51.6136 L 102.174,58.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.7073,48.9262 L 100.768,53.799' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 83.5164,51.6136 L 68.159,64.2912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 46.2008,37.6914 L 49.5012,57.3301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 46.2008,37.6914 L 28.2392,28.8646 L 26.8469,32.5961 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 68.159,64.2912 L 49.5012,57.3301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 49.5012,57.3301 L 32.8761,68.4719 L 35.4116,71.5434 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='61.5582' y='26.0096' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='59.3452' y='19.3716' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='129.588' y='14.5766' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.168' y='8.86016' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='141.019' y='93.1312' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='157.358' y='70.1922' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='121.622' y='76.793' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 141.873,52.145 L 123.334,44.3014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 140.661,47.2606 L 127.684,41.7701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 141.873,52.145 L 144.35,72.1223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 141.873,52.145 L 157.936,40.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 123.334,44.3014 L 120.857,24.3242' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 123.334,44.3014 L 107.272,56.435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 120.857,24.3242 L 102.318,16.4806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 120.857,24.3242 L 127.434,19.3557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 127.434,19.3557 L 134.012,14.3872' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.257,26.0461 L 129.861,22.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 129.861,22.5682 L 134.465,19.0902' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 144.35,72.1223 L 145.381,80.4334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 145.381,80.4334 L 146.411,88.7445' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 144.35,72.1223 L 153.108,71.0364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 153.108,71.0364 L 161.867,69.9505' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 144.35,72.1223 L 135.592,73.2081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 135.592,73.2081 L 126.834,74.294' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 70.6244,22.0009 L 78.44,25.3075' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 78.44,25.3075 L 86.2557,28.6142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 64.8085,22.9673 L 58.2313,27.9357' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 58.2313,27.9357 L 51.6541,32.9042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 139.828,13.4208 L 147.643,16.7275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 147.643,16.7275 L 155.459,20.0341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 86.2557,28.6142 L 88.7325,48.5914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 86.2557,28.6142 L 102.318,16.4806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 91.0917,30.0066 L 102.335,21.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 155.459,20.0341 L 157.936,40.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 151.835,23.5261 L 153.569,37.5102' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.459,20.0341 L 161.923,15.1508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 161.923,15.1508 L 168.388,10.2676' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 88.7325,48.5914 L 107.272,56.435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 93.0821,46.0601 L 106.06,51.5507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 88.7325,48.5914 L 72.6701,60.7251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 51.6541,32.9042 L 54.1309,52.8815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.6541,32.9042 L 33.8992,23.2067 L 32.3305,26.9145 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 72.6701,60.7251 L 54.1309,52.8815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 54.1309,52.8815 L 36.8552,63.4089 L 39.2819,66.6213 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 38.0685,65.0151 L 19.5293,57.1715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='67.7164' y='21.7771' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.4795' y='15.067' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='136.92' y='13.197' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='169.059' y='8.907' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='145.037' y='93.106' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='162.538' y='70.6519' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='126.163' y='75.6056' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 141.873,52.145 L 123.334,44.3014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 140.661,47.2606 L 127.684,41.7701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 141.873,52.145 L 144.35,72.1223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 141.873,52.145 L 157.936,40.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 123.334,44.3014 L 120.857,24.3242' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 123.334,44.3014 L 107.272,56.435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 120.857,24.3242 L 102.318,16.4806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 120.857,24.3242 L 127.434,19.3557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 127.434,19.3557 L 134.012,14.3872' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.257,26.0461 L 129.861,22.5682' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 129.861,22.5682 L 134.465,19.0902' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 144.35,72.1223 L 145.381,80.4334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 145.381,80.4334 L 146.411,88.7445' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 144.35,72.1223 L 153.108,71.0364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 153.108,71.0364 L 161.867,69.9505' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 144.35,72.1223 L 135.592,73.2081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 135.592,73.2081 L 126.834,74.294' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 70.6244,22.0009 L 78.44,25.3075' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 78.44,25.3075 L 86.2557,28.6142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 64.8085,22.9673 L 58.2313,27.9357' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 58.2313,27.9357 L 51.6541,32.9042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 139.828,13.4208 L 147.643,16.7275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 147.643,16.7275 L 155.459,20.0341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 86.2557,28.6142 L 88.7325,48.5914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 86.2557,28.6142 L 102.318,16.4806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 91.0917,30.0066 L 102.335,21.5131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 155.459,20.0341 L 157.936,40.0114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 151.835,23.5261 L 153.569,37.5102' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.459,20.0341 L 161.923,15.1508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 161.923,15.1508 L 168.388,10.2676' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 88.7325,48.5914 L 107.272,56.435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 93.0821,46.0601 L 106.06,51.5507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 88.7325,48.5914 L 72.6701,60.7251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 51.6541,32.9042 L 54.1309,52.8815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.6541,32.9042 L 33.8992,23.2067 L 32.3305,26.9145 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 72.6701,60.7251 L 54.1309,52.8815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 52.4033,53.9342 L 52.646,54.2555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 50.6758,54.9869 L 51.1611,55.6294' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 48.9482,56.0397 L 49.6762,57.0034' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 47.2206,57.0924 L 48.1913,58.3774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 45.493,58.1452 L 46.7064,59.7514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 43.7655,59.1979 L 45.2215,61.1254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 42.0379,60.2506 L 43.7366,62.4994' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 40.3103,61.3034 L 42.2517,63.8734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 38.5827,62.3561 L 40.7668,65.2474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 36.8552,63.4089 L 39.2819,66.6213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 38.0685,65.0151 L 19.5293,57.1715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='67.7164' y='21.7771' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.4795' y='15.067' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='136.92' y='13.197' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='169.059' y='8.907' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='145.037' y='93.106' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='162.538' y='70.6519' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='126.163' y='75.6056' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 54.2493,45.1941 L 73.2177,49.7377' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 56.1859,49.6694 L 69.4637,52.8499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 54.2493,45.1941 L 48.7,26.4952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 54.2493,45.1941 L 40.8302,59.3495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 73.2177,49.7377 L 78.7671,68.4366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 73.2177,49.7377 L 86.6368,35.5824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 78.7671,68.4366 L 97.7355,72.9802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 78.7671,68.4366 L 73.4664,74.0282' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 73.4664,74.0282 L 68.1656,79.6197' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 74.3458,67.4303 L 70.6353,71.3444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 70.6353,71.3444 L 66.9248,75.2585' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 48.7,26.4952 L 46.4077,18.7712' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.4077,18.7712 L 44.1154,11.0471' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 48.7,26.4952 L 40.5427,28.9161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 40.5427,28.9161 L 32.3855,31.3369' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 48.7,26.4952 L 56.8572,24.0744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 56.8572,24.0744 L 65.0144,21.6535' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 127.305,62.6936 L 119.23,60.7592' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 119.23,60.7592 L 111.155,58.8249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 132.941,60.3962 L 138.241,54.8047' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 138.241,54.8047 L 143.542,49.2132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 62.5304,81.917 L 54.455,79.9827' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 54.455,79.9827 L 46.3796,78.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 111.155,58.8249 L 105.605,40.126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 111.155,58.8249 L 97.7355,72.9802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 106.311,58.2644 L 96.9173,68.1731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 46.3796,78.0484 L 40.8302,59.3495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 49.287,74.1337 L 45.4024,61.0444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 46.3796,78.0484 L 41.1881,83.5247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 41.1881,83.5247 L 35.9967,89.0009' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 86.6368,35.5824 L 105.605,40.126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 88.5733,40.0576 L 101.851,43.2381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 105.605,40.126 L 119.024,25.9706' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 143.542,49.2132 L 137.993,30.5142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 143.542,49.2132 L 162.056,55.6536 L 162.965,51.8599 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-14' d='M 119.024,25.9706 L 137.993,30.5142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 162.51,53.7567 L 168.06,72.4557' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 162.51,53.7567 L 175.93,39.6014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.123' y='64.3437' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='127.955' y='70.8454' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='65.348' y='83.5672' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='35.3465' y='93.179' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='41.4163' y='8.77154' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='31.7354' y='33.0198' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.6646' y='21.9211' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 136.692,53.1845 L 117.981,46.6277' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 135.197,48.4588 L 122.099,43.869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 136.692,53.1845 L 140.369,72.6673' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 136.692,53.1845 L 151.726,40.2586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 117.981,46.6277 L 114.304,27.1449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 117.981,46.6277 L 102.947,59.5536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 114.304,27.1449 L 95.5927,20.588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.304,27.1449 L 120.389,21.9132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 120.389,21.9132 L 126.474,16.6815' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 118.715,28.5822 L 122.974,24.92' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 122.974,24.92 L 127.233,21.2578' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 80.5587,33.514 L 84.2359,52.9967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 80.5587,33.514 L 72.6352,30.7374' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 72.6352,30.7374 L 64.7117,27.9608' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 80.5587,33.514 L 95.5927,20.588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 85.399,34.5819 L 95.9228,25.5337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 140.369,72.6673 L 141.896,80.7565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 141.896,80.7565 L 143.423,88.8456' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 140.369,72.6673 L 148.899,71.0575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 148.899,71.0575 L 157.428,69.4476' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 140.369,72.6673 L 131.84,74.2772' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 131.84,74.2772 L 123.31,75.887' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 132.202,15.2226 L 140.126,17.9992' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 140.126,17.9992 L 148.049,20.7758' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 84.2359,52.9967 L 102.947,59.5536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 88.354,50.238 L 101.452,54.8278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 84.2359,52.9967 L 69.2019,65.9227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 58.9834,29.4196 L 52.8985,34.6513' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 52.8985,34.6513 L 46.8136,39.883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 148.049,20.7758 L 151.726,40.2586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 144.704,24.4337 L 147.278,38.0716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 148.049,20.7758 L 154.023,15.6396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 154.023,15.6396 L 159.997,10.5034' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 69.2019,65.9227 L 50.4908,59.3658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 69.2019,65.9227 L 70.9308,85.7732 L 74.8274,85.0377 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-12' d='M 46.8136,39.883 L 50.4908,59.3658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 46.8136,39.883 L 28.7581,31.4551 L 27.4467,35.1973 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='129.338' y='15.2103' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='61.8476' y='27.9484' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='59.6443' y='21.3395' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='160.658' y='8.84125' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='142.284' y='93.1414' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='158.089' y='69.9815' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='122.65' y='77.3358' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 135.414,52.3586 L 116.839,44.7792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 134.144,47.5067 L 121.141,42.2011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 135.414,52.3586 L 138.138,72.2348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 135.414,52.3586 L 151.265,40.0619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 116.839,44.7792 L 114.115,24.9031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 116.839,44.7792 L 100.988,57.0759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 114.115,24.9031 L 95.5405,17.3237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 114.115,24.9031 L 120.592,19.8788' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 120.592,19.8788 L 127.069,14.8546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 118.518,26.5661 L 123.051,23.0491' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 123.051,23.0491 L 127.585,19.5321' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 138.138,72.2348 L 139.27,80.501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 139.27,80.501 L 140.403,88.7673' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 138.138,72.2348 L 146.849,71.041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 146.849,71.041 L 155.561,69.8473' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 138.138,72.2348 L 129.426,73.4285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 129.426,73.4285 L 120.714,74.6222' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 64.0121,23.2235 L 71.8505,26.4219' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 71.8505,26.4219 L 79.689,29.6204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 58.2159,24.2891 L 51.7392,29.3134' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 51.7392,29.3134 L 45.2625,34.3376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 132.865,13.7889 L 140.703,16.9874' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 140.703,16.9874 L 148.542,20.1858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 79.689,29.6204 L 82.4125,49.4965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 79.689,29.6204 L 95.5405,17.3237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 84.5261,30.9461 L 95.6221,22.3385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 148.542,20.1858 L 151.265,40.0619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 144.975,23.7119 L 146.882,37.6252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 148.542,20.1858 L 154.906,15.2487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 154.906,15.2487 L 161.271,10.3117' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 82.4125,49.4965 L 100.988,57.0759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 86.7147,46.9184 L 99.7172,52.224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 82.4125,49.4965 L 66.561,61.7932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 47.986,54.2138 L 66.561,61.7932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 47.986,54.2138 L 45.2625,34.3376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 47.986,54.2138 L 43.7473,73.8227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 47.986,54.2138 L 27.9389,53.4445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 45.2625,34.3376 L 27.4455,24.9007 L 25.9296,28.6157 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='61.114' y='23.044' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='58.8846' y='16.3567' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='129.967' y='13.6095' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.939' y='8.89219' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='139.077' y='93.114' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='156.23' y='70.5143' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='120.045' y='75.9614' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 140.677,54.2056 L 121.802,48.9157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 138.903,49.6371 L 125.691,45.9342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 140.677,54.2056 L 145.533,73.1966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 140.677,54.2056 L 154.695,40.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 121.802,48.9157 L 116.946,29.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 121.802,48.9157 L 107.783,62.6168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 116.946,29.9247 L 98.0708,24.6348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 116.946,29.9247 L 122.539,24.4579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 122.539,24.4579 L 128.132,18.9912' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 121.364,31.0884 L 125.279,27.2617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.279,27.2617 L 129.195,23.4349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 145.533,73.1966 L 147.543,81.0585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.543,81.0585 L 149.553,88.9205' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 145.533,73.1966 L 153.83,71.0748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 153.83,71.0748 L 162.127,68.9531' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 145.533,73.1966 L 137.235,75.3183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 137.235,75.3183 L 128.938,77.44' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 68.0091,33.8396 L 76.0307,36.0877' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 76.0307,36.0877 L 84.0522,38.3359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 62.3458,35.8135 L 56.7523,41.2803' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 56.7523,41.2803 L 51.1589,46.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.796,17.0172 L 141.817,19.2654' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 141.817,19.2654 L 149.839,21.5135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 84.0522,38.3359 L 88.9084,57.3269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 84.0522,38.3359 L 98.0708,24.6348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 88.8952,39.0844 L 98.7082,29.4937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 149.839,21.5135 L 154.695,40.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 146.769,25.3334 L 150.168,38.6271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.839,21.5135 L 155.323,16.1541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.323,16.1541 L 160.806,10.7947' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 88.9084,57.3269 L 107.783,62.6168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 92.7976,54.3454 L 106.01,58.0483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 88.9084,57.3269 L 74.8898,71.0279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 51.1589,46.7471 L 56.0151,65.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 51.1589,46.7471 L 32.8131,39.5697 L 31.7551,43.3446 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 74.8898,71.0279 L 56.0151,65.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 56.0151,65.738 L 40.6264,78.0372 L 43.3666,80.841 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 32.2841,41.4572 L 27.4279,22.4662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='65.1774' y='34.0261' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='62.9992' y='27.4921' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.964' y='17.2037' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.46' y='8.79256' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='148.646' y='93.1676' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='162.781' y='69.3205' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='128.285' y='79.0329' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 139.553,53.6691 L 120.763,47.7132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 137.925,49.0178 L 124.773,44.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 139.553,53.6691 L 143.789,72.9193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 139.553,53.6691 L 154.105,40.3749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 120.763,47.7132 L 116.526,28.4631' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 120.763,47.7132 L 106.21,61.0074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 116.526,28.4631 L 97.7369,22.5071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 116.526,28.4631 L 122.379,23.1165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 122.379,23.1165 L 128.232,17.77' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 120.941,29.7696 L 125.038,26.0271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 125.038,26.0271 L 129.135,22.2845' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 143.789,72.9193 L 145.546,80.9018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 145.546,80.9018 L 147.303,88.8843' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 143.789,72.9193 L 152.21,71.0661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 152.21,71.0661 L 160.63,69.2129' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 143.789,72.9193 L 135.369,74.7725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 135.369,74.7725 L 126.949,76.6257' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 67.242,30.748 L 75.2131,33.2746' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 75.2131,33.2746 L 83.1841,35.8013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 61.5473,32.4465 L 55.6946,37.7931' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 55.6946,37.7931 L 49.8419,43.1396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.926,16.0714 L 141.898,18.5981' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 141.898,18.5981 L 149.869,21.1248' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 83.1841,35.8013 L 87.4209,55.0515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 83.1841,35.8013 L 97.7369,22.5071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 88.0259,36.7177 L 98.2128,27.4118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 149.869,21.1248 L 154.105,40.3749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 146.654,24.8597 L 149.62,38.3348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.869,21.1248 L 155.611,15.8791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.611,15.8791 L 161.353,10.6335' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.4209,55.0515 L 106.21,61.0074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 91.4305,52.187 L 104.583,56.3561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 87.4209,55.0515 L 72.8682,68.3457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 54.0787,62.3897 L 72.8682,68.3457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 54.0787,62.3897 L 49.8419,43.1396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 54.0787,62.3897 L 51.476,81.928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 54.0787,62.3897 L 34.3853,63.2194' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 49.8419,43.1396 L 31.648,35.3047 L 30.4569,39.0626 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-21' d='M 31.0524,37.1837 L 26.8157,17.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='64.3947' y='30.8309' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='62.2043' y='24.2607' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='131.079' y='16.1544' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='162.01' y='8.81614' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='146.273' y='93.1549' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.287' y='69.6681' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='126.292' y='78.1416' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 46.6345,43.7401 L 65.8218,46.4714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 48.9664,47.9873 L 62.3974,49.8992' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 46.6345,43.7401 L 39.4063,25.7578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 46.6345,43.7401 L 34.6756,58.9911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 65.8218,46.4714 L 73.0501,64.4537' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 65.8218,46.4714 L 77.7808,31.2204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 73.0501,64.4537 L 92.2373,67.1849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 73.0501,64.4537 L 68.337,70.4641' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 68.337,70.4641 L 63.624,76.4746' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 68.5859,63.865 L 65.2868,68.0723' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 65.2868,68.0723 L 61.9877,72.2796' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 39.4063,25.7578 L 36.4413,18.3818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 36.4413,18.3818 L 33.4764,11.0057' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 39.4063,25.7578 L 31.5997,28.8958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 31.5997,28.8958 L 23.7932,32.0338' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 39.4063,25.7578 L 47.2128,22.6199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 47.2128,22.6199 L 55.0193,19.4819' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 58.2914,79.3062 L 50.0976,78.1398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 50.0976,78.1398 L 41.9038,76.9734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 41.9038,76.9734 L 34.6756,58.9911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 44.4161,72.8304 L 39.3563,60.2428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 41.9038,76.9734 L 37.1908,82.9839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 37.1908,82.9839 L 32.4777,88.9943' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 104.196,51.9339 L 96.968,33.9516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 104.196,51.9339 L 112.39,53.1003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 112.39,53.1003 L 120.584,54.2667' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 104.196,51.9339 L 92.2373,67.1849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 99.3522,51.8298 L 90.981,62.5055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 125.916,51.4351 L 130.629,45.4246' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 130.629,45.4246 L 135.343,39.4142' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 77.7808,31.2204 L 96.968,33.9516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 80.1126,35.4675 L 93.5437,37.3794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 96.968,33.9516 L 108.927,18.7006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 108.927,18.7006 L 128.114,21.4319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 135.343,39.4142 L 128.114,21.4319' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 135.343,39.4142 L 154.257,44.0642 L 154.803,40.2267 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-19' d='M 154.53,42.1454 L 161.758,60.1277' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 161.758,60.1277 L 180.945,62.859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='58.9374' y='80.6737' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='121.23' y='55.6342' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='32.3157' y='93.1935' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='33.9012' y='8.7446' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='23.1472' y='33.9552' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='55.6653' y='19.4986' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 61.9582,45.8584 L 80.8229,51.2278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 63.714,50.4368 L 76.9193,54.1954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 61.9582,45.8584 L 57.1759,26.8364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 61.9582,45.8584 L 47.8758,59.511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 80.8229,51.2278 L 85.6052,70.2498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 80.8229,51.2278 L 94.9053,37.5753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 85.6052,70.2498 L 104.47,75.6192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 85.6052,70.2498 L 79.9807,75.7027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 79.9807,75.7027 L 74.3562,81.1555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 81.1873,69.0692 L 77.2502,72.8862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 77.2502,72.8862 L 73.313,76.7032' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 57.1759,26.8364 L 55.1957,18.9599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 55.1957,18.9599 L 53.2155,11.0834' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 57.1759,26.8364 L 48.8638,28.9262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 48.8638,28.9262 L 40.5517,31.0159' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 57.1759,26.8364 L 65.488,24.7467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 65.488,24.7467 L 73.8001,22.657' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 68.6894,83.0959 L 60.6738,80.8145' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 60.6738,80.8145 L 52.6581,78.533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 52.6581,78.533 L 47.8758,59.511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 55.7452,74.7232 L 52.3976,61.4078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 52.6581,78.533 L 47.1435,83.8793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 47.1435,83.8793 L 41.6289,89.2256' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 118.552,61.9667 L 113.77,42.9447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 118.552,61.9667 L 126.568,64.2481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 126.568,64.2481 L 134.584,66.5296' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 118.552,61.9667 L 104.47,75.6192' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 113.709,61.1981 L 103.852,70.7549' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 140.25,64.5892 L 145.875,59.1363' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 145.875,59.1363 L 151.499,53.6835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 94.9053,37.5753 L 113.77,42.9447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 96.6611,42.1536 L 109.866,45.9122' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 113.77,42.9447 L 127.852,29.2921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 127.852,29.2921 L 146.717,34.6615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 151.499,53.6835 L 146.717,34.6615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 151.499,53.6835 L 169.827,60.9394 L 170.901,57.1665 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='71.5228' y='84.8831' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='137.417' y='68.3168' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='135.237' y='74.8548' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='40.9751' y='93.1663' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='50.6497' y='8.79514' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='39.8979' y='32.5994' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='74.4539' y='23.0348' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 142.443,53.3407 L 123.706,46.9774' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 140.905,48.6389 L 127.789,44.1846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 142.443,53.3407 L 146.3,72.7487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 142.443,53.3407 L 157.322,40.296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 123.706,46.9774 L 119.849,27.5695' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 123.706,46.9774 L 108.827,60.0221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 119.849,27.5695 L 101.112,21.2062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 119.849,27.5695 L 125.859,22.3002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 125.859,22.3002 L 131.869,17.0309' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 124.261,28.9645 L 128.468,25.276' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 128.468,25.276 L 132.675,21.5875' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 146.3,72.7487 L 147.901,80.8037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.901,80.8037 L 149.502,88.8587' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 146.3,72.7487 L 154.795,71.0603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 154.795,71.0603 L 163.289,69.3719' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 146.3,72.7487 L 137.806,74.437' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 137.806,74.437 L 129.311,76.1254' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 70.3551,28.8584 L 78.2941,31.5546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 78.2941,31.5546 L 86.2332,34.2509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 64.6382,30.3937 L 58.6279,35.663' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 58.6279,35.663 L 52.6176,40.9323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 137.586,15.4956 L 145.525,18.1918' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 145.525,18.1918 L 153.464,20.8881' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 86.2332,34.2509 L 90.0907,53.6588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 86.2332,34.2509 L 101.112,21.2062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 91.074,35.27 L 101.489,26.1387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 153.464,20.8881 L 157.322,40.296' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 150.161,24.5708 L 152.862,38.1563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 153.464,20.8881 L 159.364,15.7159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 159.364,15.7159 L 165.263,10.5438' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 90.0907,53.6588 L 108.827,60.0221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 94.1738,50.866 L 107.289,55.3203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 90.0907,53.6588 L 75.2116,66.7035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 52.6176,40.9323 L 56.4751,60.3402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 52.6176,40.9323 L 34.5174,32.6953 L 33.2447,36.4426 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 75.2116,66.7035 L 56.4751,60.3402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 54.8568,61.4959 L 55.1177,61.7935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 53.2384,62.6516 L 53.7602,63.2467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.6201,63.8073 L 52.4027,64.7' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 50.0017,64.9629 L 51.0453,66.1533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 48.3834,66.1186 L 49.6878,67.6065' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 46.765,67.2743 L 48.3304,69.0598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 45.1467,68.43 L 46.9729,70.513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 43.5283,69.5856 L 45.6155,71.9663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 41.91,70.7413 L 44.258,73.4195' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 40.2916,71.897 L 42.9005,74.8728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 33.8811,34.569 L 30.0236,15.161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 41.5961,73.3849 L 22.8595,67.0216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='67.4966' y='28.877' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.2977' y='22.2811' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='134.728' y='15.5142' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='165.923' y='8.83277' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='148.398' y='93.146' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='163.949' y='69.8805' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='128.652' y='77.5955' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 62.2812,45.7139 L 81.1687,50.9038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 64.0764,50.2699 L 77.2976,53.9028' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 62.2812,45.7139 L 57.3321,26.762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 62.2812,45.7139 L 48.3429,59.476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 81.1687,50.9038 L 86.1178,69.8558' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 81.1687,50.9038 L 95.107,37.1418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 86.1178,69.8558 L 105.005,75.0457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 86.1178,69.8558 L 80.5634,75.3399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 80.5634,75.3399 L 75.0091,80.824' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 81.6991,68.7134 L 77.811,72.5523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 77.811,72.5523 L 73.923,76.3911' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 57.3321,26.762 L 55.2838,18.9183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 55.2838,18.9183 L 53.2355,11.0746' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 57.3321,26.762 L 49.0534,28.9239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 49.0534,28.9239 L 40.7747,31.0858' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 57.3321,26.762 L 65.6108,24.6001' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 65.6108,24.6001 L 73.8895,22.4382' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 69.3499,82.8403 L 61.321,80.6341' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 61.321,80.6341 L 53.2921,78.4279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 53.2921,78.4279 L 48.3429,59.476' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 56.3401,74.5953 L 52.8757,61.3289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 53.2921,78.4279 L 47.8474,83.8037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 47.8474,83.8037 L 42.4028,89.1795' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 118.944,61.2837 L 113.994,42.3317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 118.944,61.2837 L 126.972,63.4899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 126.972,63.4899 L 135.001,65.6961' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 118.944,61.2837 L 105.005,75.0457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 114.1,60.5603 L 104.344,70.1937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 140.661,63.6798 L 146.215,58.1957' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 146.215,58.1957 L 151.769,52.7115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 95.107,37.1418 L 113.994,42.3317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 96.9021,41.6978 L 110.123,45.3307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 113.994,42.3317 L 127.933,28.5697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 151.769,52.7115 L 146.82,33.7596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 151.769,52.7115 L 169.574,44.5466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 151.769,52.7115 L 162.902,68.8278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 127.933,28.5697 L 146.82,33.7596' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='72.1795' y='84.5972' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='137.831' y='67.4529' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='135.654' y='73.9821' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='41.7499' y='93.1693' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='50.6414' y='8.78941' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='40.1218' y='32.6905' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='74.5424' y='22.7922' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 57.0827,44.6608 L 76.1327,48.5405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 59.1643,49.0528 L 72.4993,51.7685' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 57.0827,44.6608 L 50.9176,26.2232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 57.0827,44.6608 L 44.1979,59.2188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 76.1327,48.5405 L 82.2979,66.9781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 76.1327,48.5405 L 89.0176,33.9825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 82.2979,66.9781 L 101.348,70.8577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 82.2979,66.9781 L 77.2596,72.6705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 77.2596,72.6705 L 72.2214,78.363' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 77.8748,66.1089 L 74.3481,70.0936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 74.3481,70.0936 L 70.8213,74.0783' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 50.9176,26.2232 L 48.3768,18.6245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 48.3768,18.6245 L 45.8359,11.0258' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 50.9176,26.2232 L 42.8871,28.9085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 42.8871,28.9085 L 34.8567,31.5937' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 50.9176,26.2232 L 58.9481,23.538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 58.9481,23.538 L 66.9786,20.8528' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 66.6046,80.9641 L 58.4838,79.3103' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 58.4838,79.3103 L 50.363,77.6564' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 50.363,77.6564 L 44.1979,59.2188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 53.1258,73.6577 L 48.8102,60.7514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 50.363,77.6564 L 45.3545,83.3153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 45.3545,83.3153 L 40.3459,88.9742' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 114.233,56.2998 L 108.068,37.8622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 114.233,56.2998 L 122.354,57.9536' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 122.354,57.9536 L 130.474,59.6075' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 114.233,56.2998 L 101.348,70.8577' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 109.388,55.9065 L 100.369,66.0971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 136.091,57.0063 L 141.129,51.3139' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 141.129,51.3139 L 146.168,45.6215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 89.0176,33.9825 L 108.068,37.8622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 91.0992,38.3745 L 104.434,41.0902' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 108.068,37.8622 L 120.952,23.3042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 120.952,23.3042 L 140.002,27.1839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 146.168,45.6215 L 140.002,27.1839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 146.168,45.6215 L 164.83,51.4061 L 165.606,47.5961 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-19' d='M 165.218,49.5011 L 171.383,67.9387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='69.413' y='82.5081' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='133.283' y='61.1515' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='131.122' y='67.6318' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='39.8563' y='93.1864' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='43.0239' y='8.75768' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='34.2086' y='33.3604' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='67.6266' y='21.0302' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 136.189,52.8582 L 117.532,45.8971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 134.783,48.0825 L 121.722,43.2098' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 136.189,52.8582 L 139.49,72.4969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 136.189,52.8582 L 151.547,40.1807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 117.532,45.8971 L 114.231,26.2585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 117.532,45.8971 L 102.174,58.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 114.231,26.2585 L 95.5733,19.2974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.231,26.2585 L 120.471,21.1071' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 120.471,21.1071 L 126.712,15.9557' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 118.639,27.7845 L 123.007,24.1786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 123.007,24.1786 L 127.375,20.5726' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 139.49,72.4969 L 140.861,80.6567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 140.861,80.6567 L 142.232,88.8165' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 139.49,72.4969 L 148.092,71.0512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 148.092,71.0512 L 156.694,69.6056' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 139.49,72.4969 L 130.888,73.9425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 130.888,73.9425 L 122.286,75.3882' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 64.4349,26.0872 L 72.3254,29.0311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 72.3254,29.0311 L 80.216,31.975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 58.6814,27.3886 L 52.4411,32.54' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 52.4411,32.54 L 46.2008,37.6914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 132.465,14.6542 L 140.356,17.5981' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 140.356,17.5981 L 148.246,20.542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 80.216,31.975 L 83.5164,51.6136' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 80.216,31.975 L 95.5733,19.2974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 85.0551,33.1448 L 95.8052,24.2705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 148.246,20.542 L 151.547,40.1807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 144.814,24.1479 L 147.124,37.895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 148.246,20.542 L 154.375,15.4827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 154.375,15.4827 L 160.504,10.4234' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 83.5164,51.6136 L 102.174,58.5747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.7073,48.9262 L 100.768,53.799' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 83.5164,51.6136 L 68.159,64.2912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 46.2008,37.6914 L 49.5012,57.3301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 46.2008,37.6914 L 28.2392,28.8646 L 26.8469,32.5961 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 68.159,64.2912 L 49.5012,57.3301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 47.8387,58.4443 L 48.0923,58.7514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 46.1762,59.5585 L 46.6833,60.1727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 44.5137,60.6726 L 45.2743,61.5941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 42.8512,61.7868 L 43.8654,63.0154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 41.1887,62.901 L 42.4564,64.4367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 39.5262,64.0152 L 41.0475,65.8581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 37.8636,65.1294 L 39.6385,67.2794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 36.2011,66.2435 L 38.2295,68.7007' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 34.5386,67.3577 L 36.8206,70.1221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 32.8761,68.4719 L 35.4116,71.5434' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='61.5582' y='26.0096' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='59.3452' y='19.3716' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='129.588' y='14.5766' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.168' y='8.86016' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='141.019' y='93.1312' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='157.358' y='70.1922' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='121.622' y='76.793' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 140.677,54.2056 L 121.802,48.9157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 138.903,49.6371 L 125.691,45.9342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 140.677,54.2056 L 145.533,73.1966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 140.677,54.2056 L 154.695,40.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 121.802,48.9157 L 116.946,29.9247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 121.802,48.9157 L 107.783,62.6168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 116.946,29.9247 L 98.0708,24.6348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 116.946,29.9247 L 122.539,24.4579' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 122.539,24.4579 L 128.132,18.9912' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 121.364,31.0884 L 125.279,27.2617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.279,27.2617 L 129.195,23.4349' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 145.533,73.1966 L 147.543,81.0585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.543,81.0585 L 149.553,88.9205' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 145.533,73.1966 L 153.83,71.0748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 153.83,71.0748 L 162.127,68.9531' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 145.533,73.1966 L 137.235,75.3183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 137.235,75.3183 L 128.938,77.44' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 68.0091,33.8396 L 76.0307,36.0877' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 76.0307,36.0877 L 84.0522,38.3359' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 62.3458,35.8135 L 56.7523,41.2803' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 56.7523,41.2803 L 51.1589,46.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.796,17.0172 L 141.817,19.2654' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 141.817,19.2654 L 149.839,21.5135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 84.0522,38.3359 L 88.9084,57.3269' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 84.0522,38.3359 L 98.0708,24.6348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 88.8952,39.0844 L 98.7082,29.4937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 149.839,21.5135 L 154.695,40.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 146.769,25.3334 L 150.168,38.6271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.839,21.5135 L 155.323,16.1541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.323,16.1541 L 160.806,10.7947' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 88.9084,57.3269 L 107.783,62.6168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 92.7976,54.3454 L 106.01,58.0483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 88.9084,57.3269 L 74.8898,71.0279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 51.1589,46.7471 L 56.0151,65.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 51.1589,46.7471 L 32.8131,39.5697 L 31.7551,43.3446 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-13' d='M 74.8898,71.0279 L 56.0151,65.738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 54.4762,66.968 L 54.7502,67.2483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 52.9373,68.1979 L 53.4854,68.7586' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.3985,69.4278 L 52.2205,70.2689' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 49.8596,70.6577 L 50.9557,71.7792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 48.3207,71.8876 L 49.6908,73.2895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 46.7819,73.1176 L 48.426,74.7998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 45.243,74.3475 L 47.1611,76.3101' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 43.7041,75.5774 L 45.8963,77.8204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 42.1653,76.8073 L 44.6314,79.3307' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 40.6264,78.0372 L 43.3666,80.841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 32.2841,41.4572 L 27.4279,22.4662' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='65.1774' y='34.0261' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='62.9992' y='27.4921' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.964' y='17.2037' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='161.46' y='8.79256' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='148.646' y='93.1676' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='162.781' y='69.3205' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='128.285' y='79.0329' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 141.766,54.729 L 122.809,50.0897' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 139.85,50.2418 L 126.58,46.9943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 141.766,54.729 L 147.226,73.4654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 141.766,54.729 L 155.262,40.6318' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 122.809,50.0897 L 117.349,31.3533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 122.809,50.0897 L 109.313,64.1869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 117.349,31.3533 L 98.3921,26.714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 117.349,31.3533 L 122.687,25.7771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 122.687,25.7771 L 128.025,20.2009' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 121.77,32.3796 L 125.506,28.4763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.506,28.4763 L 129.243,24.5729' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 84.8961,40.8112 L 90.3567,59.5477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 84.8961,40.8112 L 76.8275,38.8365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 76.8275,38.8365 L 68.7588,36.8619' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 84.8961,40.8112 L 98.3921,26.714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 89.74,41.3958 L 99.1871,31.5278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.226,73.4654 L 149.483,81.2073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 149.483,81.2073 L 151.739,88.9492' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 147.226,73.4654 L 155.402,71.0828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 155.402,71.0828 L 163.577,68.7002' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 147.226,73.4654 L 139.051,75.848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 139.051,75.848 L 130.876,78.2307' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.664,17.946 L 141.732,19.9207' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 141.732,19.9207 L 149.801,21.8953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 90.3567,59.5477 L 109.313,64.1869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 94.128,56.4522 L 107.398,59.6997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 90.3567,59.5477 L 76.8607,73.6449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 63.1204,39.1168 L 57.782,44.693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 57.782,44.693 L 52.4436,50.2691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 149.801,21.8953 L 155.262,40.6318' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 146.873,25.7979 L 150.695,38.9134' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.801,21.8953 L 155.03,16.4333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 155.03,16.4333 L 160.259,10.9713' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 76.8607,73.6449 L 57.9042,69.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 76.8607,73.6449 L 80.4476,92.9274 L 84.1949,91.8353 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-12' d='M 52.4436,50.2691 L 57.9042,69.0056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 52.4436,50.2691 L 33.951,43.7342 L 33.0232,47.5255 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 33.4871,45.6299 L 28.0266,26.8934' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.845' y='18.2319' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='65.9396' y='37.1477' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='63.7709' y='30.6424' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='160.91' y='8.77391' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='150.952' y='93.1777' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='164.227' y='68.9807' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='130.225' y='79.9018' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 137.335,51.2755 L 119.412,45.3057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 135.84,46.7953 L 123.294,42.6165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 137.335,51.2755 L 141.127,69.7825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 137.335,51.2755 L 151.467,38.7382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 119.412,45.3057 L 115.62,26.7987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 119.412,45.3057 L 105.28,57.8429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 115.62,26.7987 L 97.6965,20.8289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 115.62,26.7987 L 121.321,21.7406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 121.321,21.7406 L 127.023,16.6826' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 119.838,28.1076 L 123.829,24.567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 123.829,24.567 L 127.82,21.0263' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 83.5648,33.3661 L 87.3565,51.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 83.5648,33.3661 L 75.9676,30.8357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 75.9676,30.8357 L 68.3704,28.3053' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 83.5648,33.3661 L 97.6965,20.8289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 88.192,34.3119 L 98.0842,25.5358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 141.127,69.7825 L 142.7,77.4617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 142.7,77.4617 L 144.273,85.1409' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 141.127,69.7825 L 149.225,68.1232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 149.225,68.1232 L 157.324,66.4639' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 141.127,69.7825 L 133.028,71.4417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 133.028,71.4417 L 124.929,73.101' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 132.481,15.1704 L 140.078,17.7008' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 140.078,17.7008 L 147.675,20.2312' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 87.3565,51.8731 L 105.28,57.8429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 91.239,49.1839 L 103.785,53.3627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 87.3565,51.8731 L 73.2249,64.4103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 62.9124,29.8174 L 57.2111,34.8755' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 57.2111,34.8755 L 51.5098,39.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 147.675,20.2312 L 151.467,38.7382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 144.542,23.7656 L 147.197,36.7205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 147.675,20.2312 L 153.27,15.2671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 153.27,15.2671 L 158.866,10.3029' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 73.2249,64.4103 L 55.3015,58.4405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 73.2249,64.4103 L 75.1659,83.2965 L 78.8673,82.5382 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-12' d='M 51.5098,39.9335 L 55.3015,58.4405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 51.5098,39.9335 L 34.1833,32.1714 L 32.9894,35.7561 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-20' d='M 77.0166,82.9173 L 62.8849,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 33.5864,33.9638 L 29.7947,15.4568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='129.752' y='15.206' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='65.6414' y='28.3409' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='63.5421' y='22.0438' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='159.496' y='8.6386' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='143.239' y='89.234' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='157.954' y='66.9353' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='124.299' y='74.5187' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 118.597,54.8585 L 102.036,59.7169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 118.597,54.8585 L 122.669,38.0875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 118.597,54.8585 L 131.085,66.771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 122.852,54.1478 L 131.594,62.4866' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 151.019,48.0179 L 149.332,54.9652' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 149.332,54.9652 L 147.645,61.9125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 147.159,49.2876 L 145.978,54.1507' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 145.978,54.1507 L 144.797,59.0138' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 149.225,42.7633 L 144.227,37.9961' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 144.227,37.9961 L 139.23,33.229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 102.036,59.7169 L 89.5486,47.8044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 102.036,59.7169 L 100.349,66.6642' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 100.349,66.6642 L 98.6622,73.6115' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 122.669,38.0875 L 139.23,33.229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 124.182,34.0466 L 135.774,30.6457' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 122.669,38.0875 L 110.182,26.1749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 131.085,66.771 L 147.645,61.9125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 131.085,66.771 L 127.012,83.542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 139.23,33.229 L 143.303,16.458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 147.645,61.9125 L 160.133,73.8251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 75.4812,51.9314 L 82.5149,49.8679' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 82.5149,49.8679 L 89.5486,47.8044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 70.495,50.2846 L 65.4977,45.5175' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 65.4977,45.5175 L 60.5003,40.7503' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 72.2896,55.5393 L 70.6025,62.4866' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 70.6025,62.4866 L 68.9154,69.4339' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 60.5003,40.7503 L 43.9399,45.6088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 68.9154,69.4339 L 52.355,74.2923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 127.012,83.542 L 139.5,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 131.268,82.8313 L 140.009,91.1701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 110.182,26.1749 L 114.254,9.40392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 114.147,24.4738 L 116.998,12.7341' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 160.133,73.8251 L 156.06,90.5961' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 156.168,75.5262 L 153.317,87.2659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 143.303,16.458 L 130.815,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 139.047,17.1687 L 130.305,8.82989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 52.355,74.2923 L 39.8672,62.3798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 43.9399,45.6088 L 39.8672,62.3798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 139.5,95.4545 L 156.06,90.5961' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.254,9.40392 L 130.815,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='149.8' y='46.0045' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='72.9881' y='53.5258' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='95.8525' y='77.3509' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 128.146,47.5345 L 133.292,52.6314' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 133.292,52.6314 L 138.438,57.7282' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 128.146,47.5345 L 132.769,29.9498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 128.146,47.5345 L 110.607,52.3239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 124.558,44.745 L 112.28,48.0975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 143.691,59.6127 L 151.147,57.5766' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 151.147,57.5766 L 158.604,55.5406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 140.268,63.3602 L 138.355,70.6374' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 138.355,70.6374 L 136.442,77.9146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 132.769,29.9498 L 119.851,17.1545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 128.272,30.6141 L 119.23,21.6573' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 132.769,29.9498 L 150.309,25.1605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 110.607,52.3239 L 97.6889,39.5285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 110.607,52.3239 L 108.694,59.6011' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 108.694,59.6011 L 106.781,66.8782' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 97.6889,39.5285 L 102.311,21.9438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 101.899,37.8153 L 105.135,25.506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 97.6889,39.5285 L 80.1489,44.3179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 158.604,55.5406 L 163.226,37.9559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 155.78,51.9784 L 159.016,39.6691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 102.311,21.9438 L 96.9637,16.647' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 96.9637,16.647 L 91.6162,11.3502' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 102.311,21.9438 L 119.851,17.1545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 80.1489,44.3179 L 75.5266,61.9026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 80.1489,44.3179 L 67.2313,31.5225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 75.6522,44.9821 L 66.6098,36.0253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 136.442,77.9146 L 141.231,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 136.442,77.9146 L 123.646,90.8323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 163.226,37.9559 L 150.309,25.1605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 152.067,25.6227 L 153.98,18.3455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 153.98,18.3455 L 155.893,11.0684' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 148.55,24.6983 L 150.463,17.4211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 150.463,17.4211 L 152.376,10.1439' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 45.8656,50.8662 L 47.7785,43.589' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 47.7785,43.589 L 49.6913,36.3118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 49.9564,49.6075 L 51.2954,44.5135' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 51.2954,44.5135 L 52.6344,39.4195' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 47.6956,56.4982 L 52.8411,61.5951' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 52.8411,61.5951 L 57.9867,66.6919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 141.231,95.4545 L 123.646,90.8323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 75.5266,61.9026 L 57.9867,66.6919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 71.9378,59.113 L 59.6598,62.4655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 67.2313,31.5225 L 49.6913,36.3118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 57.9867,66.6919 L 53.3644,84.2766' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 49.6913,36.3118 L 36.7737,23.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='141.064' y='61.239' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='47.0895' y='54.8056' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='152.707' y='8.4849' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='104.368' y='70.8177' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='91.0101' y='10.0576' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 98.8956,43.9128 L 116.627,62.2665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 105.226,43.1195 L 117.638,55.9671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 98.8956,43.9128 L 105.924,19.3799' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 98.8956,43.9128 L 74.135,50.0921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 116.627,62.2665 L 141.388,56.0872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 116.627,62.2665 L 113.722,72.4063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 113.722,72.4063 L 110.817,82.5461' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 105.924,19.3799 L 116.462,16.7502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 116.462,16.7502 L 126.999,14.1206' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 110.321,23.5431 L 117.697,21.7024' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 117.697,21.7024 L 125.073,19.8616' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 141.388,56.0872 L 159.12,74.4408' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 147.718,55.2939 L 160.131,68.1414' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 141.388,56.0872 L 148.417,31.5542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 134.372,17.0165 L 141.394,24.2853' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 141.394,24.2853 L 148.417,31.5542' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 74.135,50.0921 L 56.4033,31.7385' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 67.8045,50.8854 L 55.3923,38.0378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 74.135,50.0921 L 67.1062,74.625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 148.417,31.5542 L 173.177,25.375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 153.367,35.5795 L 170.699,31.254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 56.4033,31.7385 L 31.6427,37.9177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 31.6427,37.9177 L 24.8315,30.8676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 24.8315,30.8676 L 18.0202,23.8174' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 31.6427,37.9177 L 24.6139,62.4507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 35.495,43.0035 L 30.5748,60.1765' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 159.12,74.4408 L 183.88,68.2615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 67.1062,74.625 L 42.3456,80.8043' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 62.1562,70.5998 L 44.8238,74.9253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 42.3456,80.8043 L 24.6139,62.4507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 173.177,25.375 L 190.909,43.7286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 183.88,68.2615 L 190.909,43.7286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 180.028,63.1758 L 184.948,46.0028' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.685' y='14.4766' style='font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='106.477' y='88.0754' style='font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='17.8804' y='20.8401' style='font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 62.0888,58.9052 L 56.2812,42.1114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 62.0888,58.9052 L 50.4487,72.3317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 62.0888,58.9052 L 79.5365,62.2726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 56.2812,42.1114 L 38.8335,38.744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 38.8335,38.744 L 34.2969,43.9768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 34.2969,43.9768 L 29.7604,49.2096' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 28.2176,55.1321 L 30.6093,62.0482' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 30.6093,62.0482 L 33.001,68.9644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 33.001,68.9644 L 50.4487,72.3317' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 79.5365,62.2726 L 85.3442,79.0665' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 83.7664,63.6302 L 87.8318,75.3858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 79.5365,62.2726 L 91.1766,48.8461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 85.3442,79.0665 L 102.792,82.4338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 85.3442,79.0665 L 80.6103,84.5268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 80.6103,84.5268 L 75.8764,89.9872' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 102.792,82.4338 L 114.432,69.0073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 101.853,78.0918 L 110.001,68.6933' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 114.432,69.0073 L 131.88,72.3747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 114.432,69.0073 L 108.624,52.2135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 108.624,52.2135 L 91.1766,48.8461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 105.334,55.1979 L 93.1203,52.8408' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 108.624,52.2135 L 113.161,46.9807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 113.161,46.9807 L 117.697,41.7479' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 122.831,39.2824 L 130.272,40.7184' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 130.272,40.7184 L 137.712,42.1544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 119.24,35.8254 L 116.848,28.9093' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 116.848,28.9093 L 114.457,21.9932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 131.88,72.3747 L 143.52,58.9482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 130.2,72.9555 L 132.592,79.8716' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 132.592,79.8716 L 134.984,86.7877' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 133.559,71.7939 L 135.951,78.71' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 135.951,78.71 L 138.342,85.6262' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 143.52,58.9482 L 137.712,42.1544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 139.29,57.5907 L 135.224,45.835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 143.52,58.9482 L 160.967,62.3156' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 114.457,21.9932 L 101.03,10.3531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 114.457,21.9932 L 117.824,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 160.967,62.3156 L 165.504,57.0831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 165.504,57.0831 L 170.04,51.8507' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 159.288,62.8963 L 161.68,69.8125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 161.68,69.8125 L 164.072,76.7286' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 162.647,61.7348 L 165.039,68.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 165.039,68.6509 L 167.43,75.567' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 101.03,10.3531 L 117.824,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='29.168' y='53.059' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>HN</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='120.264' y='39.6755' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='135.514' y='90.057' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='170.434' y='49.7776' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='164.601' y='79.9979' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='75.2841' y='93.3814' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 109.644,52.7007 L 87.0936,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 106.802,47.7855 L 91.0162,45.895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 109.644,52.7007 L 123.258,34.5218' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 109.644,52.7007 L 113.302,61.2478' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 113.302,61.2478 L 116.96,69.7949' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 87.0936,50 L 78.1572,29.1205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 87.0936,50 L 73.4795,68.1789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 123.258,34.5218 L 114.322,13.6423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 117.742,33.1771 L 111.486,18.5615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 123.258,34.5218 L 145.808,37.2224' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 78.1572,29.1205 L 55.6068,26.4198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 78.1572,29.1205 L 83.5468,21.9237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 83.5468,21.9237 L 88.9365,14.7269' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 83.4099,29.6842 L 87.1826,24.6465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 87.1826,24.6465 L 90.9554,19.6087' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 114.322,13.6423 L 104.687,12.4884' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 104.687,12.4884 L 95.0521,11.3345' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 73.4795,68.1789 L 50.9291,65.4782' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 70.6371,63.2637 L 54.8518,61.3732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 73.4795,68.1789 L 77.1377,76.726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 77.1377,76.726 L 80.7958,85.2731' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 145.808,37.2224 L 154.745,58.102' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 151.325,38.5671 L 157.58,53.1828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 145.808,37.2224 L 159.422,19.0436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 55.6068,26.4198 L 41.9928,44.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 57.2005,31.8695 L 47.6707,44.5947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 50.9291,65.4782 L 41.9928,44.5987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 41.9928,44.5987 L 32.4853,43.4601' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 32.4853,43.4601 L 22.9777,42.3214' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 154.745,58.102 L 177.295,60.8026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 177.295,60.8026 L 180.953,69.3498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 180.953,69.3498 L 184.611,77.8969' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 177.295,60.8026 L 190.909,42.6238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 175.701,55.353 L 185.231,42.6278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 159.422,19.0436 L 181.973,21.7442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 162.265,23.9587 L 178.05,25.8492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 181.973,21.7442 L 190.909,42.6238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='94.295' y='12.0772' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='115.802' y='74.7158' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='79.6376' y='90.194' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='182.699' y='82.8177' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='22.2207' y='43.0336' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 115.767,34.8557 L 126.6,32.3989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 115.767,34.8557 L 112.478,45.4658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 117.395,37.105 L 115.093,44.5321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 115.767,34.8557 L 110.082,25.3119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 126.6,32.3989 L 129.57,35.6085' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 129.57,35.6085 L 132.539,38.8181' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 125.86,34.8706 L 127.939,37.1173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 127.939,37.1173 L 130.018,39.3641' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 126.6,32.3989 L 127.021,27.7936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 127.021,27.7936 L 127.442,23.1882' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 112.478,45.4658 L 120.022,53.6193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 112.478,45.4658 L 107.863,46.5123' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 107.863,46.5123 L 103.249,47.5587' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 133.57,42.4037 L 132.213,46.7831' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 132.213,46.7831 L 130.855,51.1625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 120.022,53.6193 L 130.855,51.1625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 122.138,55.4174 L 129.721,53.6977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 120.022,53.6193 L 116.733,64.2294' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 115.798,18.7883 L 112.94,22.0501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 112.94,22.0501 L 110.082,25.3119' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 116.612,21.2309 L 114.611,23.5142' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 114.611,23.5142 L 112.611,25.7974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 119.007,17.6453 L 126.006,20.6483' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 129.216,20.3811 L 133.185,18.0169' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 133.185,18.0169 L 137.155,15.6527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 100.04,46.1883 L 97.0701,42.9788' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 97.0701,42.9788 L 94.1003,39.7692' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 130.855,51.1625 L 138.399,59.3159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 118.273,91.7518 L 119.631,87.3724' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 119.631,87.3724 L 120.988,82.993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 120.395,92.4096 L 121.549,88.6871' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 121.549,88.6871 L 122.703,84.9646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 116.151,91.094 L 117.305,87.3715' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 117.305,87.3715 L 118.459,83.649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 120.988,82.993 L 124.277,72.3828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 94.1003,39.7692 L 83.2671,42.2259' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 94.5353,38.741 L 94.3231,38.6753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 94.9703,37.7129 L 94.5459,37.5814' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 95.4053,36.6848 L 94.7687,36.4875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 95.8403,35.6567 L 94.9915,35.3935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 96.2753,34.6285 L 95.2143,34.2996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 96.7103,33.6004 L 95.4371,33.2057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 97.1453,32.5723 L 95.6599,32.1118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 97.5803,31.5442 L 95.8827,31.0179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 98.0153,30.516 L 96.1055,29.924' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 98.4503,29.4879 L 96.3283,28.8301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 116.733,64.2294 L 124.277,72.3828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 119.495,63.9436 L 124.776,69.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 138.399,59.3159 L 135.11,69.9261' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 135.784,60.2497 L 133.482,67.6768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 124.277,72.3828 L 135.11,69.9261' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 83.2671,42.2259 L 79.9782,52.8361' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 83.2671,42.2259 L 75.723,34.0725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 137.155,15.6527 L 137.004,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 79.9782,52.8361 L 69.145,55.2928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 75.723,34.0725 L 64.8898,36.5292' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 69.145,55.2928 L 61.6008,47.1394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 64.8898,36.5292 L 61.6008,47.1394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='132.91' y='41.1078' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='117.403' y='17.5122' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='126.377' y='21.8922' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='101.644' y='48.478' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='100.41' y='52.1807' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='116.465' y='94.1586' style='font-size:3px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 116.033,58.0577 L 96.3909,63.0212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 116.033,58.0577 L 121.555,38.5658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 112.963,54.0294 L 116.828,40.3851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 116.033,58.0577 L 130.152,72.5861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 82.2716,48.4927 L 96.3909,63.0212' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 82.2716,48.4927 L 62.6299,53.4562' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 82.2716,48.4927 L 87.7939,29.0008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 86.9983,46.6734 L 90.8639,33.0291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 94.4417,62.4689 L 92.1588,70.5266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 92.1588,70.5266 L 89.876,78.5843' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 98.3401,63.5734 L 96.0572,71.6311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 96.0572,71.6311 L 93.7743,79.6888' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 121.555,38.5658 L 115.959,32.8073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 115.959,32.8073 L 110.362,27.0487' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 121.555,38.5658 L 141.197,33.6023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 104.509,24.7769 L 96.1514,26.8889' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 96.1514,26.8889 L 87.7939,29.0008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 108.392,20.6608 L 110.675,12.6031' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 110.675,12.6031 L 112.958,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 130.152,72.5861 L 149.793,67.6227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 132.105,67.9133 L 145.855,64.4389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 130.152,72.5861 L 127.869,80.6438' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 127.869,80.6438 L 125.586,88.7015' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 62.6299,53.4562 L 48.5106,38.9277' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 57.6063,54.1008 L 47.7228,43.9309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 62.6299,53.4562 L 57.1076,72.9481' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 141.197,33.6023 L 155.316,48.1308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 140.409,38.6055 L 150.292,48.7754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 149.793,67.6227 L 155.316,48.1308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 155.316,48.1308 L 163.56,46.0475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 163.56,46.0475 L 171.804,43.9642' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 48.5106,38.9277 L 28.869,43.8912' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 28.869,43.8912 L 23.45,38.3152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 23.45,38.3152 L 18.0311,32.7393' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 28.869,43.8912 L 23.3466,63.3831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 31.939,47.9195 L 28.0733,61.5638' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 178.111,46.4123 L 183.594,52.054' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 183.594,52.054 L 189.077,57.6957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 57.1076,72.9481 L 37.4659,77.9115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 53.1686,69.7643 L 39.4195,73.2387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 37.4659,77.9115 L 23.3466,63.3831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='107.436' y='25.0503' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='88.3903' y='83.526' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='122.151' y='93.091' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='17.9008' y='30.3757' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='174.957' y='44.1803' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 109.137,51.6162 L 86.5938,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 106.079,46.8651 L 90.2986,45.7337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 109.137,51.6162 L 121.809,32.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 109.137,51.6162 L 113.159,59.8985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 113.159,59.8985 L 117.18,68.1807' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 86.5938,50 L 76.7217,29.6686' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.5938,50 L 73.9223,68.7152' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 121.809,32.901 L 111.937,12.5696' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 116.262,31.8257 L 109.351,17.5937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 121.809,32.901 L 144.352,34.5172' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 76.7217,29.6686 L 54.1781,28.0524' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 76.7217,29.6686 L 81.7822,22.1944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 81.7822,22.1944 L 86.8427,14.7203' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 81.9829,29.9606 L 85.5252,24.7287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 85.5252,24.7287 L 89.0676,19.4968' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 111.937,12.5696 L 102.297,11.8785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 102.297,11.8785 L 92.6581,11.1874' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 73.9223,68.7152 L 51.3787,67.099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 70.864,63.9641 L 55.0835,62.8327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 73.9223,68.7152 L 77.9438,76.9975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 77.9438,76.9975 L 81.9653,85.2797' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 144.352,34.5172 L 154.225,54.8487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 149.9,35.5925 L 156.81,49.8245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 144.352,34.5172 L 157.024,15.802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 54.1781,28.0524 L 41.5066,46.7676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 56.0204,33.3939 L 47.1504,46.4946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 51.3787,67.099 L 41.5066,46.7676' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 41.5066,46.7676 L 31.9939,46.0856' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 31.9939,46.0856 L 22.4812,45.4036' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 154.225,54.8487 L 176.768,56.4649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 176.768,56.4649 L 180.79,64.7471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 180.79,64.7471 L 184.811,73.0294' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 176.768,56.4649 L 189.44,37.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 174.926,51.1233 L 183.796,38.0226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 17.134,41.3844 L 13.1124,33.1022' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 13.1124,33.1022 L 9.09091,24.8199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 157.024,15.802 L 179.567,17.4182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 160.082,20.5532 L 175.863,21.6845' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 179.567,17.4182 L 189.44,37.7497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='91.9047' y='12.0834' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='116.245' y='73.0777' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='81.0296' y='90.1767' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='183.125' y='77.9264' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='21.7278' y='46.2814' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 140.742,43.2701 L 136.069,38.3224' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 136.069,38.3224 L 131.396,33.3748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 145.722,44.7261 L 152.265,41.6244' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 152.265,41.6244 L 158.808,38.5227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 142.373,48.7795 L 140.335,55.6011' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 140.335,55.6011 L 138.297,62.4226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 114.625,37.359 L 131.396,33.3748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 116.344,33.4072 L 128.083,30.6183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 114.625,37.359 L 105.466,22.6645' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 114.625,37.359 L 109.69,53.875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 131.396,33.3748 L 139.657,18.2458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 109.69,53.875 L 121.526,66.4068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 109.292,52.1979 L 102.248,53.8713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 102.248,53.8713 L 95.2043,55.5446' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 110.089,55.552 L 103.045,57.2254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 103.045,57.2254 L 96.0011,58.8988' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 121.526,66.4068 L 138.297,62.4226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 123.245,62.455 L 134.984,59.6661' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 121.526,66.4068 L 116.591,82.9227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 158.808,38.5227 L 157.889,31.4114' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 157.889,31.4114 L 156.97,24.3002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 155.113,36.8312 L 154.47,31.8533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 154.47,31.8533 L 153.826,26.8755' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 138.297,62.4226 L 150.133,74.9544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 154.108,20.9597 L 146.883,19.6027' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 146.883,19.6027 L 139.657,18.2458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 105.466,22.6645 L 98.1636,23.6082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 98.1636,23.6082 L 90.861,24.552' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 105.466,22.6645 L 112.101,6.75479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 109.643,21.6049 L 114.287,10.4681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 139.657,18.2458 L 129.196,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 135.348,18.2829 L 128.025,8.6927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 112.101,6.75479 L 129.196,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 87.1729,27.7467 L 84.4548,34.2651' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 84.4548,34.2651 L 81.7366,40.7834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 86.1773,22.0009 L 82.0436,16.5872' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 82.0436,16.5872 L 77.9099,11.1735' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 81.7366,40.7834 L 64.6413,42.9928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 59.205,56.0295 L 61.9231,49.5112' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 61.9231,49.5112 L 64.6413,42.9928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 55.5169,59.2243 L 48.2142,60.168' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 48.2142,60.168 L 40.9116,61.1118' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 60.2006,61.7754 L 64.3343,67.1891' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 64.3343,67.1891 L 68.468,72.6028' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 116.591,82.9227 L 128.427,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 120.873,82.4354 L 129.158,91.2076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 150.133,74.9544 L 145.198,91.4704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 146.089,76.4448 L 142.635,88.006' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 128.427,95.4545 L 145.198,91.4704' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='143.232' y='46.7685' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='154.683' y='22.2892' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='88.3709' y='25.7357' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='95.0281' y='58.721' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='58.007' y='59.7643' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-2' d='M 133.019,64.792 L 128.526,68.4447' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 128.526,68.4447 L 124.033,72.0974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 134.694,60.749 L 133.758,54.9094' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.758,54.9094 L 132.821,49.0699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 137.13,64.4501 L 142.077,67.6492' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 142.077,67.6492 L 147.024,70.8482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 110.738,67.0232 L 124.033,72.0974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 111.717,70.4434 L 121.023,73.9953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 110.738,67.0232 L 101.653,78.0594' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 110.738,67.0232 L 108.484,52.9724' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 108.484,52.9724 L 119.526,43.9957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 108.992,51.6429 L 103.452,49.5285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 103.452,49.5285 L 97.9121,47.4141' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 107.977,54.3018 L 102.437,52.1875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 102.437,52.1875 L 96.8972,50.0731' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.033,72.0974 L 129.158,85.3728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 119.526,43.9957 L 132.821,49.0699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 120.506,47.4158 L 129.812,50.9677' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 119.526,43.9957 L 117.273,29.9448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 132.821,49.0699 L 143.863,40.0932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 147.024,70.8482 L 145.511,76.5387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 145.511,76.5387 L 143.998,82.2291' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 143.819,71.824 L 142.76,75.8073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 142.76,75.8073 L 141.701,79.7906' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 141.312,84.7125 L 135.235,85.0427' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 135.235,85.0427 L 129.158,85.3728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 101.653,78.0594 L 95.8043,76.5044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 95.8043,76.5044 L 89.9558,74.9493' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 101.653,78.0594 L 105.362,91.7978' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 104.957,79.3783 L 107.553,88.9952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 129.158,85.3728 L 119.115,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 125.635,84.8765 L 118.605,91.9337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 143.863,40.0932 L 141.61,26.0423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 140.715,38.4362 L 139.138,28.6005' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 105.362,91.7978 L 119.115,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 117.273,29.9448 L 128.315,20.9681' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 120.725,30.8066 L 128.454,24.523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 87.2598,72.031 L 85.7252,66.3477' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 85.7252,66.3477 L 84.1907,60.6643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 85.8445,76.4663 L 81.8508,80.4754' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 81.8508,80.4754 L 77.8571,84.4845' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 84.1907,60.6643 L 70.4381,57.0076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 128.315,20.9681 L 141.61,26.0423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 128.315,20.9681 L 127.379,15.1285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 127.379,15.1285 L 126.442,9.28892' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 67.369,45.641 L 68.9036,51.3243' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 68.9036,51.3243 L 70.4381,57.0076' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 64.6729,42.7226 L 58.8245,41.1676' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 58.8245,41.1676 L 52.9761,39.6125' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 68.7843,41.2056 L 72.778,37.1966' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 72.778,37.1966 L 76.7717,33.1875' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='133.493' y='63.8323' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='141.786' y='85.3123' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='87.9001' y='75.1143' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='96.9303' y='48.6097' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='66.7286' y='43.9808' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='124.321' y='7.62871' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-2' d='M 144.952,66.1229 L 137.728,66.7298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.728,66.7298 L 130.504,67.3367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 148.731,63.091 L 151.675,56.8326' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 151.675,56.8326 L 154.62,50.5742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 148.589,68.7432 L 151.281,75.1457' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 151.281,75.1457 L 153.973,81.5483' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 120.826,53.4134 L 130.504,67.3367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 119.493,57.4375 L 126.268,67.1838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 120.826,53.4134 L 104.472,58.1744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 120.826,53.4134 L 128.045,38.0705' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 128.045,38.0705 L 144.942,36.6509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 129.438,37.1027 L 125.581,31.5541' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 125.581,31.5541 L 121.724,26.0055' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 126.653,39.0383 L 122.796,33.4896' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 122.796,33.4896 L 118.939,27.941' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 130.504,67.3367 L 126.633,83.8452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 144.942,36.6509 L 154.62,50.5742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 143.609,40.6749 L 150.384,50.4213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 144.942,36.6509 L 152.161,21.308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 154.62,50.5742 L 171.517,49.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 153.973,81.5483 L 148.78,86.0311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 148.78,86.0311 L 143.587,90.514' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 150.199,80.326 L 146.564,83.464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 146.564,83.464 L 142.928,86.602' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 138.688,91.1452 L 132.66,87.4952' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 132.66,87.4952 L 126.633,83.8452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 126.633,83.8452 L 109.977,87.0233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 123.499,80.9908 L 111.84,83.2154' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 104.472,58.1744 L 100.152,53.1697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 100.152,53.1697 L 95.8318,48.165' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 104.472,58.1744 L 98.8967,74.1878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 106.839,61.6916 L 102.936,72.901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 171.517,49.1546 L 178.736,33.8117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 169.531,45.4093 L 174.584,34.6693' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 152.161,21.308 L 169.058,19.8884' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 154.98,24.4744 L 166.807,23.4807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 109.977,87.0233 L 98.8967,74.1878' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 90.9428,45.8063 L 83.8395,47.1617' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 83.8395,47.1617 L 76.7363,48.517' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 169.058,19.8884 L 178.736,33.8117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 169.058,19.8884 L 176.277,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 51.4497,38.3922 L 58.5529,37.0369' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 58.5529,37.0369 L 65.6561,35.6816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 46.5606,36.0335 L 42.2403,31.0289' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 42.2403,31.0289 L 37.92,26.0242' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 48.0162,41.6857 L 45.7204,48.2794' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 45.7204,48.2794 L 43.4245,54.8731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 76.7363,48.517 L 65.6561,35.6816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 37.92,26.0242 L 21.2641,29.2022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 43.4245,54.8731 L 26.7686,58.0511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='145.517' y='66.7649' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='141.137' y='93.4763' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='120.442' y='24.995' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='93.3922' y='46.1868' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='91.508' y='40.5347' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='49.0002' y='39.7074' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 148.468,62.2444 L 153.857,58.3311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 153.857,58.3311 L 159.247,54.4178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 148.179,58.4461 L 151.952,55.7068' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 151.952,55.7068 L 155.725,52.9675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 143.783,62.9014 L 137.548,60.1233' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 137.548,60.1233 L 131.314,57.3452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 159.247,54.4178 L 157.557,38.2905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 159.247,54.4178 L 174.059,61.0178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 62.3253,72.7273 L 75.4469,63.1999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 66.199,73.9225 L 75.3841,67.2534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 62.3253,72.7273 L 47.5136,66.1273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 62.3253,72.7273 L 64.0154,88.8546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 75.4469,63.1999 L 90.2586,69.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 131.314,57.3452 L 118.192,66.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 131.314,57.3452 L 129.623,41.2179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 134.285,54.5881 L 133.102,43.299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 157.557,38.2905 L 170.678,28.7632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 157.557,38.2905 L 142.745,31.6906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 154.015,40.2629 L 143.647,35.6429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 142.745,31.6906 L 129.623,41.2179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 105.904,61.3973 L 112.048,64.1349' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 112.048,64.1349 L 118.192,66.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 100.856,62.1053 L 95.5574,65.9526' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 95.5574,65.9526 L 90.2586,69.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 47.5136,66.1273 L 42.2149,69.9746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 42.2149,69.9746 L 36.9162,73.8219' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 47.5136,66.1273 L 45.8235,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 90.2586,69.7999 L 91.9487,85.9272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 87.2867,72.557 L 88.4698,83.8461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 64.0154,88.8546 L 78.8272,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 67.5572,86.8822 L 77.9254,91.5022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 78.8272,95.4545 L 91.9487,85.9272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 174.059,61.0178 L 187.18,51.4905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 174.121,56.9644 L 183.306,50.2953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 170.678,28.7632 L 185.49,35.3632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 171.58,32.7155 L 181.948,37.3355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 45.8235,50 L 31.0118,43.4' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 31.0118,43.4 L 29.3217,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 14.51,20.6728 L 29.3217,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 14.51,20.6728 L 12.8198,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 187.18,51.4905 L 185.49,35.3632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='146.125' y='64.756' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='103.38' y='61.0834' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='36.3757' y='76.4654' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 120.144,48.178 L 114.975,53.352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 114.975,53.352 L 109.807,58.5261' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 115.992,47.1315 L 112.374,50.7533' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 112.374,50.7533 L 108.756,54.3751' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 120.144,48.178 L 115.377,30.4218' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 120.144,48.178 L 127.697,50.1977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 127.697,50.1977 L 135.249,52.2174' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 104.495,60.4743 L 96.9423,58.4546' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 96.9423,58.4546 L 89.3898,56.4349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 89.3898,56.4349 L 76.3961,69.4415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 84.8395,55.7872 L 75.7439,64.8917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 89.3898,56.4349 L 84.6227,38.6787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 84.6227,38.6787 L 97.6164,25.6722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 84.6227,38.6787 L 66.8618,33.9291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 81.0087,41.5185 L 68.576,38.1937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 115.377,30.4218 L 97.6164,25.6722' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 111.763,33.2616 L 99.3306,29.9368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 97.6164,25.6722 L 95.6442,18.3262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 95.6442,18.3262 L 93.672,10.9802' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 66.8618,33.9291 L 53.8681,46.9357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 76.3961,69.4415 L 58.6353,64.6918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 53.8681,46.9357 L 46.4186,44.9435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 46.4186,44.9435 L 38.9691,42.9514' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 53.8681,46.9357 L 58.6353,64.6918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 58.1344,48.6457 L 61.4714,61.075' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 58.6353,64.6918 L 53.5693,69.7628' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 53.5693,69.7628 L 48.5034,74.8337' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 138.728,55.9918 L 140.7,63.3378' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 140.7,63.3378 L 142.672,70.6838' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 140.561,50.2692 L 145.73,45.0951' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 145.73,45.0951 L 150.899,39.9211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 35.2846,39.1219 L 33.3124,31.7759' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 33.3124,31.7759 L 31.3401,24.4299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.4642,80.7625 L 48.4364,88.1085' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 48.4364,88.1085 L 50.4087,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 142.672,70.6838 L 160.433,75.4334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 150.899,39.9211 L 168.66,44.6707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='107.151' y='62.1038' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='137.905' y='53.8469' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='90.8676' y='8.92721' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan><tspan style='baseline-shift:sub;font-size:4.5px;'>2</tspan><tspan></tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='38.3563' y='43.1053' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='47.8905' y='78.6176' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 92.4077,60.1082 L 86.9235,54.9887' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 86.9235,54.9887 L 81.4394,49.8692' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 93.3146,55.8384 L 89.4757,52.2548' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 89.4757,52.2548 L 85.6368,48.6711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 97.8105,61.8057 L 105.403,59.4889' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 105.403,59.4889 L 112.995,57.1721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 81.4394,49.8692 L 85.6557,31.6505' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 81.4394,49.8692 L 73.847,52.186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 73.847,52.186 L 66.2547,54.5028' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 85.6557,31.6505 L 103.542,26.1926' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 89.4302,34.409 L 101.95,30.5885' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 103.542,26.1926 L 117.211,38.9534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 103.542,26.1926 L 105.289,18.6416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 105.289,18.6416 L 107.037,11.0905' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 117.211,38.9534 L 135.097,33.4955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 120.986,41.7119 L 133.506,37.8914' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 117.211,38.9534 L 112.995,57.1721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 135.097,33.4955 L 148.767,46.2563' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 148.767,46.2563 L 144.551,64.475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 144.491,48.1458 L 141.54,60.8989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 148.767,46.2563 L 156.255,43.9714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 156.255,43.9714 L 163.742,41.6866' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 144.551,64.475 L 126.665,69.9329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 144.551,64.475 L 149.93,69.4967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 149.93,69.4967 L 155.31,74.5184' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 126.665,69.9329 L 112.995,57.1721' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 127.167,65.2849 L 117.598,56.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 157.499,80.3525 L 155.752,87.9035' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 155.752,87.9035 L 154.004,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 169.564,43.5157 L 174.944,48.5375' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 174.944,48.5375 L 180.323,53.5592' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 60.8519,52.8053 L 55.3678,47.6858' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 55.3678,47.6858 L 49.8836,42.5663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 62.832,58.4438 L 61.0845,65.9948' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 61.0845,65.9948 L 59.337,73.5459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 49.8836,42.5663 L 31.9975,48.0242' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 31.9975,48.0242 L 30.25,55.5752' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 30.25,55.5752 L 28.5025,63.1262' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 30.4826,68.7647 L 35.9668,73.8843' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 35.9668,73.8843 L 41.4509,79.0038' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 41.4509,79.0038 L 59.337,73.5459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='95.1091' y='63.565' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='155.933' y='78.1708' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='166.653' y='41.7334' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='105.742' y='9.00235' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan><tspan style='baseline-shift:sub;font-size:4.5px;'>2</tspan><tspan></tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='63.5533' y='56.2621' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='29.8593' y='67.178' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>HN</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 93.9805,45.7957 L 98.7015,51.0316' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 98.7015,51.0316 L 103.422,56.2675' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 98.0672,44.9586 L 101.372,48.6238' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 101.372,48.6238 L 104.677,52.2889' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 93.9805,45.7957 L 99.5244,28.6935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 93.9805,45.7957 L 86.4877,47.3937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.4877,47.3937 L 78.9948,48.9917' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 108.617,58.594 L 116.109,56.996' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 116.109,56.996 L 123.602,55.3979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 123.602,55.3979 L 135.641,68.7501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 128.079,54.993 L 136.506,64.3395' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 123.602,55.3979 L 129.146,38.2958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 129.146,38.2958 L 117.107,24.9436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 129.146,38.2958 L 146.729,34.5459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 132.534,41.2499 L 144.842,38.6249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 99.5244,28.6935 L 117.107,24.9436' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 102.912,31.6476 L 115.22,29.0227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 75.4264,52.542 L 73.1401,59.5948' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 73.1401,59.5948 L 70.8538,66.6477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 73.8006,46.6652 L 69.0797,41.4293' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 69.0797,41.4293 L 64.3588,36.1934' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 42.2034,54.0491 L 44.4897,46.9962' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 44.4897,46.9962 L 46.7759,39.9433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 38.635,57.5993 L 31.1421,59.1973' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 31.1421,59.1973 L 23.6493,60.7954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 43.8292,59.9258 L 48.5501,65.1617' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 48.5501,65.1617 L 53.271,70.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 117.107,24.9436 L 119.394,17.8907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 119.394,17.8907 L 121.68,10.8378' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 146.729,34.5459 L 158.768,47.8981' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 135.641,68.7501 L 153.224,65.0002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 21.939,60.241 L 19.6528,67.2939' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 19.6528,67.2939 L 17.3665,74.3467' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 25.3595,61.3498 L 23.0732,68.4026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 23.0732,68.4026 L 20.7869,75.4555' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 23.6493,60.7954 L 11.6103,47.4432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 158.768,47.8981 L 166.16,46.3215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 166.16,46.3215 L 173.552,44.745' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 158.768,47.8981 L 153.224,65.0002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 154.516,49.3546 L 150.635,61.3261' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 153.224,65.0002 L 157.893,70.1781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 157.893,70.1781 L 162.561,75.356' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 70.8538,66.6477 L 53.271,70.3976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 64.3588,36.1934 L 46.7759,39.9433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 179.052,47.1445 L 183.721,52.3224' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 183.721,52.3224 L 188.39,57.5004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 164.292,81.3488 L 162.005,88.4017' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 162.005,88.4017 L 159.719,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='106.019' y='60.0468' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='76.3977' y='50.4445' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='41.2321' y='57.9444' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='15.9061' y='78.7964' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='120.713' y='8.83027' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan><tspan style='baseline-shift:sub;font-size:3.75px;'>2</tspan><tspan></tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='176.351' y='45.0471' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='163.064' y='79.2513' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 65.7814,65.1515 L 91.2523,59.6551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 65.7814,65.1515 L 48.2859,45.8413' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 65.7814,65.1515 L 73.7568,40.3449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 65.7814,65.1515 L 57.806,89.9581' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 91.2523,59.6551 L 98.1179,67.2329' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 98.1179,67.2329 L 104.984,74.8107' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 97.174,58.4294 L 101.98,63.7338' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 101.98,63.7338 L 106.786,69.0383' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 91.2523,59.6551 L 99.2277,34.8485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 112.512,78.1531 L 123.365,75.811' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 123.365,75.811 L 134.219,73.469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 134.219,73.469 L 151.714,92.7792' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 140.705,72.8664 L 152.952,86.3836' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 134.219,73.469 L 142.194,48.6623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 124.699,29.3521 L 99.2277,34.8485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 121.977,35.2707 L 104.148,39.1182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.699,29.3521 L 142.194,48.6623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 124.699,29.3521 L 132.674,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 48.2859,45.8413 L 22.815,51.3377' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 73.7568,40.3449 L 56.2613,21.0346' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 57.806,89.9581 L 32.3351,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 142.194,48.6623 L 167.665,43.1659' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 147.114,52.932 L 164.944,49.0846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 32.3351,95.4545 L 26.8387,69.9837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 32.3351,95.4545 L 14.8396,76.1443' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 22.815,51.3377 L 14.8396,76.1443' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 22.815,51.3377 L 30.7905,26.531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 56.2613,21.0346 L 30.7905,26.531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 56.2613,21.0346 L 26.8387,69.9837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 151.714,92.7792 L 177.185,87.2828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 167.665,43.1659 L 185.16,62.4762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 177.185,87.2828 L 185.16,62.4762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 173.42,81.9667 L 179.003,64.6021' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='108.748' y='80.2682' style='font-size:8px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 97.1347,46.846 L 99.3038,39.3321' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 99.3038,39.3321 L 101.473,31.8182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 98.958,52.841 L 104.152,58.2387' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 104.152,58.2387 L 109.346,63.6364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 93.4905,50.6764 L 85.6723,52.6109' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 85.6723,52.6109 L 77.854,54.5455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 101.473,31.8182 L 119.843,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 102.837,30.506 L 97.7486,25.2185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 97.7486,25.2185 L 92.6607,19.931' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 100.109,33.1303 L 95.0214,27.8428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 95.0214,27.8428 L 89.9335,22.5553' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 109.346,63.6364 L 127.716,59.0909' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 111.192,59.2805 L 124.051,56.0987' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 109.346,63.6364 L 104.097,81.8182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 119.843,27.2727 L 125.092,9.09091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 124.267,25.5952 L 127.941,12.8679' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 119.843,27.2727 L 132.965,40.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 127.716,59.0909 L 132.965,40.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 127.716,59.0909 L 140.838,72.7273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 132.965,40.9091 L 151.335,36.3636' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 134.811,36.5532 L 147.67,33.3714' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 77.854,54.5455 L 64.7324,40.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 64.2779,39.0721 L 56.5657,40.9803' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 56.5657,40.9803 L 48.8534,42.8886' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 65.187,42.7461 L 57.4747,44.6544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 57.4747,44.6544 L 49.7625,46.5627' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 64.7324,40.9091 L 66.9015,33.3952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 66.9015,33.3952 L 69.0706,25.8813' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 104.097,81.8182 L 117.219,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 108.793,81.2393 L 117.978,90.7848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 125.092,9.09091 L 143.462,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 140.838,72.7273 L 135.589,90.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 136.414,74.4048 L 132.74,87.1321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 151.335,36.3636 L 156.584,18.1818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 117.219,95.4545 L 135.589,90.9091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 143.462,4.54545 L 156.584,18.1818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 142.703,9.21523 L 151.888,18.7607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='96.2243' y='50.9462' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='90.6663' y='19.128' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='48.6772' y='46.4008' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='67.6661' y='23.6735' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 137.492,68.6571 L 142.521,65.3533' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 142.521,65.3533 L 147.55,62.0495' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 137.403,65.2341 L 140.924,62.9214' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 140.924,62.9214 L 144.444,60.6088' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.289,68.9809 L 127.841,66.2412' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 127.841,66.2412 L 122.393,63.5015' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 59.9192,74.3938 L 72.0786,66.4055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 63.3408,75.6274 L 71.8524,70.0357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 59.9192,74.3938 L 46.9215,67.8575' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 59.9192,74.3938 L 60.7575,88.9183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 147.55,62.0495 L 146.712,47.525' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 147.55,62.0495 L 160.548,68.5858' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 46.9215,67.8575 L 41.5549,65.1588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 41.5549,65.1588 L 36.1884,62.4602' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 46.9215,67.8575 L 53.4577,54.8598' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.9215,67.8575 L 40.3852,80.8553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 72.0786,66.4055 L 85.0764,72.9418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 122.393,63.5015 L 110.234,71.4898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 122.393,63.5015 L 121.555,48.977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 125.172,61.1552 L 124.585,50.988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 146.712,47.525 L 158.871,39.5368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 146.712,47.525 L 133.714,40.9888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 143.455,49.1441 L 134.356,44.5688' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 133.714,40.9888 L 121.555,48.977' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 99.5005,66.0924 L 104.867,68.7911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 104.867,68.7911 L 110.234,71.4898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 94.9711,66.4413 L 90.0237,69.6916' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 90.0237,69.6916 L 85.0764,72.9418' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 85.0764,72.9418 L 85.9147,87.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 82.2972,75.2881 L 82.884,85.4553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 60.7575,88.9183 L 73.7553,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 64.0144,87.2992 L 73.1128,91.8746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 73.7553,95.4545 L 85.9147,87.4663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 53.4577,54.8598 L 45.4694,42.7004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 160.548,68.5858 L 172.707,60.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 160.774,64.9557 L 169.286,59.3639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 158.871,39.5368 L 171.869,46.073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 159.514,43.1168 L 168.612,47.6921' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 45.4694,42.7004 L 52.0057,29.7026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 44.0174,17.5432 L 52.0057,29.7026' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 44.0174,17.5432 L 50.5537,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 172.707,60.5975 L 171.869,46.073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='135.391' y='70.7652' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='97.2358' y='65.681' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='35.7034' y='62.0487' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 149.193,62.1579 L 155.42,60.6229' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 155.42,60.6229 L 161.647,59.0879' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 150.34,58.7712 L 154.699,57.6967' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 154.699,57.6967 L 159.058,56.6222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 144.839,60.4283 L 140.708,56.1277' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 140.708,56.1277 L 136.577,51.8271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 161.647,59.0879 L 165.839,44.6138' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 161.647,59.0879 L 172.086,69.9553' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 136.577,51.8271 L 121.946,55.4337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 136.577,51.8271 L 140.769,37.353' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 140.101,50.4944 L 143.035,40.3625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 61.3678,30.0447 L 71.8067,40.9121' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 61.3678,30.0447 L 46.7368,33.6513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 59.8945,33.5119 L 49.6528,36.0365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 165.839,44.6138 L 180.47,41.0072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 165.839,44.6138 L 155.4,33.7464' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 162.1,45.0715 L 154.793,37.4643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 46.7368,33.6513 L 42.5448,48.1254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 155.4,33.7464 L 140.769,37.353' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 113.853,47.0082 L 117.9,51.221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 117.9,51.221 L 121.946,55.4337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 109.162,45.1445 L 103.019,46.6587' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 103.019,46.6587 L 96.8766,48.1729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 71.8067,40.9121 L 86.4376,37.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 74.7227,43.2973 L 84.9643,40.7727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 71.8067,40.9121 L 67.6147,55.3862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 96.8766,48.1729 L 86.4376,37.3055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 96.8766,48.1729 L 92.6845,62.647' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 93.3529,49.5056 L 90.4185,59.6375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 78.0536,66.2536 L 92.6845,62.647' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 78.0536,66.2536 L 67.6147,55.3862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 78.6612,62.5357 L 71.354,54.9285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 172.086,69.9553 L 186.717,66.3487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 173.559,66.4881 L 183.801,63.9635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 42.5448,48.1254 L 27.9139,51.732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 180.47,41.0072 L 190.909,51.8746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 179.863,44.7251 L 187.17,52.3323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 27.9139,51.732 L 23.7219,66.2061' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 23.7219,66.2061 L 9.09091,69.8128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 186.717,66.3487 L 190.909,51.8746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='147.016' y='63.448' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='111.507' y='45.3197' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 148.468,62.2444 L 153.857,58.3311' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 153.857,58.3311 L 159.247,54.4178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 148.179,58.4461 L 151.952,55.7068' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 151.952,55.7068 L 155.725,52.9675' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 143.783,62.9014 L 137.548,60.1233' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 137.548,60.1233 L 131.314,57.3452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 159.247,54.4178 L 157.557,38.2905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 159.247,54.4178 L 174.059,61.0178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 62.3253,72.7273 L 75.4469,63.1999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 66.199,73.9225 L 75.3841,67.2534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 62.3253,72.7273 L 47.5136,66.1273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 62.3253,72.7273 L 64.0154,88.8546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 46.5609,64.8151 L 41.2622,68.6624' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 41.2622,68.6624 L 35.9634,72.5097' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 48.4663,67.4395 L 43.1676,71.2868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 43.1676,71.2868 L 37.8689,75.1341' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 47.5136,66.1273 L 45.8235,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 75.4469,63.1999 L 90.2586,69.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 131.314,57.3452 L 118.192,66.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 131.314,57.3452 L 129.623,41.2179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 134.285,54.5881 L 133.102,43.299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 157.557,38.2905 L 170.678,28.7632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 157.557,38.2905 L 142.745,31.6906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 154.015,40.2629 L 143.647,35.6429' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 142.745,31.6906 L 129.623,41.2179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 105.904,61.3973 L 112.048,64.1349' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 112.048,64.1349 L 118.192,66.8725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 100.856,62.1053 L 95.5574,65.9526' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 95.5574,65.9526 L 90.2586,69.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 90.2586,69.7999 L 91.9487,85.9272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 87.2867,72.557 L 88.4698,83.8461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 64.0154,88.8546 L 78.8272,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 67.5572,86.8822 L 77.9254,91.5022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 78.8272,95.4545 L 91.9487,85.9272' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 45.8235,50 L 31.0118,43.4' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 174.059,61.0178 L 187.18,51.4905' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 174.121,56.9644 L 183.306,50.2953' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 170.678,28.7632 L 185.49,35.3632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 171.58,32.7155 L 181.948,37.3355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 31.0118,43.4 L 29.3217,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 14.51,20.6728 L 29.3217,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 14.51,20.6728 L 12.8198,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 187.18,51.4905 L 185.49,35.3632' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='146.125' y='64.756' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='36.3757' y='76.4654' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='103.38' y='61.0834' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 93.4315,40.9126 L 96.3256,28.2352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 93.4315,40.9126 L 97.2582,44.4635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 97.2582,44.4635 L 101.085,48.0145' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 96.3485,40.0715 L 99.0272,42.5572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 99.0272,42.5572 L 101.706,45.0428' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 93.4315,40.9126 L 81.0055,44.7449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 96.3256,28.2352 L 108.752,24.4028' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 98.9559,30.1455 L 107.654,27.4629' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 96.3256,28.2352 L 86.7936,19.3901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 104.842,49.1783 L 110.116,47.5518' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 110.116,47.5518 L 115.389,45.9253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 108.752,24.4028 L 109.951,19.1477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 109.951,19.1477 L 111.151,13.8927' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 108.752,24.4028 L 118.283,33.2479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 115.389,45.9253 L 118.283,33.2479' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.288,43.4448 L 115.314,34.5707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 115.389,45.9253 L 124.921,54.7703' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 81.0055,44.7449 L 71.4736,35.8999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 81.3447,41.5118 L 74.6724,35.3203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 81.0055,44.7449 L 78.1114,57.4223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 86.7936,19.3901 L 87.9933,14.135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 87.9933,14.135 L 89.193,8.87997' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 86.7936,19.3901 L 74.3676,23.2225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 85.6962,22.4502 L 76.998,25.1328' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 71.4736,35.8999 L 74.3676,23.2225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 71.4736,35.8999 L 66.2727,37.5039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 66.2727,37.5039 L 61.0717,39.108' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 78.1114,57.4223 L 65.6854,61.2547' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 77.014,60.4824 L 68.3158,63.165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 78.1114,57.4223 L 87.6433,66.2674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 65.6854,61.2547 L 62.7913,73.9321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 74.2017,82.1978 L 79.4755,80.5713' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 79.4755,80.5713 L 84.7492,78.9448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 71.8285,84.9444 L 70.6288,90.1995' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 70.6288,90.1995 L 69.4292,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 70.4448,81.034 L 66.6181,77.4831' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 66.6181,77.4831 L 62.7913,73.9321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 124.921,54.7703 L 122.027,67.4477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 127.023,57.2507 L 124.997,66.1249' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 124.921,54.7703 L 137.347,50.938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 87.6433,66.2674 L 84.7492,78.9448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 122.027,67.4477 L 131.559,76.2928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 137.347,50.938 L 146.879,59.783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 137.008,54.1711 L 143.68,60.3626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 146.879,59.783 L 143.985,72.4604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 131.559,76.2928 L 143.985,72.4604' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 132.657,73.2327 L 141.355,70.5501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='102.963' y='50.4078' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='72.3232' y='83.4273' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='110.055' y='12.3756' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='88.097' y='7.36289' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='60.6383' y='40.3824' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 123.785,73.2691 L 118.183,73.1944' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 118.183,73.1944 L 112.581,73.1198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 122.139,70.6274 L 118.218,70.5751' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 118.218,70.5751 L 114.296,70.5229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 126.976,71.1113 L 129.676,66.5755' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 129.676,66.5755 L 132.376,62.0397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 112.581,73.1198 L 109.881,77.6556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 109.881,77.6556 L 107.181,82.1915' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 112.581,73.1198 L 106.183,61.6907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 132.376,62.0397 L 125.979,50.6106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 129.131,61.6047 L 124.653,53.6044' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 132.376,62.0397 L 145.473,62.2141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 73.2913,72.5964 L 86.3877,72.7709' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 75.2208,75.2419 L 84.3883,75.364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 73.2913,72.5964 L 66.8941,61.1674' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 73.2913,72.5964 L 66.592,83.851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 103.842,84.3472 L 98.3136,84.2736' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 98.3136,84.2736 L 92.7848,84.1999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.3877,72.7709 L 92.7848,84.1999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 92.7848,84.1999 L 86.0855,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 89.529,84.5483 L 84.8395,92.4265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 125.979,50.6106 L 112.883,50.4361' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 125.979,50.6106 L 132.678,39.356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 112.883,50.4361 L 106.183,61.6907' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 114.129,53.4642 L 109.439,61.3424' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 66.8941,61.1674 L 61.3653,61.0937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 61.3653,61.0937 L 55.8365,61.0201' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 66.8941,61.1674 L 73.5934,49.9128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 66.592,83.851 L 72.9891,95.2801' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 69.8373,84.286 L 74.3153,92.2863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 72.9891,95.2801 L 86.0855,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 145.473,62.2141 L 152.172,50.9595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 144.227,59.1861 L 148.916,51.3079' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 132.678,39.356 L 145.775,39.5305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 134.608,42.0015 L 143.775,42.1236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 73.5934,49.9128 L 67.1963,38.4837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 67.1963,38.4837 L 73.8956,27.2291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 67.4985,15.8001 L 73.8956,27.2291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 67.4985,15.8001 L 74.1978,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 152.172,50.9595 L 145.775,39.5305' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='124.221' y='73.9491' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='104.279' y='85.0293' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='55.3999' y='61.6478' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 123.753,57.3661 L 116.876,38.2058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 118.889,55.8674 L 114.076,42.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 123.753,57.3661 L 110.598,72.9014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 123.753,57.3661 L 143.784,60.9911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 116.876,38.2058 L 96.8448,34.5808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 116.876,38.2058 L 122.017,32.1346' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 122.017,32.1346 L 127.158,26.0633' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 93.5068,69.8086 L 102.052,71.355' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 102.052,71.355 L 110.598,72.9014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 89.3484,65.8836 L 86.519,57.9998' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.519,57.9998 L 83.6896,50.1161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 87.6931,72.6692 L 82.552,78.7405' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 82.552,78.7405 L 77.4109,84.8117' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 108.682,73.5891 L 111.511,81.4728' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 111.511,81.4728 L 114.34,89.3566' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 112.514,72.2138 L 115.343,80.0975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 115.343,80.0975 L 118.172,87.9813' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 96.8448,34.5808 L 89.9684,15.4205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 91.9812,33.082 L 87.1678,19.6698' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 96.8448,34.5808 L 83.6896,50.1161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 83.6896,50.1161 L 63.6581,46.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 81.4099,45.566 L 67.3879,43.0285' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 143.784,60.9911 L 156.939,45.4559' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 142.65,56.0298 L 151.859,45.1551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 63.6581,46.4911 L 56.7817,27.3308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 63.6581,46.4911 L 58.5171,52.5623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 58.5171,52.5623 L 53.376,58.6336' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 133.2,23.244 L 141.632,24.7698' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 141.632,24.7698 L 150.063,26.2955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 89.9684,15.4205 L 69.9368,11.7955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 156.939,45.4559 L 150.063,26.2955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 150.063,26.2955 L 150.154,5.93887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 150.063,26.2955 L 170.126,22.8508' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 56.7817,27.3308 L 48.3504,25.805' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 48.3504,25.805 L 39.919,24.2792' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 56.7817,27.3308 L 69.9368,11.7955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 61.8621,27.6315 L 71.0706,16.7568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 47.3342,61.4529 L 38.9029,59.9272' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 38.9029,59.9272 L 30.4715,58.4014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 35.5326,20.313 L 32.7032,12.4292' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 32.7032,12.4292 L 29.8738,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='90.566' y='70.2943' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.031' y='23.6884' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='114.984' y='93.0796' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='50.503' y='63.0442' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='39.2404' y='24.7236' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 95.4923,33.7267 L 96.7912,40.9298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 96.7912,40.9298 L 98.0902,48.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 92.4168,29.874 L 85.3979,27.3501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 85.3979,27.3501 L 78.3789,24.8262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 97.5085,29.4231 L 104,25.9393' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 104,25.9393 L 110.491,22.4555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 64.9227,36.2065 L 78.3789,24.8262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 64.9227,36.2065 L 68.0503,53.5501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 68.8606,38.1825 L 71.0499,50.323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 64.9227,36.2065 L 48.339,30.2433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 98.0902,48.133 L 115.551,50.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 98.0902,48.133 L 84.634,59.5133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 93.7957,47.1488 L 84.3764,55.115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 68.0503,53.5501 L 54.5941,64.9304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 68.0503,53.5501 L 84.634,59.5133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 80.1133,24.5135 L 78.8143,17.3103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 78.8143,17.3103 L 77.5154,10.1071' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 76.6446,25.139 L 75.3456,17.9358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 75.3456,17.9358 L 74.0467,10.7326' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 115.551,50.518 L 119.508,56.3354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.508,56.3354 L 123.465,62.1528' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.653,50.2809 L 122.423,54.3531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 122.423,54.3531 L 125.192,58.4253' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 115.551,50.518 L 123.215,34.6485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 55.5614,65.965 L 55.7869,65.6941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 56.5287,66.9996 L 56.9798,66.4578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 57.4961,68.0342 L 58.1726,67.2216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 58.4634,69.0688 L 59.3654,67.9853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 59.4307,70.1034 L 60.5583,68.749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 60.398,71.1381 L 61.7511,69.5128' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 61.3653,72.1727 L 62.9439,70.2765' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 62.3327,73.2073 L 64.1368,71.0402' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 63.3,74.2419 L 65.3296,71.804' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 64.2673,75.2765 L 66.5224,72.5677' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 54.5941,64.9304 L 45.8417,80.2266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 54.5941,64.9304 L 38.0104,58.9671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 123.215,34.6485 L 110.491,22.4555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 123.215,34.6485 L 140.791,33.3509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 126.111,37.9689 L 138.414,37.0607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 128.009,64.9021 L 135.523,64.3473' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 135.523,64.3473 L 143.038,63.7925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 38.0104,58.9671 L 36.7114,51.7639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 36.7114,51.7639 L 35.4125,44.5608' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 36.8723,57.6215 L 31.5159,62.1516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 31.5159,62.1516 L 26.1594,66.6817' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 39.1484,60.3127 L 33.792,64.8428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 33.792,64.8428 L 28.4355,69.3729' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 48.339,30.2433 L 42.9826,34.7734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 42.9826,34.7734 L 37.6261,39.3035' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 140.791,33.3509 L 150.702,47.923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 143.038,63.7925 L 152.95,78.3646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 147.439,63.996 L 154.377,74.1965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 143.038,63.7925 L 150.702,47.923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 150.702,47.923 L 168.278,46.6255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 153.598,51.2434 L 165.901,50.3352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 45.8417,80.2266 L 54.7125,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 152.95,78.3646 L 170.525,77.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 168.278,46.6255 L 178.189,61.1975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 178.189,61.1975 L 170.525,77.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 173.866,62.0451 L 168.501,73.1538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='96.921' y='31.6706' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='127.421' y='65.9712' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='37.0387' y='42.5047' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='73.0956' y='8.36383' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.9823' y='77.0871' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='26.71' y='71.2286' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 93.5728,52.3749 L 95.4309,60.433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 95.4309,60.433 L 97.2891,68.4911' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 97.4611,51.4783 L 99.3192,59.5364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 99.3192,59.5364 L 101.177,67.5945' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 95.5169,51.9266 L 87.4188,49.4484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 87.4188,49.4484 L 79.3207,46.9702' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 95.5169,51.9266 L 110.112,38.3233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 73.5563,48.7745 L 67.6997,54.233' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 67.6997,54.233 L 61.8431,59.6915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 110.112,38.3233 L 105.629,18.8817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 113.328,34.5105 L 110.19,20.9014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 110.112,38.3233 L 129.191,44.1617' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 105.629,18.8817 L 120.225,5.27851' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 129.191,44.1617 L 143.786,30.5584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 128.659,39.2021 L 138.876,29.6798' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 129.191,44.1617 L 131.049,52.2198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 131.049,52.2198 L 132.907,60.2779' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 120.225,5.27851 L 139.303,11.1168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 121.919,9.96995 L 135.274,14.0568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 143.786,30.5584 L 139.303,11.1168' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 143.786,30.5584 L 162.865,36.3968' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 136.556,64.4852 L 144.654,66.9634' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 144.654,66.9634 L 152.752,69.4416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 140.153,61.413 L 145.822,63.1477' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 145.822,63.1477 L 151.49,64.8824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 162.865,36.3968 L 167.348,55.8383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 159.649,40.2096 L 162.787,53.8187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 152.752,69.4416 L 157.235,88.8832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 152.752,69.4416 L 167.348,55.8383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 167.348,55.8383 L 186.426,61.6767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 157.235,88.8832 L 176.314,94.7215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 161.265,85.9432 L 174.62,90.0301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 186.426,61.6767 L 190.909,81.1183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 183.21,65.4895 L 186.348,79.0986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 176.314,94.7215 L 190.909,81.1183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 61.8431,59.6915 L 42.7647,53.8531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 42.7647,53.8531 L 36.9081,59.3116' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 36.9081,59.3116 L 31.0515,64.7701' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 25.2872,66.5744 L 17.189,64.0962' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 17.189,64.0962 L 9.09091,61.618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 28.9361,70.7817 L 30.7943,78.8398' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 30.7943,78.8398 L 32.6524,86.8979' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='97.5593' y='72.3657' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='76.4385' y='47.0858' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='74.2214' y='40.4352' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='135.891' y='64.6008' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='28.1693' y='68.4539' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 124.996,46.1776 L 109.043,40.9565' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 123.647,42.204 L 112.48,38.5492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 124.996,46.1776 L 137.493,34.9731' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 124.996,46.1776 L 126.429,52.9917' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 126.429,52.9917 L 127.862,59.8058' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 109.043,40.9565 L 105.589,24.5309' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 109.043,40.9565 L 96.5455,52.161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 137.493,34.9731 L 134.039,18.5475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 133.69,33.2002 L 131.272,21.7022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 137.493,34.9731 L 153.446,40.1942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 130.875,63.3969 L 137.639,65.6106' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 137.639,65.6106 L 144.402,67.8244' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 133.948,60.8705 L 138.683,62.4202' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 138.683,62.4202 L 143.417,63.9698' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 105.589,24.5309 L 110.625,20.0155' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 110.625,20.0155 L 115.662,15.5002' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 109.341,25.6758 L 112.866,22.5151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 112.866,22.5151 L 116.392,19.3543' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 134.039,18.5475 L 127.275,16.3337' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 127.275,16.3337 L 120.511,14.12' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 134.039,18.5475 L 138.981,14.1164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 138.981,14.1164 L 143.924,9.68537' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 153.446,40.1942 L 156.9,56.6199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 150.679,43.349 L 153.097,54.8469' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 144.402,67.8244 L 156.9,56.6199' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 144.402,67.8244 L 147.857,84.25' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 94.9029,52.5065 L 96.336,59.3206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 96.336,59.3206 L 97.7691,66.1346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 98.188,51.8156 L 99.6211,58.6297' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 99.6211,58.6297 L 101.054,65.4437' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 96.5455,52.161 L 89.7817,49.9473' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 89.7817,49.9473 L 83.0179,47.7335' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 156.9,56.6199 L 172.852,61.841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 147.857,84.25 L 163.809,89.4711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 151.294,81.8427 L 162.461,85.4975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 147.857,84.25 L 135.359,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 78.1685,49.1137 L 73.132,53.6291' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 73.132,53.6291 L 68.0954,58.1444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 42.0701,61.954 L 47.1066,57.4387' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 47.1066,57.4387 L 52.1432,52.9233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 37.2207,63.3342 L 30.4569,61.1205' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 30.4569,61.1205 L 23.6931,58.9067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 40.2337,66.9253 L 41.6668,73.7394' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 41.6668,73.7394 L 43.0999,80.5535' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 68.0954,58.1444 L 52.1432,52.9233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 172.852,61.841 L 176.307,78.2666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 170.085,64.9957 L 172.504,76.4937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 176.307,78.2666 L 163.809,89.4711' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='130.315' y='63.4425' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='118.086' y='14.1656' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='144.483' y='8.1822' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='97.9467' y='69.4259' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='80.5932' y='47.7792' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='78.728' y='42.1842' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='39.6454' y='64.9671' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 125.437,46.7012 L 122.396,40.6054' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 122.396,40.6054 L 119.354,34.5097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 127.521,43.3772 L 125.392,39.1102' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 125.392,39.1102 L 123.263,34.8432' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 129.249,49.6389 L 136.396,50.0735' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 136.396,50.0735 L 143.543,50.5082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 102.641,33.4934 L 119.354,34.5097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 102.641,33.4934 L 93.4038,47.4591' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 102.641,33.4934 L 95.1642,18.5112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 104.516,29.7508 L 99.2821,19.2633' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 119.354,34.5097 L 128.59,20.5439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 91.9056,48.2068 L 94.9475,54.3025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 94.9475,54.3025 L 97.9894,60.3982' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 94.902,46.7115 L 97.9439,52.8072' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 97.9439,52.8072 L 100.986,58.903' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 93.4038,47.4591 L 86.2567,47.0245' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 86.2567,47.0245 L 79.1095,46.5899' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 143.543,50.5082 L 152.78,36.5424' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 142.135,46.566 L 148.601,36.7899' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 143.543,50.5082 L 151.019,65.4903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 128.59,20.5439 L 121.114,5.5618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 128.59,20.5439 L 145.303,21.5603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 130.894,24.039 L 142.593,24.7504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 152.78,36.5424 L 145.303,21.5603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 151.019,65.4903 L 141.783,79.4561' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 152.427,69.4325 L 145.961,79.2086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 151.019,65.4903 L 167.732,66.5066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 74.8451,49.2334 L 71.1495,54.821' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 71.1495,54.821 L 67.454,60.4086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 95.1642,18.5112 L 104.401,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 43.3499,70.5673 L 47.0454,64.9798' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 47.0454,64.9798 L 50.7409,59.3922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 39.0854,73.2109 L 31.9383,72.7763' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 31.9383,72.7763 L 24.7911,72.3417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 42.8968,76.1487 L 45.9387,82.2444' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 45.9387,82.2444 L 48.9806,88.3401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 67.454,60.4086 L 50.7409,59.3922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 104.401,4.54545 L 121.114,5.5618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 106.705,8.04052 L 118.404,8.75196' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 141.783,79.4561 L 149.259,94.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 167.732,66.5066 L 175.209,81.4888' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 165.858,70.2492 L 171.091,80.7367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 175.209,81.4888 L 165.972,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 149.259,94.4382 L 165.972,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 151.969,91.248 L 163.668,91.9595' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='128.691' y='50.329' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='98.8319' y='63.2785' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='78.5514' y='47.28' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>HN</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='41.5042' y='74.1952' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 101.267,45.5381 L 114.064,58.8516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 105.849,44.9757 L 114.807,54.2952' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 101.267,45.5381 L 83.3388,49.9639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 101.267,45.5381 L 106.399,27.7988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 114.064,58.8516 L 131.993,54.4258' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 114.064,58.8516 L 111.944,66.1824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 111.944,66.1824 L 109.823,73.5132' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 131.993,54.4258 L 144.79,67.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 131.993,54.4258 L 137.124,36.6865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 129.214,50.7386 L 132.806,38.3211' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.124,36.6865 L 124.327,23.3729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 137.124,36.6865 L 155.052,32.2607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 81.5649,49.4508 L 79.4444,56.7816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 79.4444,56.7816 L 77.3238,64.1123' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 85.1128,50.477 L 82.9922,57.8078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 82.9922,57.8078 L 80.8717,65.1386' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 83.3388,49.9639 L 78.2741,44.6948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 78.2741,44.6948 L 73.2094,39.4257' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 106.399,27.7988 L 124.327,23.3729' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 109.973,30.7206 L 122.523,27.6225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 111.601,79.3663 L 116.665,84.6354' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 116.665,84.6354 L 121.73,89.9045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 115.783,78.3876 L 119.328,82.076' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 119.328,82.076 L 122.873,85.7643' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 155.052,32.2607 L 167.849,45.5742' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 159.635,31.6983 L 168.593,41.0178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 155.052,32.2607 L 160.184,14.5213' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 67.8741,37.3089 L 60.2438,39.1926' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 60.2438,39.1926 L 52.6134,41.0762' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 24.5556,31.5299 L 32.186,29.6463' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 32.186,29.6463 L 39.8163,27.7627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 19.2203,29.4132 L 14.1556,24.1441' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 14.1556,24.1441 L 9.09091,18.8749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 20.9977,35.2662 L 18.8772,42.597' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 18.8772,42.597 L 16.7566,49.9278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 52.6134,41.0762 L 39.8163,27.7627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 144.79,67.7393 L 139.658,85.4787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 140.472,69.374 L 136.88,81.7915' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 121.73,89.9045 L 139.658,85.4787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 167.849,45.5742 L 185.778,41.1484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 160.184,14.5213 L 178.112,10.0955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 163.758,17.4431 L 176.308,14.3451' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 178.112,10.0955 L 190.909,23.409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 185.778,41.1484 L 190.909,23.409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 183,37.4612 L 186.592,25.0437' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='110.985' y='77.5143' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='75.9485' y='68.6266' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='70.5418' y='37.5737' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='68.4897' y='31.4182' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='21.888' y='33.1118' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 107.294,53.1635 L 112.921,49.1067' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 112.921,49.1067 L 118.547,45.0499' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 107.008,49.2084 L 110.946,46.3686' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 110.946,46.3686 L 114.884,43.5288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 102.418,53.8255 L 95.94,50.9134' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 95.94,50.9134 L 89.4619,48.0013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 118.547,45.0499 L 116.843,28.2578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 118.547,45.0499 L 133.941,51.9702' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 89.4619,48.0013 L 87.7579,31.2092' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 92.5647,45.1417 L 91.3719,33.3872' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 89.4619,48.0013 L 75.7716,57.873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 116.843,28.2578 L 130.533,18.3861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 116.843,28.2578 L 101.448,21.3375' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 113.149,30.2986 L 102.373,25.4544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 133.941,51.9702 L 135.645,68.7622' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 133.941,51.9702 L 147.631,42.0985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 134.02,47.7514 L 143.603,40.8412' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 101.448,21.3375 L 87.7579,31.2092' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 101.448,21.3375 L 99.7443,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 135.645,68.7622 L 150.232,77.2538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 135.645,68.7622 L 123.061,80.0109' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 75.7716,57.873 L 75.711,74.7512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 75.7716,57.873 L 59.7382,52.5997' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 147.631,42.0985 L 145.927,25.3064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 130.533,18.3861 L 145.927,25.3064' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 131.458,22.503 L 142.234,27.3472' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 150.232,77.2538 L 146.663,93.7506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 123.061,80.0109 L 129.871,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 75.711,74.7512 L 59.6402,79.9092' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 59.7382,52.5997 L 49.7684,66.2188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 129.871,95.4545 L 146.663,93.7506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 59.6402,79.9092 L 49.7684,66.2188' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='104.856' y='55.7655' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 110.034,39.6865 L 106.249,44.6463' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 106.249,44.6463 L 102.465,49.6062' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 106.389,39.259 L 103.739,42.7308' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 103.739,42.7308 L 101.09,46.2027' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 110.034,39.6865 L 103.954,25.1166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 110.034,39.6865 L 125.693,41.7055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 98.176,51.9434 L 91.4872,51.0809' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 91.4872,51.0809 L 84.7985,50.2185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 103.954,25.1166 L 88.2955,23.0976' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 101.201,27.9454 L 90.2404,26.5321' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 103.954,25.1166 L 113.531,12.5657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 88.2955,23.0976 L 78.7179,35.6485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 88.2955,23.0976 L 82.2149,8.52768' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 84.7985,50.2185 L 75.2208,62.7694' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 84.7985,50.2185 L 78.7179,35.6485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 86.8004,46.8169 L 82.5439,36.6179' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 125.693,41.7055 L 135.27,29.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 124.619,37.9074 L 131.323,29.1217' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 125.693,41.7055 L 131.773,56.2755' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 113.531,12.5657 L 129.19,14.5847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 115.476,16.0002 L 126.437,17.4135' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 129.19,14.5847 L 135.27,29.1546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 75.2208,62.7694 L 59.5626,60.7504' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 131.773,56.2755 L 147.431,58.2945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 147.431,58.2945 L 153.512,72.8644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 59.5626,60.7504 L 49.985,73.3013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 175.251,89.4533 L 169.17,74.8834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 175.251,89.4533 L 190.909,91.4723' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 24.7491,83.8333 L 34.3268,71.2823' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 24.7491,83.8333 L 9.09091,81.8143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 169.17,74.8834 L 153.512,72.8644' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 34.3268,71.2823 L 49.985,73.3013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='98.7023' y='53.0269' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 112.324,39.3105 L 108.079,44.57' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 108.079,44.57 L 103.834,49.8296' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 108.374,38.7274 L 105.402,42.4091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 105.402,42.4091 L 102.43,46.0907' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 112.324,39.3105 L 106.134,23.2601' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 112.324,39.3105 L 129.32,41.9748' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 99.0344,52.3071 L 91.7794,51.1698' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 91.7794,51.1698 L 84.5243,50.0324' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 106.134,23.2601 L 89.1389,20.5959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 103.052,26.2595 L 91.1554,24.3945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 106.134,23.2601 L 116.939,9.87398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 89.1389,20.5959 L 78.334,33.982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 89.1389,20.5959 L 82.9487,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 84.5243,50.0324 L 73.7194,63.4186' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 84.5243,50.0324 L 78.334,33.982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 86.8058,46.3868 L 82.4726,35.1515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 129.32,41.9748 L 140.125,28.5887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 128.263,37.8059 L 135.827,28.4356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 129.32,41.9748 L 135.51,58.0252' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 116.939,9.87398 L 133.934,12.5382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 118.955,13.6727 L 130.852,15.5376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 133.934,12.5382 L 140.125,28.5887' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 73.7194,63.4186 L 56.7242,60.7543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 135.51,58.0252 L 152.505,60.6895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 152.505,60.6895 L 158.695,76.7399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 56.7242,60.7543 L 45.9193,74.1404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 175.691,79.4041 L 158.695,76.7399' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 175.691,79.4041 L 181.881,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 28.924,71.4762 L 45.9193,74.1404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 28.924,71.4762 L 18.1191,84.8623' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='99.6078' y='53.5568' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 105.969,43.1073 L 89.8228,47.8343' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 102.602,40.5871 L 91.2994,43.896' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 105.969,43.1073 L 118.136,54.727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 105.969,43.1073 L 109.949,26.7606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 89.8228,47.8343 L 88.1744,54.6057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 88.1744,54.6057 L 86.526,61.377' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 89.8228,47.8343 L 77.6559,36.2146' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 83.413,64.8925 L 76.555,66.9003' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 76.555,66.9003 L 69.697,68.908' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 80.4102,62.2656 L 75.6096,63.671' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 75.6096,63.671 L 70.809,65.0764' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 116.501,54.3291 L 114.853,61.1004' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 114.853,61.1004 L 113.205,67.8717' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 119.771,55.125 L 118.122,61.8963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 118.122,61.8963 L 116.474,68.6676' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 118.136,54.727 L 124.994,52.7193' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.994,52.7193 L 131.852,50.7115' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 77.6559,36.2146 L 61.5096,40.9416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 77.6559,36.2146 L 81.6354,19.868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 81.5222,34.5585 L 84.3079,23.1159' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 57.5301,57.2883 L 61.5096,40.9416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 61.3963,55.6322 L 64.182,44.1895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 57.5301,57.2883 L 41.3837,62.0153' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 57.5301,57.2883 L 69.697,68.908' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 136.713,52.3211 L 141.581,56.9704' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 141.581,56.9704 L 146.449,61.6197' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 41.3837,62.0153 L 29.2168,50.3956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 37.2347,62.7058 L 28.7179,54.572' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 41.3837,62.0153 L 37.4042,78.362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 109.949,26.7606 L 97.7818,15.141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 105.8,27.4511 L 97.2829,19.3173' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 172.332,66.1913 L 167.464,61.542' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 167.464,61.542 L 162.596,56.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 177.193,67.8008 L 184.051,65.7931' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 184.051,65.7931 L 190.909,63.7854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 174.08,71.3164 L 172.432,78.0877' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 172.432,78.0877 L 170.783,84.859' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 146.449,61.6197 L 162.596,56.8927' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 81.6354,19.868 L 97.7818,15.141' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 29.2168,50.3956 L 13.0704,55.1227' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 37.4042,78.362 L 21.2578,83.089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 34.0368,75.8418 L 22.7344,79.1507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 21.2578,83.089 L 9.09091,71.4693' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 13.0704,55.1227 L 9.09091,71.4693' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 15.7428,58.3706 L 12.9572,69.8132' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='83.9738' y='65.0222' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='112.099' y='71.9149' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='134.283' y='50.8412' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='132.413' y='45.2332' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='174.763' y='69.3536' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 112.825,46.3833 L 107.697,52.4382' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 107.697,52.4382 L 102.569,58.4931' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 108.188,45.5754 L 104.599,49.8139' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 104.599,49.8139 L 101.009,54.0523' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 112.825,46.3833 L 105.968,27.2727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 112.825,46.3833 L 132.804,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 96.7706,61.3461 L 88.2477,59.8032' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 88.2477,59.8032 L 79.7248,58.2603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 105.968,27.2727 L 85.9892,23.656' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 102.248,30.726 L 88.2627,28.1943' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 105.968,27.2727 L 119.09,11.779' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 85.9892,23.656 L 72.8676,39.1498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 85.9892,23.656 L 79.132,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 79.7248,58.2603 L 66.6032,73.754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 79.7248,58.2603 L 72.8676,39.1498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 82.5183,54.0223 L 77.7183,40.6449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 132.804,50 L 145.926,34.5062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 131.673,45.0516 L 140.859,34.206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 132.804,50 L 139.661,69.1105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 119.09,11.779 L 139.068,15.3957' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 121.363,16.3172 L 135.348,18.849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 139.068,15.3957 L 145.926,34.5062' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 66.6032,73.754 L 46.6244,70.1373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 139.661,69.1105 L 159.64,72.7273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 159.64,72.7273 L 166.497,91.8378' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.6244,70.1373 L 33.5028,85.6311' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 166.497,91.8378 L 186.476,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 33.5028,85.6311 L 13.524,82.0143' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='99.7036' y='62.8922' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 106.565,50.0111 L 111.725,46.0709' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 111.725,46.0709 L 116.885,42.1306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 106.187,46.3064 L 109.799,43.5483' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 109.799,43.5483 L 113.411,40.7901' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 101.98,50.8057 L 95.8026,48.2298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 95.8026,48.2298 L 89.6252,45.6539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 116.885,42.1306 L 114.851,26.3919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 116.885,42.1306 L 131.533,48.2384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 89.6252,45.6539 L 87.5911,29.9151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 92.4678,42.8862 L 91.0439,31.8691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 89.6252,45.6539 L 77.0121,55.2848' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 114.851,26.3919 L 127.464,16.761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 114.851,26.3919 L 100.204,20.2842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 111.433,28.4052 L 101.18,24.1298' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 131.533,48.2384 L 133.567,63.9771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 131.533,48.2384 L 144.146,38.6074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 131.498,44.2711 L 140.328,37.5295' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 100.204,20.2842 L 87.5911,29.9151' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 100.204,20.2842 L 98.17,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 133.567,63.9771 L 120.954,73.6081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 133.567,63.9771 L 148.214,70.0849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 77.0121,55.2848 L 62.3649,49.1771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 77.0121,55.2848 L 79.0463,71.0235' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 144.146,38.6074 L 142.112,22.8687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 127.464,16.761 L 142.112,22.8687' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 128.44,20.6066 L 138.693,24.882' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 120.954,73.6081 L 122.988,89.3468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 148.214,70.0849 L 150.248,85.8236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 62.3649,49.1771 L 49.7519,58.808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 79.0463,71.0235 L 66.4332,80.6545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 150.248,85.8236 L 137.635,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 49.7519,58.808 L 51.786,74.5468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 66.4332,80.6545 L 51.786,74.5468' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 122.988,89.3468 L 137.635,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='104.272' y='52.5551' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 105.412,54.4401 L 111.296,50.4393' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 111.296,50.4393 L 117.18,46.4386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 105.239,50.3881 L 109.357,47.5875' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 109.357,47.5875 L 113.476,44.787' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 100.431,54.9303 L 93.9133,51.7815' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 93.9133,51.7815 L 87.3959,48.6327' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 117.18,46.4386 L 115.914,29.2425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 117.18,46.4386 L 132.706,53.9396' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 87.3959,48.6327 L 86.1292,31.4366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 90.6451,45.7999 L 89.7584,33.7627' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 87.3959,48.6327 L 73.1371,58.3278' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 115.914,29.2425 L 130.172,19.5474' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 115.914,29.2425 L 100.388,21.7415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 112.085,31.2225 L 101.217,25.9718' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 132.706,53.9396 L 133.973,71.1356' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 132.706,53.9396 L 146.965,44.2445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 132.906,49.6335 L 142.887,42.847' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 100.388,21.7415 L 86.1292,31.4366' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 100.388,21.7415 L 99.1212,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 133.973,71.1356 L 147.028,82.3993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 133.973,71.1356 L 122.709,84.1908' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 73.1371,58.3278 L 69.91,75.2658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 73.1371,58.3278 L 56.1991,55.1007' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 146.965,44.2445 L 145.698,27.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 130.172,19.5474 L 145.698,27.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 131.001,23.7777 L 141.869,29.0284' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 135.764,95.4545 L 122.709,84.1908' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 135.764,95.4545 L 147.028,82.3993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 52.972,72.0387 L 56.1991,55.1007' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 52.972,72.0387 L 69.91,75.2658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='102.922' y='56.9958' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 95.4923,33.7267 L 96.7912,40.9298' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 96.7912,40.9298 L 98.0902,48.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 92.4168,29.874 L 85.3979,27.3501' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 85.3979,27.3501 L 78.3789,24.8262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 97.5085,29.4231 L 104,25.9393' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 104,25.9393 L 110.491,22.4555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 64.9227,36.2065 L 78.3789,24.8262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 64.9227,36.2065 L 68.0503,53.5501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 68.8606,38.1825 L 71.0499,50.323' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 64.9227,36.2065 L 48.339,30.2433' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 98.0902,48.133 L 115.551,50.518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 98.0902,48.133 L 84.634,59.5133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 93.7957,47.1488 L 84.3764,55.115' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 68.0503,53.5501 L 54.5941,64.9304' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 68.0503,53.5501 L 84.634,59.5133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 80.1133,24.5135 L 78.8143,17.3103' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 78.8143,17.3103 L 77.5154,10.1071' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 76.6446,25.139 L 75.3456,17.9358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 75.3456,17.9358 L 74.0467,10.7326' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 115.551,50.518 L 119.508,56.3354' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.508,56.3354 L 123.465,62.1528' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.653,50.2809 L 122.423,54.3531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 122.423,54.3531 L 125.192,58.4253' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 115.551,50.518 L 123.215,34.6485' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 123.215,34.6485 L 110.491,22.4555' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 123.215,34.6485 L 140.791,33.3509' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 126.111,37.9689 L 138.414,37.0607' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 54.5941,64.9304 L 59.9945,69.4262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 59.9945,69.4262 L 65.3949,73.9221' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 54.5941,64.9304 L 45.8417,80.2266' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 54.5941,64.9304 L 38.0104,58.9671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 128.009,64.9021 L 135.523,64.3473' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 135.523,64.3473 L 143.038,63.7925' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 38.0104,58.9671 L 36.7114,51.7639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 36.7114,51.7639 L 35.4125,44.5608' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 36.8723,57.6215 L 31.5159,62.1516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 31.5159,62.1516 L 26.1594,66.6817' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 39.1484,60.3127 L 33.792,64.8428' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 33.792,64.8428 L 28.4355,69.3729' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 48.339,30.2433 L 42.9826,34.7734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 42.9826,34.7734 L 37.6261,39.3035' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 140.791,33.3509 L 150.702,47.923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 143.038,63.7925 L 152.95,78.3646' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 147.439,63.996 L 154.377,74.1965' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 143.038,63.7925 L 150.702,47.923' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 150.702,47.923 L 168.278,46.6255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 153.598,51.2434 L 165.901,50.3352' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 45.8417,80.2266 L 54.7125,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 152.95,78.3646 L 170.525,77.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 168.278,46.6255 L 178.189,61.1975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 178.189,61.1975 L 170.525,77.0671' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 173.866,62.0451 L 168.501,73.1538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='96.921' y='31.6706' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='127.421' y='65.9712' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='37.0387' y='42.5047' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='73.0956' y='8.36383' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='26.71' y='71.2286' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='65.9823' y='77.0871' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 108.148,56.9205 L 115.825,69.6746' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 111.85,57.2981 L 117.224,66.226' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 108.148,56.9205 L 115.355,43.8946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 108.148,56.9205 L 93.2639,57.1922' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 115.825,69.6746 L 130.709,69.4029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 115.825,69.6746 L 112.908,74.947' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 112.908,74.947 L 109.991,80.2193' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 115.355,43.8946 L 130.239,43.6229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 117.642,46.8307 L 128.06,46.6405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 91.9613,56.4715 L 89.0443,61.7439' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 89.0443,61.7439 L 86.1272,67.0162' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 94.5664,57.9128 L 91.6494,63.1852' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 91.6494,63.1852 L 88.7324,68.4576' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 93.2639,57.1922 L 90.1719,52.0556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 90.1719,52.0556 L 87.08,46.9191' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 130.239,43.6229 L 137.916,56.3771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 130.239,43.6229 L 137.445,30.5971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 130.709,69.4029 L 138.387,82.157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 130.709,69.4029 L 137.916,56.3771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 129.185,66.0077 L 134.23,56.8896' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 110.112,85.1815 L 113.204,90.318' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 113.204,90.318 L 116.296,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 113.59,85.187 L 115.755,88.7826' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 115.755,88.7826 L 117.919,92.3781' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 137.445,30.5971 L 152.33,30.3254' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 139.624,27.5795 L 150.043,27.3894' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 137.445,30.5971 L 129.768,17.843' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 83.4361,44.4773 L 77.0693,44.5935' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 77.0693,44.5935 L 70.7025,44.7097' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 50.2916,32.1881 L 56.6583,32.0718' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 56.6583,32.0718 L 63.0251,31.9556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 46.6476,29.7462 L 43.5557,24.6097' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 43.5557,24.6097 L 40.4637,19.4732' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 46.7684,34.7084 L 43.8514,39.9808' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 43.8514,39.9808 L 40.9343,45.2531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 70.7025,44.7097 L 63.0251,31.9556' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 138.387,82.157 L 131.18,95.1828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 134.7,82.6695 L 129.656,91.7876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 116.296,95.4545 L 131.18,95.1828' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 152.33,30.3254 L 159.536,17.2996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 129.768,17.843 L 136.975,4.81715' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 133.454,17.3305 L 138.499,8.21237' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 136.975,4.81715 L 151.859,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 159.536,17.2996 L 151.859,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 155.834,16.9219 L 150.46,7.99404' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='110.273' y='83.4447' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='87.8782' y='70.9623' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='83.9323' y='45.1824' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='48.1411' y='32.9716' style='font-size:4px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 99.575,59.615 L 105.801,54.8075' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 105.801,54.8075 L 112.027,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 99.0905,55.1264 L 103.449,51.7611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 103.449,51.7611 L 107.807,48.3959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 94.015,60.62 L 86.5041,57.5356' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.5041,57.5356 L 78.9931,54.4512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 112.027,50 L 129.829,57.3104' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 112.027,50 L 109.457,30.9279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 78.9931,54.4512 L 76.4232,35.3791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 82.4221,51.0764 L 80.6231,37.726' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 78.9931,54.4512 L 63.7612,66.2128' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 129.829,57.3104 L 132.399,76.3825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 129.829,57.3104 L 145.061,45.5488' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 129.761,52.4998 L 140.424,44.2666' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 109.457,30.9279 L 124.689,19.1663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 109.457,30.9279 L 91.6552,23.6175' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 105.325,33.3917 L 92.8634,28.2744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 91.6552,23.6175 L 76.4232,35.3791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 91.6552,23.6175 L 89.0853,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 132.399,76.3825 L 151.471,73.8126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 132.399,76.3825 L 113.327,78.9524' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 132.399,76.3825 L 134.969,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 63.7612,66.2128 L 51.9996,50.9809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 63.7612,66.2128 L 75.5228,81.4448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 63.7612,66.2128 L 48.5293,77.9745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 145.061,45.5488 L 142.491,26.4767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 124.689,19.1663 L 142.491,26.4767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 125.897,23.8232 L 138.358,28.9405' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='96.795' y='62.7239' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 100.874,43.3986 L 86.7412,53.5753' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 96.7183,42.0987 L 86.8257,49.2223' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 100.874,43.3986 L 116.753,50.5493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 100.874,43.3986 L 99.1265,26.0713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.7412,53.5753 L 70.8617,46.4247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.7412,53.5753 L 87.4684,60.7877' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 87.4684,60.7877 L 88.1956,68.0001' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 70.8617,46.4247 L 56.7293,56.6014' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 70.8617,46.4247 L 69.1146,29.0973' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 74.0651,43.4762 L 72.8421,31.347' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 115.02,50.724 L 115.747,57.9364' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 115.747,57.9364 L 116.475,65.1488' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 118.486,50.3746 L 119.213,57.587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 119.213,57.587 L 119.94,64.7994' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 116.753,50.5493 L 122.561,46.3667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 122.561,46.3667 L 128.37,42.1842' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 56.7293,56.6014 L 40.8498,49.4507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 56.7293,56.6014 L 58.4764,73.9287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 60.4568,58.8511 L 61.6798,70.9802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 85.9725,72.7143 L 80.1642,76.8968' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 80.1642,76.8968 L 74.3559,81.0794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 82.1946,71.1426 L 78.1288,74.0703' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 78.1288,74.0703 L 74.063,76.9981' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 40.8498,49.4507 L 39.1028,32.1234' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 37.1223,47.201 L 35.8994,35.0719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 40.8498,49.4507 L 26.7175,59.6274' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 133.401,41.5055 L 140.083,44.5144' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 140.083,44.5144 L 146.765,47.5233' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 99.1265,26.0713 L 83.247,18.9206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 95.3144,28.1746 L 84.1988,23.1691' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 174.261,43.3644 L 167.579,40.3555' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 167.579,40.3555 L 160.897,37.3466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 179.292,42.6856 L 185.101,38.5031' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 185.101,38.5031 L 190.909,34.3205' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 177.069,47.3998 L 177.797,54.6122' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 177.797,54.6122 L 178.524,61.8246' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 74.3559,81.0794 L 58.4764,73.9287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 69.1146,29.0973 L 83.247,18.9206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 146.765,47.5233 L 160.897,37.3466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 39.1028,32.1234 L 23.2233,24.9727' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 26.7175,59.6274 L 10.838,52.4767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 25.7657,55.3789 L 14.65,50.3734' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 10.838,52.4767 L 9.09091,35.1494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 23.2233,24.9727 L 9.09091,35.1494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 23.1388,29.3257 L 13.2461,36.4494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='86.553' y='71.7734' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='116.37' y='68.7474' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='130.885' y='41.2434' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='128.95' y='35.4383' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='176.777' y='45.368' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 109.543,46.9699 L 124.812,52.4794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 109.543,46.9699 L 106.68,30.9919' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 112.309,44.0006 L 110.305,32.816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 109.543,46.9699 L 97.137,57.4383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 137.218,42.011 L 124.812,52.4794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 137.45,46.0624 L 128.766,53.3903' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 137.218,42.011 L 152.486,47.5206' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 137.218,42.011 L 134.355,26.033' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 124.812,52.4794 L 126.001,59.1157' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 126.001,59.1157 L 127.19,65.752' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 134.355,26.033 L 127.893,23.7013' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 127.893,23.7013 L 121.431,21.3696' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 135.401,27.2736 L 140.341,23.1055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 140.341,23.1055 L 145.28,18.9373' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 133.308,24.7924 L 138.247,20.6243' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 138.247,20.6243 L 143.187,16.4562' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 106.68,30.9919 L 111.71,26.747' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 111.71,26.747 L 116.741,22.5022' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 118.601,17.818 L 117.412,11.1817' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 117.412,11.1817 L 116.223,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 130.02,69.3036 L 136.482,71.6353' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 136.482,71.6353 L 142.944,73.967' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 133.06,66.9493 L 137.583,68.5815' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 137.583,68.5815 L 142.107,70.2137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 152.486,47.5206 L 155.349,63.4986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 149.72,50.4899 L 151.724,61.6745' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 95.5392,57.7246 L 96.7283,64.3609' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 96.7283,64.3609 L 97.9174,70.9972' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 98.7348,57.152 L 99.9239,63.7883' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 99.9239,63.7883 L 101.113,70.4246' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 97.137,57.4383 L 90.675,55.1066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 90.675,55.1066 L 84.2131,52.7749' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 142.944,73.967 L 155.349,63.4986' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 142.944,73.967 L 145.807,89.945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 155.349,63.4986 L 170.618,69.0081' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 79.5232,53.9074 L 74.4928,58.1523' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 74.4928,58.1523 L 69.4623,62.3972' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 44.1325,65.3773 L 49.163,61.1325' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 49.163,61.1325 L 54.1935,56.8876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 39.4427,66.5099 L 32.9807,64.1782' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 32.9807,64.1782 L 26.5188,61.8465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 42.2724,70.0614 L 43.4615,76.6977' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 43.4615,76.6977 L 44.6506,83.334' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 69.4623,62.3972 L 54.1935,56.8876' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 145.807,89.945 L 161.075,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 149.199,87.7176 L 159.887,91.5743' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 170.618,69.0081 L 173.481,84.9861' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 167.852,71.9774 L 169.856,83.162' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 173.481,84.9861 L 161.075,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='119.086' y='21.3351' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='129.479' y='69.269' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='144.775' y='16.3762' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='98.0143' y='74.2279' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='81.8681' y='52.7404' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='80.0643' y='47.3295' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='41.7876' y='68.1676' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-1' d='M 108.327,45.1925 L 123.047,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 108.327,45.1925 L 105.13,30.041' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 110.878,42.2805 L 108.64,31.6744' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 108.327,45.1925 L 96.8035,55.5365' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 134.57,39.656 L 123.047,50' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 134.91,43.5123 L 126.844,50.7531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 134.57,39.656 L 149.29,44.4635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 134.57,39.656 L 131.374,24.5045' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 123.047,50 L 124.373,56.2853' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 124.373,56.2853 L 125.699,62.5707' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 131.374,24.5045 L 125.132,22.466' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 125.132,22.466 L 118.891,20.4276' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 132.408,25.6568 L 136.964,21.5667' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 136.964,21.5667 L 141.521,17.4766' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 130.339,23.3522 L 134.896,19.262' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 134.896,19.262 L 139.452,15.1719' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 105.13,30.041 L 109.774,25.873' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 109.774,25.873 L 114.417,21.705' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 116.109,17.1161 L 114.783,10.8308' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 114.783,10.8308 L 113.457,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 128.48,65.8821 L 134.722,67.9206' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 134.722,67.9206 L 140.963,69.959' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 131.314,63.5497 L 135.683,64.9766' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 135.683,64.9766 L 140.052,66.4035' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 149.29,44.4635 L 152.486,59.615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 146.739,47.3755 L 148.977,57.9816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 95.2884,55.8561 L 96.6144,62.1415' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 96.6144,62.1415 L 97.9404,68.4268' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 98.3187,55.2168 L 99.6447,61.5022' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 99.6447,61.5022 L 100.971,67.7875' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 96.8035,55.5365 L 90.5621,53.498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 90.5621,53.498 L 84.3206,51.4596' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 140.963,69.959 L 152.486,59.615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 140.963,69.959 L 144.16,85.1105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 152.486,59.615 L 167.206,64.4225' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 144.16,85.1105 L 158.879,89.9181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 147.329,82.8877 L 157.633,86.253' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 144.16,85.1105 L 132.636,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 79.8467,52.737 L 75.2035,56.905' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 75.2035,56.905 L 70.5603,61.073' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.5541,64.6015 L 51.1973,60.4335' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 51.1973,60.4335 L 55.8405,56.2655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 42.0802,65.8789 L 35.8387,63.8404' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 35.8387,63.8404 L 29.5973,61.8019' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 44.8616,69.1903 L 46.1876,75.4756' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 46.1876,75.4756 L 47.5136,81.761' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 70.5603,61.073 L 55.8405,56.2655' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 167.206,64.4225 L 170.403,79.5741' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 164.655,67.3346 L 166.893,77.9406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 170.403,79.5741 L 158.879,89.9181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='116.654' y='20.4712' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='127.964' y='65.9258' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='141.003' y='14.9347' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='98.1057' y='71.4623' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='82.0837' y='51.5032' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='80.3629' y='46.3415' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='44.3171' y='67.3837' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-9' d='M 37.7042,62.7438 L 30.0459,46.8219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 39.7399,58.8239 L 34.3791,47.6785' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 37.7042,62.7438 L 55.3222,64.0725' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 30.0459,46.8219 L 40.0056,32.2286' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 30.0459,46.8219 L 22.9055,46.2834' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 22.9055,46.2834 L 15.765,45.7448' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 40.0056,32.2286 L 57.6236,33.5573' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 42.3826,35.9515 L 54.7152,36.8816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 55.3222,64.0725 L 65.2819,49.4793' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 53.8975,59.8916 L 60.8693,49.6763' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 65.2819,49.4793 L 57.6236,33.5573' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 65.2819,49.4793 L 82.8999,50.808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 57.6236,33.5573 L 61.5986,27.733' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 61.5986,27.733 L 65.5736,21.9087' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 70.1355,19.1565 L 77.6684,19.7246' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 77.6684,19.7246 L 85.2012,20.2928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 72.1297,22.8506 L 77.4027,23.2482' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 77.4027,23.2482 L 82.6756,23.6459' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 85.2012,20.2928 L 92.8595,36.2147' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 92.8595,36.2147 L 82.8999,50.808' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 88.4469,36.4118 L 81.4752,46.6271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 82.8999,50.808 L 86.0208,57.2966' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 86.0208,57.2966 L 89.1418,63.7853' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 93.1104,66.9224 L 100.643,67.4905' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 100.643,67.4905 L 108.176,68.0587' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 108.176,68.0587 L 115.834,83.9806' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 108.176,68.0587 L 118.136,53.4654' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 118.136,53.4654 L 135.754,54.7941' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 135.754,54.7941 L 145.713,40.2008' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 145.713,40.2008 L 153.246,40.7689' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 153.246,40.7689 L 160.779,41.337' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 165.341,38.5849 L 169.316,32.7606' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 169.316,32.7606 L 173.291,26.9363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 164.748,44.4742 L 167.869,50.9628' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 167.869,50.9628 L 170.99,57.4515' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 173.291,26.9363 L 190.909,28.265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 170.99,57.4515 L 188.608,58.7802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='69.5466' y='19.8475' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='92.5215' y='67.6133' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>HN</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='163.331' y='42.4129' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='15.1761' y='46.3766' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 50.4401,50.6756 L 35.3647,56.4513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 50.4401,50.6756 L 49.6056,34.5534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 47.0905,48.4242 L 46.5063,37.1386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 50.4401,50.6756 L 63.9738,59.477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 35.3647,56.4513 L 31.377,51.5203' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 31.377,51.5203 L 27.3892,46.5893' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 33.8056,56.0325 L 32.0728,62.4827' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 32.0728,62.4827 L 30.34,68.9329' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 36.9239,56.8702 L 35.191,63.3204' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 35.191,63.3204 L 33.4582,69.7706' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 49.6056,34.5534 L 34.0145,30.3649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 49.6056,34.5534 L 54.6255,30.4937' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 54.6255,30.4937 L 59.6453,26.4341' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 22.8811,44.0193 L 15.986,44.3762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 15.986,44.3762 L 9.09091,44.7331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 26.963,41.208 L 30.4888,35.7864' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 30.4888,35.7864 L 34.0145,30.3649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 63.9738,59.477 L 78.3628,52.1571' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 62.3617,59.3915 L 62.0054,66.1067' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 62.0054,66.1067 L 61.6491,72.822' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 65.5859,59.5625 L 65.2296,66.2778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 65.2296,66.2778 L 64.8733,72.9931' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 147.121,32.8654 L 141.092,35.9322' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 141.092,35.9322 L 135.064,38.9989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 146.776,36.6633 L 142.556,38.81' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 142.556,38.81 L 138.336,40.9567' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 151.785,33.1957 L 157.386,36.8381' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 157.386,36.8381 L 162.986,40.4804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 78.3628,52.1571 L 91.8965,60.9585' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 82.1531,50.7706 L 91.6267,56.9315' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 91.8965,60.9585 L 106.286,53.6386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.819,62.44 L 106.286,53.6386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 119.549,58.413 L 110.076,52.2521' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 119.819,62.44 L 134.208,55.1201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 106.286,53.6386 L 107.141,37.5174' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 134.208,55.1201 L 147.742,63.9215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 137.999,53.7336 L 147.472,59.8945' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 134.208,55.1201 L 135.064,38.9989' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 162.131,56.6016 L 147.742,63.9215' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 162.131,56.6016 L 175.665,65.403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 165.921,55.2151 L 175.395,61.376' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 162.131,56.6016 L 162.986,40.4804' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 162.986,40.4804 L 177.375,33.1606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 166.609,42.2602 L 176.681,37.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 175.665,65.403 L 190.054,58.0831' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 177.375,33.1606 L 190.909,41.9619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 190.054,58.0831 L 190.909,41.9619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 186.958,55.4939 L 187.557,44.209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='27.0072' y='44.7058' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='149.453' y='32.4863' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='29.2014' y='72.8496' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='60.1835' y='25.209' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='61.1436' y='76.4054' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 54.046,52.3499 L 38.6648,60.4387' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 54.046,52.3499 L 51.1061,35.2219' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 50.1794,50.3686 L 48.1215,38.3791' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 54.046,52.3499 L 69.6308,60.039' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 38.6648,60.4387 L 33.6971,55.5975' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 33.6971,55.5975 L 28.7293,50.7564' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 36.945,60.189 L 35.9068,67.3398' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 35.9068,67.3398 L 34.8687,74.4907' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 40.3846,60.6884 L 39.3465,67.8392' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 39.3465,67.8392 L 38.3083,74.9901' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 51.1061,35.2219 L 33.908,32.7251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 51.1061,35.2219 L 55.8179,30.3869' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 55.8179,30.3869 L 60.5297,25.5519' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 23.7084,48.7408 L 16.3997,49.9953' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 16.3997,49.9953 L 9.09091,51.2498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 27.6479,45.4135 L 30.7779,39.0693' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 30.7779,39.0693 L 33.908,32.7251' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 69.6308,60.039 L 84.0822,50.3867' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 67.8967,60.1524 L 68.3687,67.3749' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 68.3687,67.3749 L 68.8408,74.5974' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 71.3649,59.9257 L 71.837,67.1482' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 71.837,67.1482 L 72.3091,74.3707' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 129.703,56.1128 L 114.118,48.4236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 128.903,51.8424 L 117.994,46.46' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 129.703,56.1128 L 144.155,46.4605' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 144.155,46.4605 L 159.739,54.1496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 144.155,46.4605 L 143.021,29.1191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 147.453,43.6326 L 146.66,31.4936' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 84.0822,50.3867 L 99.667,58.0759' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.9578,48.4231 L 98.8671,53.8056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 99.667,58.0759 L 114.118,48.4236' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 159.739,54.1496 L 174.191,44.4974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 163.838,55.5921 L 173.954,48.8355' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 159.739,54.1496 L 160.873,71.4911' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.118,48.4236 L 112.985,31.0822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 170.547,25.9174 L 164.01,22.6921' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 164.01,22.6921 L 157.473,19.4668' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 167.048,28.0667 L 162.472,25.809' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 162.472,25.809 L 157.896,23.5514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 173.247,30.0524 L 173.719,37.2749' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 173.719,37.2749 L 174.191,44.4974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 174.191,44.4974 L 189.776,52.1865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 157.473,19.4668 L 143.021,29.1191' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 160.873,71.4911 L 176.458,79.1802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 164.748,69.5275 L 175.658,74.9099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 189.776,52.1865 L 190.909,69.5279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 186.477,55.0144 L 187.271,67.1534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 176.458,79.1802 L 190.909,69.5279' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='28.15' y='49.1788' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='34.0421' y='78.5057' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='61.109' y='23.6449' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='171.126' y='28.0249' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='68.6383' y='78.2494' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 117.762,11.79 L 115.321,20.4369' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 115.321,20.4369 L 112.881,29.0839' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 96.1906,88.21 L 98.6315,79.5631' style='fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 98.6315,79.5631 L 101.072,70.9161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 147.9,39.6169 L 137.971,42.136' style='fill:none;fill-rule:evenodd;stroke:#A01EEF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.971,42.136 L 128.042,44.6551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 49.6827,45.1186 L 55.5868,24.2025' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 54.7515,43.162 L 58.8844,28.5207' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 49.6827,45.1186 L 64.8445,60.6898' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 55.5868,24.2025 L 64.55,21.9283' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 64.55,21.9283 L 73.5132,19.6541' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 64.8445,60.6898 L 85.9105,55.3449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 66.9354,55.6749 L 81.6816,51.9335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 122.138,65.5712 L 101.072,70.9161' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 117.909,62.1598 L 103.163,65.9012' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 122.138,65.5712 L 128.042,44.6551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 79.7924,22.0819 L 85.8035,28.2553' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 85.8035,28.2553 L 91.8147,34.4288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 78.4815,26.9663 L 82.6893,31.2877' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 82.6893,31.2877 L 86.8971,35.6091' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 101.072,70.9161 L 85.9105,55.3449' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 112.881,29.0839 L 128.042,44.6551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 112.041,34.4519 L 122.654,45.3518' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 112.881,29.0839 L 91.8147,34.4288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 85.9105,55.3449 L 91.8147,34.4288' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='116.126' y='9.25438' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='91.7877' y='92.919' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#00CC00' ><tspan>Cl</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='148.624' y='40.3968' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#A01EEF' ><tspan>I</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='76.6528' y='19.9442' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 91.5107,46.2542 L 113.578,46.4452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 91.5107,46.2542 L 86.3086,53.2854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.3086,53.2854 L 81.1065,60.3167' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.4019,45.7385 L 82.7605,50.6603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 82.7605,50.6603 L 79.119,55.5822' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 91.5107,46.2542 L 86.4145,39.1106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.4145,39.1106 L 81.3183,31.967' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 113.578,46.4452 L 117.971,54.2094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 117.971,54.2094 L 122.365,61.9736' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 118.737,46.6008 L 121.813,52.0357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 121.813,52.0357 L 124.888,57.4707' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.578,46.4452 L 124.777,27.4299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 75.1974,62.9283 L 66.3272,59.9611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 66.3272,59.9611 L 57.457,56.9938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 127.634,65.6792 L 137.074,65.7609' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 137.074,65.7609 L 146.514,65.8426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 57.457,56.9938 L 38.2103,68.0136 L 40.7735,71.6066 Z' style='fill:#000000;fill-rule:evenodd;fill-opacity=1;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;' />\\n<path class='bond-18' d='M 57.457,56.9938 L 57.6481,34.9265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 75.7493,29.2178 L 66.6987,32.0722' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 66.6987,32.0722 L 57.6481,34.9265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.777,27.4299 L 146.844,27.6209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 128.049,31.872 L 143.496,32.0057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 124.777,27.4299 L 120.384,19.6657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 120.384,19.6657 L 115.99,11.9015' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 37.2953,70.0218 L 38.1764,79.166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 38.1764,79.166 L 39.0575,88.3102' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 41.6885,69.5985 L 42.5697,78.7426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 42.5697,78.7426 L 43.4508,87.8868' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 39.4919,69.8101 L 31.1686,66.0177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 31.1686,66.0177 L 22.8453,62.2252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 146.514,65.8426 L 157.382,85.049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 151.985,66.5499 L 159.593,79.9944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 146.514,65.8426 L 157.713,46.8273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 146.844,27.6209 L 157.713,46.8273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 157.713,46.8273 L 179.78,47.0183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 160.985,51.2694 L 176.432,51.4031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 157.382,85.049 L 179.449,85.2401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 179.78,47.0183 L 190.648,66.2247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 179.449,85.2401 L 190.648,66.2247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 177.326,80.1479 L 185.165,66.8372' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='78.3853' y='65.0981' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='126.899' y='66.755' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='78.6944' y='29.3924' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#CCCC00' ><tspan>S</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='38.909' y='92.8799' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='116.608' y='9.32689' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='22.1097' y='61.7634' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 91.5107,46.2542 L 113.578,46.4452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 91.5107,46.2542 L 86.3086,53.2854' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.3086,53.2854 L 81.1065,60.3167' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.4019,45.7385 L 82.7605,50.6603' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 82.7605,50.6603 L 79.119,55.5822' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 91.5107,46.2542 L 86.4145,39.1106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 86.4145,39.1106 L 81.3183,31.967' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 113.578,46.4452 L 117.971,54.2094' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 117.971,54.2094 L 122.365,61.9736' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 118.737,46.6008 L 121.813,52.0357' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 121.813,52.0357 L 124.888,57.4707' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.578,46.4452 L 124.777,27.4299' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 75.1974,62.9283 L 66.3272,59.9611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 66.3272,59.9611 L 57.457,56.9938' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 127.634,65.6792 L 137.074,65.7609' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 137.074,65.7609 L 146.514,65.8426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 55.5324,58.0958 L 55.7887,58.4551' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 53.6077,59.1978 L 54.1203,59.9164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 51.683,60.2998 L 52.452,61.3777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 49.7583,61.4017 L 50.7836,62.8389' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 47.8337,62.5037 L 49.1153,64.3002' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 45.909,63.6057 L 47.4469,65.7615' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 43.9843,64.7077 L 45.7786,67.2228' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 42.0596,65.8096 L 44.1102,68.6841' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 40.1349,66.9116 L 42.4419,70.1453' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 38.2103,68.0136 L 40.7735,71.6066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 57.457,56.9938 L 57.6481,34.9265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 75.7493,29.2178 L 66.6987,32.0722' style='fill:none;fill-rule:evenodd;stroke:#CCCC00;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 66.6987,32.0722 L 57.6481,34.9265' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 124.777,27.4299 L 146.844,27.6209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 128.049,31.872 L 143.496,32.0057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 124.777,27.4299 L 120.384,19.6657' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 120.384,19.6657 L 115.99,11.9015' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 37.2953,70.0218 L 38.1764,79.166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 38.1764,79.166 L 39.0575,88.3102' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 41.6885,69.5985 L 42.5697,78.7426' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 42.5697,78.7426 L 43.4508,87.8868' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 39.4919,69.8101 L 31.1686,66.0177' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 31.1686,66.0177 L 22.8453,62.2252' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 146.514,65.8426 L 157.382,85.049' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 151.985,66.5499 L 159.593,79.9944' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 146.514,65.8426 L 157.713,46.8273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 146.844,27.6209 L 157.713,46.8273' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 157.713,46.8273 L 179.78,47.0183' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 160.985,51.2694 L 176.432,51.4031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 157.382,85.049 L 179.449,85.2401' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 179.78,47.0183 L 190.648,66.2247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 179.449,85.2401 L 190.648,66.2247' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 177.326,80.1479 L 185.165,66.8372' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='78.3853' y='65.0981' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='126.899' y='66.755' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='78.6944' y='29.3924' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#CCCC00' ><tspan>S</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='38.909' y='92.8799' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='116.608' y='9.32689' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='22.1097' y='61.7634' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 110.768,53.6507 L 116.77,32.2486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 110.768,53.6507 L 126.302,69.5498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 116.278,52.9289 L 127.151,64.0582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 110.768,53.6507 L 89.2321,59.1538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 116.77,32.2486 L 125.932,29.9074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 125.932,29.9074 L 135.095,27.5661' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 118.36,30.6953 L 112.323,24.5165' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 112.323,24.5165 L 106.286,18.3376' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 115.18,33.802 L 109.143,27.6232' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 109.143,27.6232 L 103.106,21.4444' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 126.302,69.5498 L 147.837,64.0467' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 126.302,69.5498 L 123.82,78.3985' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 123.82,78.3985 L 121.338,87.2473' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 89.2321,59.1538 L 83.0707,52.8475' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 83.0707,52.8475 L 76.9094,46.5413' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.0919,58.5536 L 84.6103,67.4023' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 84.6103,67.4023 L 82.1287,76.2511' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 91.3723,59.754 L 88.8907,68.6027' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 88.8907,68.6027 L 86.4091,77.4515' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 139.345,23.0409 L 141.826,14.1922' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 141.826,14.1922 L 144.308,5.34348' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 141.517,30.0321 L 147.678,36.3384' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 147.678,36.3384 L 153.84,42.6446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 147.837,64.0467 L 153.84,42.6446' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 153.018,62.0368 L 157.22,47.0554' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 147.837,64.0467 L 163.371,79.9458' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 153.84,42.6446 L 175.375,37.1416' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 70.4874,44.0753 L 61.325,46.4165' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 61.325,46.4165 L 52.1626,48.7578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 74.7373,39.5501 L 77.2189,30.7014' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 77.2189,30.7014 L 79.7005,21.8527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 52.1626,48.7578 L 46.1604,70.1599' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 46.9818,50.7677 L 42.7803,65.7492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 52.1626,48.7578 L 36.6289,32.8588' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 163.371,79.9458 L 184.907,74.4427' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 165.501,74.8131 L 180.576,70.961' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 175.375,37.1416 L 190.909,53.0406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 174.526,42.6332 L 185.399,53.7625' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 46.1604,70.1599 L 24.6246,75.663' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 36.6289,32.8588 L 15.093,38.3618' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 34.4991,37.9914 L 19.424,41.8435' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 184.907,74.4427 L 190.909,53.0406' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 15.093,38.3618 L 9.09091,59.7639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 24.6246,75.663 L 9.09091,59.7639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 25.4744,70.1714 L 14.6008,59.0421' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='138.306' y='27.857' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='73.6984' y='44.3661' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='103.955' y='17.461' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='80.5109' y='81.6673' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='117.58' y='92.0633' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 55.0126,63.4052 L 53.7802,44.8201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 51.1107,60.8639 L 50.248,47.8543' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 55.0126,63.4052 L 71.724,71.6306' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 55.0126,63.4052 L 39.5335,73.7651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 53.7802,44.8201 L 37.0688,36.5948' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 133.414,66.0372 L 126.404,62.5867' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 126.404,62.5867 L 119.393,59.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 132.956,61.6598 L 128.049,59.2445' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 128.049,59.2445 L 123.142,56.8291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 138.795,65.5608 L 145.19,61.2813' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 145.19,61.2813 L 151.584,57.0018' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 37.0688,36.5948 L 35.8365,18.0096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 37.0688,36.5948 L 21.5898,46.9546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 36.8189,41.2445 L 25.9836,48.4964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 36.659,16.3385 L 29.753,12.9393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 29.753,12.9393 L 22.847,9.5402' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 35.0139,19.6807 L 28.1079,16.2816' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 28.1079,16.2816 L 21.2019,12.8825' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 35.8365,18.0096 L 42.1263,13.7999' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 42.1263,13.7999 L 48.4162,9.59027' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 71.724,71.6306 L 87.203,61.2707' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 69.8654,71.7538 L 70.3787,79.4942' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 70.3787,79.4942 L 70.8919,87.2346' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 73.5825,71.5073 L 74.0957,79.2477' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 74.0957,79.2477 L 74.609,86.9882' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 87.203,61.2707 L 103.914,69.4961' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 91.3548,59.1623 L 103.053,64.92' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 103.914,69.4961 L 119.393,59.1363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 151.584,57.0018 L 168.295,65.2271' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 155.736,54.8933 L 167.434,60.651' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 151.584,57.0018 L 150.351,38.4166' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 39.5335,73.7651 L 22.8221,65.5397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 38.6719,69.189 L 26.9739,63.4313' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 39.5335,73.7651 L 40.0468,81.5055' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 40.0468,81.5055 L 40.56,89.2459' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 119.393,59.1363 L 118.161,40.5511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 21.5898,46.9546 L 22.8221,65.5397' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 150.351,38.4166 L 133.64,30.1913' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 150.351,38.4166 L 165.831,28.0568' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 154.745,39.9584 L 165.581,32.7066' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 133.64,30.1913 L 118.161,40.5511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 133.39,34.8411 L 122.555,42.0929' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 168.295,65.2271 L 183.774,54.8673' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 165.831,28.0568 L 182.542,36.2821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 183.774,54.8673 L 182.542,36.2821' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 179.872,52.326 L 179.01,39.3164' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='136.105' y='68.2929' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='21.4036' y='10.7156' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='70.6778' y='91.147' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='49.037' y='8.58108' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='38.4874' y='93.2815' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>OH</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 91.6384,38.0619 L 86.9372,31.9537' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 86.9372,31.9537 L 82.236,25.8454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 92.8003,44.5691 L 89.7492,51.9655' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 89.7492,51.9655 L 86.6981,59.3619' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 96.9625,40.9401 L 105.228,39.8397' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 105.228,39.8397 L 113.493,38.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 82.236,25.8454 L 62.8853,28.4216' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 84.0407,26.5898 L 87.0917,19.1934' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 87.0917,19.1934 L 90.1428,11.797' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 80.4314,25.1009 L 83.4825,17.7046' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 83.4825,17.7046 L 86.5336,10.3082' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 86.6981,59.3619 L 67.3474,61.9381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 83.2803,55.8781 L 69.7348,57.6815' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 86.6981,59.3619 L 98.6046,74.832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 62.8853,28.4216 L 55.441,46.4679' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 65.3779,32.6174 L 60.1669,45.2498' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 125.4,54.2094 L 113.493,38.7393' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 125.4,54.2094 L 122.349,61.6058' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 122.349,61.6058 L 119.297,69.0022' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 125.4,54.2094 L 144.75,51.6332' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 55.441,46.4679 L 67.3474,61.9381' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 55.441,46.4679 L 47.285,47.5538' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 47.285,47.5538 L 39.129,48.6396' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 114.917,72.6603 L 106.761,73.7462' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 106.761,73.7462 L 98.6046,74.832' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 67.3474,61.9381 L 59.9031,79.9844' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 98.6046,74.832 L 91.1603,92.8783' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 93.8787,76.0501 L 88.6676,88.6825' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 144.75,51.6332 L 148.515,44.6754' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 148.515,44.6754 L 152.28,37.7175' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 149.314,51.4039 L 151.949,46.5333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 151.949,46.5333 L 154.584,41.6628' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 144.75,51.6332 L 150.07,57.2221' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 150.07,57.2221 L 155.389,62.811' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 156.86,34.9823 L 165.05,36.4879' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 165.05,36.4879 L 173.24,37.9935' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 161.029,64.424 L 168.422,60.8841' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 168.422,60.8841 L 175.816,57.3442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 33.5861,45.7906 L 28.8849,39.6823' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 28.8849,39.6823 L 24.1838,33.574' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 59.9031,79.9844 L 71.8095,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 64.7831,79.9236 L 73.1176,90.7527' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 91.1603,92.8783 L 71.8095,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 173.24,37.9935 L 175.816,57.3442' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='94.1425' y='42.2916' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='115.567' y='73.2319' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='156.21' y='35.44' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='158.209' y='66.7501' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='156.039' y='73.2573' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='87.2923' y='8.77511' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='38.4782' y='50.0202' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 127.656,45.8235 L 131.465,52.9845' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 131.465,52.9845 L 135.273,60.1454' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 127.966,39.1583 L 132.223,32.3454' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 132.223,32.3454 L 136.479,25.5326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 122.996,42.3902 L 114.448,42.0924' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 114.448,42.0924 L 105.9,41.7946' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 135.273,60.1454 L 124.678,77.1037' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 137.075,64.8082 L 129.659,76.6789' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 135.273,60.1454 L 155.257,60.8417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 136.479,25.5326 L 156.463,26.2289' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 138.244,24.5938 L 134.436,17.4328' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 134.436,17.4328 L 130.628,10.2718' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 134.714,26.4715 L 130.905,19.3106' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 130.905,19.3106 L 127.097,12.1496' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 105.9,41.7946 L 95.3056,58.7528' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 124.678,77.1037 L 134.067,94.7582' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 124.678,77.1037 L 104.694,76.4074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 95.3056,58.7528 L 104.694,76.4074' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 95.3056,58.7528 L 86.758,58.455' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 86.758,58.455 L 78.2104,58.1572' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 156.463,26.2289 L 165.852,43.8835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 154.34,30.7549 L 160.912,43.1131' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 165.852,43.8835 L 155.257,60.8417' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 155.257,60.8417 L 164.646,78.4963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 153.134,65.3677 L 159.706,77.7259' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 73.5495,54.7239 L 69.7413,47.5629' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 69.7413,47.5629 L 65.933,40.402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 73.2398,61.3892 L 68.9834,68.202' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 68.9834,68.202 L 64.727,75.0148' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 134.067,94.7582 L 154.051,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 137.204,90.8659 L 151.192,91.3534' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 154.051,95.4545 L 164.646,78.4963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 65.933,40.402 L 45.9493,39.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 64.727,75.0148 L 44.7433,74.3185' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 44.7433,74.3185 L 34.1484,91.2767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 45.9493,39.7057 L 36.5605,22.0511' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='125.884' y='43.4907' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='75.3219' y='59.0563' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='129.536' y='8.87789' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 117.39,65.415 L 134.961,65.6126' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 120.065,61.9303 L 132.365,62.0686' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 117.39,65.415 L 113.779,71.5099' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 113.779,71.5099 L 110.168,77.6048' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 117.39,65.415 L 108.775,50.0988' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 134.961,65.6126 L 143.918,50.494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 134.961,65.6126 L 138.445,71.8063' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 138.445,71.8063 L 141.928,78' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 105.894,80.505 L 98.3776,80.4205' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 98.3776,80.4205 L 90.8611,80.336' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 108.775,50.0988 L 117.732,34.9802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.142,49.6224 L 119.412,39.0394' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 143.918,50.494 L 161.489,50.6916' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 143.918,50.494 L 135.303,35.1778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 139.563,49.9195 L 133.532,39.1982' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 146.114,80.9573 L 153.631,81.0418' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 153.631,81.0418 L 161.147,81.1264' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 148.409,77.4684 L 153.67,77.5275' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 153.67,77.5275 L 158.932,77.5867' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 117.732,34.9802 L 135.303,35.1778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 117.732,34.9802 L 114.248,28.7865' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 114.248,28.7865 L 110.764,22.5928' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 41.0273,49.3369 L 48.5438,49.4215' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 48.5438,49.4215 L 56.0604,49.506' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 110.852,16.7353 L 114.463,10.6404' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 114.463,10.6404 L 118.074,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 90.8611,80.336 L 82.2465,65.0198' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 90.8611,80.336 L 81.9042,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 56.0604,49.506 L 64.675,64.8222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 161.489,50.6916 L 170.104,66.0078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 159.718,54.712 L 165.749,65.4333' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 161.147,81.1264 L 170.104,66.0078' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 82.2465,65.0198 L 64.675,64.8222' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='106.48' y='81.4122' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='145.528' y='81.8074' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='40.383' y='50.2749' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan><tspan style='baseline-shift:sub;font-size:3.75px;'>2</tspan><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='111.267' y='20.5427' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 88.0902,45.452 L 89.8498,37.3016' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 89.8498,37.3016 L 91.6095,29.1512' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 84.4625,49.0986 L 75.9142,49.9695' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 75.9142,49.9695 L 67.3659,50.8403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 90.271,51.4346 L 96.2675,56.8687' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 96.2675,56.8687 L 102.264,62.3029' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 91.6095,29.1512 L 84.3723,24.9419' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 84.3723,24.9419 L 77.1351,20.7326' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 87.4168,31.3641 L 82.3507,28.4176' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 82.3507,28.4176 L 77.2847,25.4711' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 91.6095,29.1512 L 110.75,22.9998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 59.2475,32.448 L 67.3659,50.8403' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 64.1437,33.5832 L 69.8266,46.4578' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 59.2475,32.448 L 39.5959,28.2053' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 59.2475,32.448 L 65.2871,27.0448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 65.2871,27.0448 L 71.3266,21.6416' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 125.647,36.4999 L 121.404,56.1514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 125.647,36.4999 L 144.787,30.3484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 125.647,36.4999 L 110.75,22.9998' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 120.712,37.4543 L 110.284,28.0042' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 102.264,62.3029 L 121.404,56.1514' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 103.905,57.5521 L 117.303,53.2461' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 102.264,62.3029 L 98.0213,81.9544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 121.404,56.1514 L 136.302,69.6516' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 41.5099,27.5901 L 38.9727,19.6954' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 38.9727,19.6954 L 36.4354,11.8007' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 37.6819,28.8204 L 35.1446,20.9257' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 35.1446,20.9257 L 32.6074,13.031' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 39.5959,28.2053 L 34.3641,33.9786' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 34.3641,33.9786 L 29.1323,39.7519' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 144.787,30.3484 L 159.684,43.8486' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 149.722,29.394 L 160.15,38.8441' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 144.787,30.3484 L 149.03,10.6969' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 98.0213,81.9544 L 112.919,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 102.956,81 L 113.384,90.4501' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 136.302,69.6516 L 132.059,89.3031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 131.735,71.7507 L 128.765,85.5068' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 159.684,43.8486 L 178.825,37.6971' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 149.03,10.6969 L 168.17,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 153.131,13.6022 L 166.529,9.2962' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 112.919,95.4545 L 132.059,89.3031' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 168.17,4.54545 L 183.067,18.0456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 178.825,37.6971 L 183.067,18.0456' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 175.531,33.9008 L 178.501,20.1448' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='87.3667' y='49.808' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='74.2309' y='20.0486' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='30.9852' y='10.0703' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='28.5552' y='44.1078' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>HO</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 112.207,22.4774 L 115.386,29.1334' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 115.386,29.1334 L 118.564,35.7895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 112.838,16.4461 L 116.923,10.4958' style='fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 116.923,10.4958 L 121.009,4.54545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 140.515,81.7571 L 137.337,75.101' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.337,75.101 L 134.158,68.445' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 142.827,78.2009 L 140.602,73.5416' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 140.602,73.5416 L 138.377,68.8824' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 144.569,84.9773 L 152.281,85.5807' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 152.281,85.5807 L 159.994,86.1842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 107.948,78.9341 L 112.034,72.9838' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 112.034,72.9838 L 116.119,67.0335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 103.264,81.7452 L 95.5514,81.1418' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 95.5514,81.1418 L 87.8389,80.5383' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 38.7812,45.2643 L 46.4937,45.8678' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 46.4937,45.8678 L 54.2062,46.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 134.158,68.445 L 144.4,53.5287' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 134.158,68.445 L 116.119,67.0335' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 144.4,53.5287 L 162.439,54.9402' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 146.823,57.3482 L 159.451,58.3362' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 144.4,53.5287 L 136.603,37.201' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 116.119,67.0335 L 108.322,50.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 118.215,63.0249 L 112.758,51.5955' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 162.439,54.9402 L 170.236,71.268' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 162.439,54.9402 L 172.68,40.0239' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 136.603,37.201 L 118.564,35.7895' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 133.615,40.597 L 120.988,39.6089' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 118.564,35.7895 L 108.322,50.7057' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 170.236,71.268 L 159.994,86.1842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 165.716,71.457 L 158.547,81.8984' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 87.8389,80.5383 L 80.0419,64.2105' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 87.8389,80.5383 L 77.5971,95.4545' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 80.0419,64.2105 L 62.0032,62.799' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 62.0032,62.799 L 54.2062,46.4713' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='112.981' y='20.3664' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#FF0000' ><tspan>O</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='143.966' y='85.6774' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='103.867' y='82.8545' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>NH</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='38.1178' y='46.055' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan><tspan style='baseline-shift:sub;font-size:4.5px;'>2</tspan><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 127.944,44.7959 L 141.567,58.0862' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 132.645,44.0648 L 142.182,53.368' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 127.944,44.7959 L 131.375,37.8502' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 131.375,37.8502 L 134.807,30.9046' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 127.944,44.7959 L 109.622,49.9487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 141.567,58.0862 L 158.417,49.2367' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 141.567,58.0862 L 136.869,76.5293' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 139.123,28.1332 L 147.165,29.3052' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 147.165,29.3052 L 155.207,30.4771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 158.417,49.2367 L 176.268,55.837' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 162.414,46.6566 L 174.91,51.2767' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 158.417,49.2367 L 155.207,30.4771' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 155.207,30.4771 L 169.849,18.3178' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 159.835,31.5816 L 170.084,23.07' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 57.4079,64.634 L 65.1939,62.4442' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 65.1939,62.4442 L 72.9798,60.2544' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 58.7131,60.3128 L 64.1633,58.7799' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 64.1633,58.7799 L 69.6135,57.2471' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 51.9092,62.725 L 46.4723,57.421' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 46.4723,57.421 L 41.0354,52.1169' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 105.732,65.2198 L 107.677,57.5843' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 107.677,57.5843 L 109.622,49.9487' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 102.175,69.1651 L 94.389,71.3549' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 94.389,71.3549 L 86.603,73.5447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 107.674,71.074 L 113.111,76.3781' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 113.111,76.3781 L 118.547,81.6822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 136.869,76.5293 L 118.547,81.6822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 41.0354,52.1169 L 22.7141,57.2697' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 37.2566,49.2256 L 24.4317,52.8326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 41.0354,52.1169 L 45.7335,33.6738' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 72.9798,60.2544 L 86.603,73.5447' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 72.9798,60.2544 L 77.678,41.8112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 45.7335,33.6738 L 64.0549,28.5209' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 45.7335,33.6738 L 32.1104,20.3835' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 41.032,34.4048 L 31.4958,25.1016' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 64.0549,28.5209 L 77.678,41.8112' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 63.4403,33.2391 L 72.9765,42.5423' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 176.268,55.837 L 190.909,43.6777' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 169.849,18.3178 L 187.7,24.9181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 22.7141,57.2697 L 9.09091,43.9794' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 32.1104,20.3835 L 13.7891,25.5363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 190.909,43.6777 L 187.7,24.9181' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 186.676,41.5056 L 184.429,28.3739' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 9.09091,43.9794 L 13.7891,25.5363' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 13.4843,42.1526 L 16.773,29.2424' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='138.489' y='28.6842' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>HN</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='54.6585' y='66.3588' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='104.924' y='69.3435' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 126.506,47.1772 L 137.835,63.2325' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 131.416,47.3196 L 139.347,58.5583' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 126.506,47.1772 L 131.165,40.9465' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 131.165,40.9465 L 135.825,34.7157' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 126.506,47.1772 L 106.937,48.9613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.835,63.2325 L 156.606,57.4187' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 137.835,63.2325 L 129.596,81.0719' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 141.113,32.4065 L 148.995,35.0884' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 148.995,35.0884 L 156.877,37.7703' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 156.606,57.4187 L 173.486,67.4778' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 161.15,55.5515 L 172.966,62.5928' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 156.606,57.4187 L 156.877,37.7703' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 156.877,37.7703 L 174.029,28.1809' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 161.368,39.7622 L 173.374,33.0497' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 100.21,63.5257 L 103.573,56.2435' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 103.573,56.2435 L 106.937,48.9613' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 95.8584,67.0596 L 87.4932,67.8222' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 87.4932,67.8222 L 79.1279,68.5849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 101.008,70.0758 L 105.517,76.4659' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 105.517,76.4659 L 110.027,82.856' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 67.7983,52.5296 L 79.1279,68.5849' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 67.7983,52.5296 L 48.2292,54.3137' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 67.7983,52.5296 L 76.0377,34.6902' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 65.4663,48.2058 L 71.2339,35.7182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 129.596,81.0719 L 110.027,82.856' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 48.2292,54.3137 L 36.8995,38.2584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 43.3186,54.1714 L 35.3879,42.9326' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 48.2292,54.3137 L 39.9897,72.1531' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 47.9776,20.1602 L 56.3428,19.3975' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 56.3428,19.3975 L 64.7081,18.6349' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 50.844,23.8452 L 56.6997,23.3114' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 56.6997,23.3114 L 62.5553,22.7775' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 43.6263,23.694 L 40.2629,30.9762' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 40.2629,30.9762 L 36.8995,38.2584' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 36.8995,38.2584 L 17.3304,40.0425' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 64.7081,18.6349 L 76.0377,34.6902' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 173.486,67.4778 L 190.638,57.8884' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 174.029,28.1809 L 190.909,38.24' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 39.9897,72.1531 L 20.4206,73.9373' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 36.6975,68.5069 L 22.9991,69.7558' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 17.3304,40.0425 L 9.09091,57.882' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 19.6623,44.3664 L 13.8947,56.8539' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 190.638,57.8884 L 190.909,38.24' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 186.749,54.8869 L 186.939,41.133' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 20.4206,73.9373 L 9.09091,57.882' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='138.274' y='32.4232' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='136.09' y='25.8731' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='98.6971' y='67.7833' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='47.3226' y='21.4015' style='font-size:6px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 120.189,35.1712 L 125.365,56.552' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 125.242,37.343 L 128.865,52.3096' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 120.189,35.1712 L 127.967,30.384' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 127.967,30.384 L 135.746,25.5967' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 120.189,35.1712 L 99.0842,28.9639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 125.365,56.552 L 147.3,58.2358' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 125.365,56.552 L 109.437,71.7255' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 86.3341,41.1101 L 92.7091,35.037' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 92.7091,35.037 L 99.0842,28.9639' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 79.9783,43.2028 L 71.0149,40.5665' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 71.0149,40.5665 L 62.0516,37.9301' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 84.0439,47.8039 L 86.1884,56.6611' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 86.1884,56.6611 L 88.3328,65.5182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 142.101,26.3445 L 148.89,32.1201' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 148.89,32.1201 L 155.679,37.8956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 62.0516,37.9301 L 46.1236,53.1036' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 62.0516,37.9301 L 56.8749,16.5493' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 56.9989,35.7583 L 53.3752,20.7918' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 147.3,58.2358 L 160.725,75.6626' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 152.799,58.1647 L 162.197,70.3635' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 147.3,58.2358 L 155.679,37.8956' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 155.679,37.8956 L 177.484,34.9822' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 159.532,41.8196 L 174.796,39.7802' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 46.1236,53.1036 L 25.0189,46.8964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 41.7164,56.3935 L 26.9431,52.0484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 46.1236,53.1036 L 51.3002,74.4845' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 109.437,71.7255 L 88.3328,65.5182' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 23.0201,22.4882 L 29.3952,16.4151' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 29.3952,16.4151 L 35.7703,10.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 27.9674,23.8519 L 32.4299,19.6007' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 32.4299,19.6007 L 36.8924,15.3496' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 20.73,29.182 L 22.8744,38.0392' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 22.8744,38.0392 L 25.0189,46.8964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 25.0189,46.8964 L 9.09091,62.0699' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 56.8749,16.5493 L 35.7703,10.342' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 51.3002,74.4845 L 35.3722,89.658' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 45.8763,73.5749 L 34.7267,84.1963' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 160.725,75.6626 L 182.53,72.7492' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 177.484,34.9822 L 190.909,52.409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 9.09091,62.0699 L 14.2676,83.4507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 14.1436,64.2417 L 17.7672,79.2082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 35.3722,89.658 L 14.2676,83.4507' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 182.53,72.7492 L 190.909,52.409' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 179.719,68.0223 L 185.584,53.7842' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='83.1562' y='45.2374' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='138.924' y='24.7408' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='136.479' y='17.408' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"end\\\" x='22.2868' y='26.6155' style='font-size:7px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 132.772,60.836 L 137.363,45.8513' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 136.457,59.5065 L 139.671,49.0172' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 132.772,60.836 L 138.056,64.5408' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 138.056,64.5408 L 143.34,68.2456' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 132.772,60.836 L 117.499,64.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 137.363,45.8513 L 153.033,45.5871' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 137.363,45.8513 L 126.681,34.3829' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 147.868,68.129 L 152.997,64.2688' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 152.997,64.2688 L 158.126,60.4086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 153.033,45.5871 L 163.322,33.7653' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-9' d='M 156.94,45.8716 L 164.143,37.5964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-25' d='M 153.033,45.5871 L 158.126,60.4086' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 158.126,60.4086 L 173.509,63.4082' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-11' d='M 161.034,57.782 L 171.801,59.8817' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 57.1729,39.4108 L 61.3817,43.9296' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 61.3817,43.9296 L 65.5905,48.4484' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 56.1418,42.9027 L 59.088,46.0659' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 59.088,46.0659 L 62.0342,49.229' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 52.6449,37.5013 L 46.1406,38.9988' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 46.1406,38.9988 L 39.6362,40.4964' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 109.081,55.3147 L 113.29,59.8335' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.29,59.8335 L 117.499,64.3523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 107.618,50.272 L 109.513,44.0856' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-12' d='M 109.513,44.0856 L 111.408,37.8993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 104.553,53.4052 L 98.0491,54.9028' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-15' d='M 98.0491,54.9028 L 91.5447,56.4003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-26' d='M 126.681,34.3829 L 111.408,37.8993' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 39.6362,40.4964 L 28.9546,29.0281' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-21' d='M 35.7403,40.9125 L 28.2632,32.8846' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-28' d='M 39.6362,40.4964 L 35.0452,55.4811' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 163.322,33.7653 L 178.704,36.7649' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-10' d='M 65.5905,48.4484 L 80.8631,44.932' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-18' d='M 65.5905,48.4484 L 60.9994,63.4331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-19' d='M 173.509,63.4082 L 183.798,51.5863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-13' d='M 80.8631,44.932 L 91.5447,56.4003' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-14' d='M 35.0452,55.4811 L 45.7267,66.9494' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 35.0452,55.4811 L 19.7725,58.9974' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-22' d='M 32.051,52.954 L 21.3601,55.4155' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 45.7267,66.9494 L 60.9994,63.4331' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 47.3144,63.3674 L 58.0052,60.906' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 178.704,36.7649 L 182.891,31.9546' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-20' d='M 182.891,31.9546 L 187.077,27.1444' style='fill:none;fill-rule:evenodd;stroke:#33CCCC;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 178.704,36.7649 L 183.798,51.5863' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-27' d='M 176.504,40.0068 L 180.069,50.3818' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-23' d='M 28.9546,29.0281 L 13.682,32.5444' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 19.7725,58.9974 L 9.09091,47.5291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 13.682,32.5444 L 9.09091,47.5291' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-29' d='M 15.9903,35.7103 L 12.7765,46.1996' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='145.604' y='70.6165' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='143.863' y='75.8406' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>H</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='54.9089' y='37.7636' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"middle\\\" x='106.817' y='53.6676' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#0000FF' ><tspan>N</tspan></text>\\n<text dominant-baseline=\\\"central\\\" text-anchor=\\\"start\\\" x='187.6' y='25.7267' style='font-size:5px;font-style:normal;font-weight:normal;fill-opacity:1;stroke:none;font-family:sans-serif;fill:#33CCCC' ><tspan>F</tspan></text>\\n</svg>\\n\",\"<?xml version='1.0' encoding='iso-8859-1'?>\\n<svg version='1.1' baseProfile='full'\\n xmlns='http://www.w3.org/2000/svg'\\n xmlns:rdkit='http://www.rdkit.org/xml'\\n xmlns:xlink='http://www.w3.org/1999/xlink'\\n xml:space='preserve'\\nwidth='200px' height='100px' viewBox='0 0 200 100'>\\n<!-- END OF HEADER -->\\n<rect style='opacity:1.0;fill:#FFFFFF;stroke:none' width='200' height='100' x='0' y='0'> </rect>\\n<path class='bond-0' d='M 135.886,45.6291 L 145.908,59.1056' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-0' d='M 140.085,45.6462 L 147.1,55.0797' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 135.886,45.6291 L 139.753,40.1807' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-1' d='M 139.753,40.1807 L 143.62,34.7323' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-6' d='M 135.886,45.6291 L 119.204,47.5701' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-2' d='M 145.908,59.1056 L 161.822,53.7386' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-7' d='M 145.908,59.1056 L 139.248,74.523' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 148.032,32.6918 L 154.834,34.8185' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-3' d='M 154.834,34.8185 L 161.635,36.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 161.822,53.7386 L 176.459,61.9737' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-16' d='M 165.665,52.0465 L 175.91,57.8111' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-24' d='M 161.822,53.7386 L 161.635,36.9452' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 161.635,36.9452 L 176.086,28.3868' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-17' d='M 165.515,38.5515 L 175.63,32.5606' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 61.2182,42.7157 L 65.1884,48.0544' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 65.1884,48.0544 L 69.1586,53.3931' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 59.714,46.3217 L 62.4931,50.0587' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-4' d='M 62.4931,50.0587 L 65.2722,53.7958' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 56.7106,40.1989 L 49.5827,41.0282' style='fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-8' d='M 49.5827,41.0282 L 42.4548,41.8576' style='fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1' />\\n<path class='bond-5' d='M 113.753,60.1885 L 116.479,53.8793' style='fill:none;fill-rule:ev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment