Difference between revisions of "Thermodynamics"

From AutoMeKin
Jump to navigation Jump to search
Line 192: Line 192:
 
    
 
    
 
</html>
 
</html>
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
 +
<html lang="en">
 +
 
 +
  <head>
 +
   
 +
      <meta charset="utf-8">
 +
      <title>Reaction network visualization</title>
 +
     
 +
     
 +
       
 +
         
 +
       
 +
       
 +
         
 +
        <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-2.3.3.min.js" integrity="sha384-dM3QQsP+wXdHg42wTqW85BjZQdLNNIXqlPw/BgKoExPmTG7ZLML4EGqLMfqHT6ON" crossorigin="anonymous"></script>
 +
        <script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-2.3.3.min.js" integrity="sha384-3QTqdz9LyAm2i0sG5XTePsHec3UHWwVsrOL68SYRoAXsafvfAyqtQ+h440+qIBhS" crossorigin="anonymous"></script>
 +
        <script type="text/javascript">
 +
            Bokeh.set_log_level("info");
 +
        </script>
 +
        <script type="text/javascript">
 +
            (function(root, factory) {
 +
                    factory(root["Bokeh"]);
 +
                })(this, function(Bokeh) {
 +
                  var define;
 +
                  return (function outer(modules, entry) {
 +
                  if (Bokeh != null) {
 +
                    return Bokeh.register_plugin(modules, entry);
 +
                  } else {
 +
                    throw new Error("Cannot find Bokeh. You have to load it prior to loading plugins.");
 +
                  }
 +
                })
 +
                ({
 +
                  "custom/main": function(require, module, exports) {
 +
                    var models = {
 +
                      "JSMol": require("custom/jsmol_bokeh_extension.jsmol.js_mol").JSMol
 +
                    };
 +
                    require("base").register_models(models);
 +
                    module.exports = models;
 +
                  },
 +
                  "custom/jsmol_bokeh_extension.jsmol.js_mol": function(require, module, exports) {
 +
                "use strict";
 +
                var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
 +
                    if (k2 === undefined) k2 = k;
 +
                    Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
 +
                }) : (function(o, m, k, k2) {
 +
                    if (k2 === undefined) k2 = k;
 +
                    o[k2] = m[k];
 +
                }));
 +
                var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
 +
                    Object.defineProperty(o, "default", { enumerable: true, value: v });
 +
                }) : function(o, v) {
 +
                    o["default"] = v;
 +
                });
 +
                var __importStar = (this && this.__importStar) || function (mod) {
 +
                    if (mod && mod.__esModule) return mod;
 +
                    var result = {};
 +
                    if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
 +
                    __setModuleDefault(result, mod);
 +
                    return result;
 +
                };
 +
                Object.defineProperty(exports, "__esModule", { value: true });
 +
                exports.JSMol = exports.JSMolView = void 0;
 +
                // These "require" lines are similar to python "import" statements
 +
                const layout_dom_1 = require("models/layouts/layout_dom");
 +
                const layout_1 = require("core/layout");
 +
                const p = __importStar(require("core/properties"));
 +
                // This defines some default options for JSmol
 +
                // See https://gist.github.com/jhjensen2/4701339 for more details.
 +
                const INFO = {
 +
                    height: "100%",
 +
                    width: "100%",
 +
                    serverURL: "https://chemapps.stolaf.edu/jmol/jsmol/php/jsmol.php",
 +
                    use: "HTML5",
 +
                    j2sPath: "https://chemapps.stolaf.edu/jmol/jsmol/j2s",
 +
                    script: "background black;load https://dev-www.materialscloud.org/cofs/api/v2/cifs/febd2d02-5690-4a07-9013-505c9a06bc5b/content/download",
 +
                };
 +
                // To create custom model extensions that will render on to the HTML canvas
 +
                // or into the DOM, we must create a View subclass for the model.
 +
                //
 +
                // In this case we will subclass from the existing BokehJS ``LayoutDOMView``
 +
                class JSMolView extends layout_dom_1.LayoutDOMView {
 +
                    initialize() {
 +
                        super.initialize();
 +
                        var url = this.model.js_url;
 +
                        if (!url) {
 +
                            url = "https://chemapps.stolaf.edu/jmol/jsmol/JSmol.min.js";
 +
                        }
 +
                        const script = document.createElement('script');
 +
                        script.src = url;
 +
                        script.async = false;
 +
                        script.onload = () => this._init();
 +
                        //script.onreadystatechange = (script.onload = () => this._init())
 +
                        //script.onreadystatechange = script.onload
 +
                        document.querySelector("head").appendChild(script);
 +
                    }
 +
                    _init() {
 +
                        // Create a new Jmol applet using the JSmol.js API. This assumes JSmol.js
 +
                        // has already been loaded.
 +
                        // Models will be able to specify and load external scripts automatically.
 +
                        //
 +
                        // BokehJS Views create <div> elements by default, accessible as this.el.
 +
                        // if no info dict provided, use reasonable default
 +
                        if (!this.model.info) {
 +
                            this.model.info = INFO;
 +
                        }
 +
                        // disable usage tracker - this conflicts with cross-site-scripting policies when served over https
 +
                        delete Jmol._tracker;
 +
                        // returns html + assigns applet object to "jmolApplet0" variable
 +
                        var html = Jmol.getAppletHtml("jmolApplet0", this.model.info);
 +
                        this._applet = jmolApplet0;
 +
                        this.el.innerHTML = html;
 +
                        // avoid creating a "deferred" applet
 +
                        // https://sourceforge.net/p/jsmol/discussion/general/thread/48083aa7///10a6/bc1c
 +
                        this._applet._cover(false);
 +
                        // Set a listener so that when the Bokeh script input changes it is executed
 +
                        this.connect(this.model.script_source.properties.data.change, () => {
 +
                            console.log("Script source changed");
 +
                            Jmol.script(this._applet, this.model.script_source.get_column('script')[0]);
 +
                        });
 +
                    }
 +
                    get child_models() {
 +
                        return [];
 +
                    }
 +
                    _update_layout() {
 +
                        this.layout = new layout_1.LayoutItem();
 +
                        this.layout.set_sizing(this.box_sizing());
 +
                    }
 +
                }
 +
                exports.JSMolView = JSMolView;
 +
                JSMolView.__name__ = "JSMolView";
 +
                class JSMol extends layout_dom_1.LayoutDOM {
 +
                    constructor(attrs) {
 +
                        super(attrs);
 +
                    }
 +
                    static initClass() {
 +
                        // The ``type`` class attribute should generally match exactly the name
 +
                        // of the corresponding Python class.
 +
                        this.prototype.type = "JSMol";
 +
                        // This is usually boilerplate. In some cases there may not be a view.
 +
                        this.prototype.default_view = JSMolView;
 +
                        // The define block adds corresponding "properties" to the JS model. These
 +
                        // should basically line up 1-1 with the Python model class. Most property
 +
                        // types have counterparts, e.g. ``bokeh.core.properties.String`` will be
 +
                        // ``p.String`` in the JS implementation. Where the JS type system is not yet
 +
                        // as rich, you can use ``p.Any`` as a "wildcard" property type.
 +
                        this.define({
 +
                            script_source: [p.Instance],
 +
                            info: [p.Any],
 +
                            js_url: [p.String],
 +
                        });
 +
                    }
 +
                }
 +
                exports.JSMol = JSMol;
 +
                JSMol.__name__ = "JSMol";
 +
                JSMol.initClass();
 +
                //# sourceMappingURL=jsmol.py:JSMol.js.map
 +
                }
 +
                }, "custom/main");
 +
                ;
 +
                });
 +
 +
        </script>
 +
       
 +
     
 +
     
 +
<style>
 +
.bk-root .bk-btn-default {
 +
font-size: 1.2vh;
 +
}
 +
.bk-root .bk-input {
 +
font-size: 1.2vh;
 +
padding-bottom: 5px;
 +
padding-top: 5px;
 +
}
 +
.bk-root .bk {
 +
font-size: 1.2vh;
 +
}
 +
.bk-root .bk-clearfix{
 +
padding-bottom: 0.8vh;
 +
}
 +
</style>
 +
 +
   
 +
  </head>
 +
 
 +
 
 +
  <body>
 +
   
 +
     
 +
       
 +
         
 +
         
 +
           
 +
              <div class="bk-root" id="b332ad9a-2bcf-4e95-827a-4ae6ec305b24" data-root-id="1159"></div>
 +
           
 +
         
 +
       
 +
     
 +
     
 +
        <script type="application/json" id="1879">
 +
          {"0813be0d-b8ed-4696-9f83-a00f8b4b1d1b":{"defs":[],"roots":{"references":[{"attributes":{"children":[{"id":"1135"},{"id":"1134"},{"id":"1137"},{"id":"1136"}],"height":100,"height_policy":"max"},"id":"1160","type":"Row"},{"attributes":{"align":"center","width":300},"id":"1132","type":"Spacer"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","29.7","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS68","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,29.66137923800852,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1306"},"selection_policy":{"id":"1305"}},"id":"1236","type":"ColumnDataSource"},{"attributes":{},"id":"1297","type":"UnionRenderers"},{"attributes":{"below":[{"id":"1170"}],"center":[{"id":"1173"},{"id":"1177"},{"id":"1204"},{"id":"1207"},{"id":"1219"},{"id":"1222"},{"id":"1234"},{"id":"1237"},{"id":"1249"},{"id":"1252"}],"js_event_callbacks":{"reset":[{"id":"1257"}]},"left":[{"id":"1174"}],"min_border_left":60,"name":"PROFILE","renderers":[{"id":"1197"},{"id":"1201"},{"id":"1212"},{"id":"1216"},{"id":"1227"},{"id":"1231"},{"id":"1242"},{"id":"1246"}],"title":{"id":"1266"},"toolbar":{"id":"1184"},"visible":false,"x_range":{"id":"1162"},"x_scale":{"id":"1166"},"y_range":{"id":"1164"},"y_scale":{"id":"1168"}},"id":"1161","subtype":"Figure","type":"Plot"},{"attributes":{"align":"center","height":100,"text":"(Click an element)"},"id":"1133","type":"Div"},{"attributes":{},"id":"1298","type":"Selection"},{"attributes":{"data":{"form":["CH2N + CH2O","CH2N + CH2O",null,null,null,null,null,null,null,null,null,null,null,null,"H + C2H3NO","H + C2H3NO"],"lab":["PR156","PR156","MIN82","MIN82","TS110","TS110","MIN39","MIN39","TS116","TS116","MIN29","MIN29","TS85","TS85","PR9","PR9"],"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAADwPwAAAAAAAABAAAAAAAAACEAAAAAAAAAQQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAcQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAkQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAqQAAAAAAAACxAAAAAAAAALkA=","dtype":"float64","order":"little","shape":[16]},"y":[44.98843404115178,44.98843404115178,37.192227805178845,37.192227805178845,42.23341786007222,42.23341786007222,4.512507489416748,4.512507489416748,43.825577985000564,43.825577985000564,0.0,0.0,34.50326257312554,34.50326257312554,28.89100169511221,28.89100169511221]},"selected":{"id":"1316"},"selection_policy":{"id":"1315"}},"id":"1191","type":"ColumnDataSource"},{"attributes":{"align":"center","disabled":true,"icon":null,"js_event_callbacks":{"button_click":[{"id":"1259"}]},"label":"Molec. filter","max_width":120},"id":"1134","type":"Button"},{"attributes":{},"id":"1299","type":"UnionRenderers"},{"attributes":{"name":"ENERGYLABELS","source":{"id":"1236"},"text":{"field":"elab"},"text_font_size":{"value":"1.4vh"},"visible":false,"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":-20}},"id":"1237","type":"LabelSet"},{"attributes":{"align":"center","js_property_callbacks":{"change:active":[{"id":"1258"}]},"labels":["Show profile"],"max_height":100,"max_width":120},"id":"1135","type":"CheckboxGroup"},{"attributes":{},"id":"1300","type":"Selection"},{"attributes":{"align":"center","disabled":true,"icon":null,"js_event_callbacks":{"button_click":[{"id":"1260"}]},"label":"Energy filter","max_width":120},"id":"1136","type":"Button"},{"attributes":{},"id":"1301","type":"UnionRenderers"},{"attributes":{},"id":"1302","type":"Selection"},{"attributes":{"align":"center","value":"85.05","width":240},"id":"1137","type":"TextInput"},{"attributes":{"source":{"id":"1193"}},"id":"1243","type":"CDSView"},{"attributes":{},"id":"1303","type":"UnionRenderers"},{"attributes":{"line_color":"#d62728","x":{"field":"x"},"y":{"field":"y"}},"id":"1240","type":"Line"},{"attributes":{"args":{"graph":{"id":"1033"},"source":{"id":"1125"},"textField":{"id":"1133"}},"code":"\n\t\t// from graph, we fetch nrend - node renderer, erend - edgerenderer\n\t\t//source - source object for JSMol\n\t\tvar nrend = graph.node_renderer.data_source\n\t\tvar erend = graph.edge_renderer.data_source\n\t\tif (cb_obj.indices.length) {\n\t\t\tvar ninds = nrend.selected.indices\n\t\t\tvar einds = erend.selected.indices\n\t\t\tif (ninds.length) {\n\t\t\t\tvar rend = nrend\n\t\t\t} else {\n\t\t\t\tvar rend = erend\n\t\t\t}\n\t\t\tvar ndx = rend.selected.indices[0]\n\t\t\tvar model = rend.data[\"model\"][ndx]\n\t\t\tif (model == null){\n\t\t\t\t// clear view if no model is available\n\t\t\t\tmodel = \"backbone only ; backbone off\"\n\t\t\t}\n\t\t\tvar molname = rend.data[\"name\"][ndx]\n\t\t\ttextField.text = \"&lt;font size=+1&gt;&lt;b&gt;\" + molname + \"&lt;/b&gt;&lt;/font&gt;\"\n\t\t\tsource.data[\"script\"] = [model]\n\t\t\tsource.properties.data.change.emit()\n\t\t}\n\t\t"},"id":"1138","type":"CustomJS"},{"attributes":{},"id":"1304","type":"Selection"},{"attributes":{"args":{"graph":{"id":"1033"},"menu":{"id":"1131"},"source":{"id":"1125"},"textField":{"id":"1133"}},"code":"\n\t\t// from graph, we fetch nrend - node renderer, erend - edgerenderer, \n\t\t// source - source object for JSMol, menu - dropdown menu to change vibrations\n\t\tvar nrend = graph.node_renderer.data_source\n\t\tvar erend = graph.edge_renderer.data_source\n\t\t\n\t\tvar ninds = nrend.selected.indices\n\t\tvar einds = erend.selected.indices\n\t\tif (ninds.length) {\n\t\t\tvar rend = nrend\n\t\t} else {\n\t\t\tvar rend = erend\n\t\t}\n\t\tvar ndx = rend.selected.indices[0]\n\t\tvar vibr_models = rend.data[\"vibr_models\"][ndx]\n\t\tif (vibr_models.length){\n\t\t\tsource.data[\"current_model\"] = [vibr_models]\n\t\t\tsource.data[\"script\"] = [vibr_models + \"; vibration on ; vibration scale 0.25\"]\n\t\t\tsource.data[\"current_mol\"] = rend.data[\"name\"][ndx]\n\t\t\t// and also populate the normal mode dropdown: get the frequencies and assign them to menu\n\t\t\t// we must pass indices as strings for it to work, add 1 to match model numbering\n\t\t\tmenu.disabled = false\n\t\t\tvar freqlist = rend.data[\"frequencies\"][ndx].split(\";\")\n\t\t\tvar menulist = freqlist.map(function (frq,ii) {return [frq+\" cm-1\",(ii+1).toString()]})\n\t\t\tmenu.menu = menulist\n\t\t\tvar nw_label = \"Normal modes (\" + source.data[\"current_mol\"] + \")\"\n\t\t\tmenu.label = nw_label\n\t\t\t// modify text element using the BASE frequency\n\t\t\tvar molname = source.data[\"current_mol\"]\n\t\t\tvar frqval = freqlist[0].toString().trim() + \" cm-1\"\n\t\t\ttextField.text = \"&lt;font size=+1&gt;&lt;b&gt;\" + molname + \" (\" + frqval + \")\" + \"&lt;/b&gt;&lt;/font&gt;\"\n\t\t}\n\t\n\t\tsource.properties.data.change.emit()\n\t\t"},"id":"1139","type":"CustomJS"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","48.9","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS138","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,48.8757388858794,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1326"},"selection_policy":{"id":"1325"}},"id":"1244","type":"ColumnDataSource"},{"attributes":{},"id":"1305","type":"UnionRenderers"},{"attributes":{"data_source":{"id":"1193"},"glyph":{"id":"1240"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1241"},"view":{"id":"1243"}},"id":"1242","type":"GlyphRenderer"},{"attributes":{"args":{"button":{"id":"1128"},"graph":{"id":"1033"},"source":{"id":"1125"}},"code":"\n\t\t// from graph, we fetch nrend - node renderer, erend - edgerenderer\n\t\t// source - source object for JSMol, button - button object\n\t\tvar nrend = graph.node_renderer.data_source\n\t\tvar erend = graph.edge_renderer.data_source\n\n\t\tvar ninds = nrend.selected.indices\n\t\tvar einds = erend.selected.indices\n\t\tif (ninds.length) {\n\t\t\tvar rend = nrend\n\t\t} else {\n\t\t\tvar rend = erend\n\t\t}\n\t\tvar ndx = rend.selected.indices[0]\n\t\tvar geo = rend.data[\"geometry\"][ndx]\n\t\tvar name = rend.data[\"name\"][ndx]\n\t\tvar orig_label = button.label\n\t\t// use a function to apply setTimeout and recover original label\n\t\tfunction recover_label(button,orig_label){\n\t\t\tbutton.label = orig_label\n\t\t}\t\n\n\t\tif (geo.length){\n\t\t\tnavigator.clipboard.writeText([geo])\n\t\t\tbutton.label = \"Copied \" + name + \"!\"\n\t\t\tsetTimeout(recover_label,2000,button,orig_label)\n\t\t}\n\t\t"},"id":"1140","type":"CustomJS"},{"attributes":{"source":{"id":"1190"}},"id":"1198","type":"CDSView"},{"attributes":{"line_alpha":0.1,"line_color":"#d62728","x":{"field":"x"},"y":{"field":"y"}},"id":"1241","type":"Line"},{"attributes":{},"id":"1306","type":"Selection"},{"attributes":{"args":{"fig":{"id":"1004"},"graph":{"id":"1033"},"text_input":{"id":"1129"}},"code":"\n\t\t// source - source object for JSMol\n\t\t// pass graph and fetch node and edge renderers\n\t\t// from fig, we modify x_range and y_range. Default plot starts from -1.2 to 1.2,\n\t\tvar nrend = graph.node_renderer.data_source\n\t\tvar erend = graph.edge_renderer.data_source\n\t\tvar layout = graph.layout_provider.graph_layout\n\t\t// fetch the query in the data sources, choosing the appropiate renderer depending on the query\n\t\tvar mol_query = text_input.value\n\t\tif (mol_query.includes(\"TS\")) {\n\t\t\tvar renderer = erend\n\t\t\tvar other_renderer = nrend\n\t\t} else {\n\t\t\tvar renderer = nrend\n\t\t\tvar other_renderer = erend\n\t\t}\n\t\tvar pool_names = renderer.data[\"name\"]\n\t\tvar ndx = pool_names.indexOf(mol_query)\n\t\t// locate positions of the node or of the nodes defining an edge\n\t\tif (mol_query.includes(\"TS\")) {\n\t\t\tvar n1 = renderer.data[\"start\"][ndx]\n\t\t\tvar n2 = renderer.data[\"end\"][ndx]\n\t\t\tvar pos1 = layout[n1]\n\t\t\tvar pos2 = layout[n2]\n\t\t\tvar positions = new Array(2)\n\t\t\tpositions[0] = 0.5*(pos1[0]+pos2[0])\n\t\t\tpositions[1] = 0.5*(pos1[1]+pos2[1])\n\t\t} else {\n\t\t\tvar positions = layout[mol_query]\n\t\t}\n\t\t// returns -1 if element is not present\n\t\tif (ndx &gt;= 0) {\n\t\t\t// clearing other sel. avoids problems for model loading sometimes\n\t\t\tother_renderer.selected.indices = []\n\t\t\trenderer.selected.indices = [ndx]\n\t\t\tfig.x_range.start = positions[0] - 0.5\n\t\t\tfig.x_range.end = positions[0] + 0.5\n\t\t\tfig.y_range.start = positions[1] - 0.5\n\t\t\tfig.y_range.end = positions[1] + 0.5\n\t\t}\n\t\t"},"id":"1141","type":"CustomJS"},{"attributes":{},"id":"1307","type":"UnionRenderers"},{"attributes":{"args":{"menu":{"id":"1131"},"source":{"id":"1125"},"textField":{"id":"1133"}},"code":"\n\t\t// source - source object for JSMol ; menu - dropdown menu object\n\t\tsource.data[\"script\"] = [source.data[\"current_model\"] + \"; vibration on ; vibration scale 0.25 ; model \" + this.item]\n\t\tvar ndx = parseInt(this.item) - 1\n\t\tvar molname = source.data[\"current_mol\"]\n\t\tvar frqval = menu.menu[ndx][0]\n\t\tsource.data[\"current_vibration\"] = frqval\n\t\ttextField.text = \"&lt;font size=+1&gt;&lt;b&gt;\" + molname + \" (\" + frqval.trim() + \")\" + \"&lt;/b&gt;&lt;/font&gt;\"\n\t\tsource.properties.data.change.emit()\n\t\t"},"id":"1142","type":"CustomJS"},{"attributes":{"fill_alpha":{"value":0.9},"fill_color":{"value":"#d62728"},"height":{"value":2},"line_width":{"value":0},"name":"RECTANGLE","width":{"value":1},"x":{"field":"x"},"y":{"field":"y"}},"id":"1245","type":"Rect"},{"attributes":{"fill_alpha":{"value":0.9},"fill_color":{"value":"#1f77b4"},"height":{"value":2},"line_width":{"value":0},"name":"RECTANGLE","width":{"value":1},"x":{"field":"x"},"y":{"field":"y"}},"id":"1200","type":"Rect"},{"attributes":{},"id":"1308","type":"Selection"},{"attributes":{"data_source":{"id":"1244"},"glyph":{"id":"1245"},"hover_glyph":null,"muted_glyph":null,"view":{"id":"1247"}},"id":"1246","type":"GlyphRenderer"},{"attributes":{},"id":"1309","type":"UnionRenderers"},{"attributes":{"children":[{"id":"1153"},{"id":"1004"},{"id":"1154"}],"width":800},"id":"1155","type":"Column"},{"attributes":{"source":{"id":"1244"}},"id":"1247","type":"CDSView"},{"attributes":{},"id":"1310","type":"Selection"},{"attributes":{"children":[[{"id":"1155"},0,0,1,1],[{"id":"1158"},0,1,1,1]]},"id":"1159","type":"GridBox"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","48.9","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS138","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,48.8757388858794,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1308"},"selection_policy":{"id":"1307"}},"id":"1248","type":"ColumnDataSource"},{"attributes":{"js_property_callbacks":{"change:indices":[{"id":"1138"}]}},"id":"1147","type":"Selection"},{"attributes":{},"id":"1311","type":"UnionRenderers"},{"attributes":{"name":"THELABELS","source":{"id":"1248"},"text":{"field":"lab"},"text_font_size":{"value":"1.4vh"},"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":2}},"id":"1249","type":"LabelSet"},{"attributes":{"children":[{"id":"1129"},{"id":"1130"}],"height":100},"id":"1154","type":"Row"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","48.9","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS138","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,48.8757388858794,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1310"},"selection_policy":{"id":"1309"}},"id":"1251","type":"ColumnDataSource"},{"attributes":{},"id":"1312","type":"Selection"},{"attributes":{"children":[{"id":"1132"},{"id":"1133"}],"height":100},"id":"1156","type":"Row"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVA","dtype":"float64","order":"little","shape":[6]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1314"},"selection_policy":{"id":"1313"}},"id":"1199","type":"ColumnDataSource"},{"attributes":{"args":{"prof":{"id":"1161"},"state":[false]},"code":"\n\t// show ENERGY labels for the profile\n\t// prof - bokeh profile for figures, state - counter for the inner state\n\tstate[0] = !state[0]\n\tvar Nlines = prof.renderers.length/2\n\tfor (let i = 0 ; i &lt; Nlines ; i++){\n\t\t// show or hide for ODD ii values (energy label) AND only for visible renderers\n\t\tvar jj = 2*i + 1\n\t\tif (prof.renderers[jj-1].visible == true){\n\t\t\tprof.center[jj+2].visible = state[0]\n\t\t} \n\t}\n\t"},"id":"1261","type":"CustomJS"},{"attributes":{},"id":"1313","type":"UnionRenderers"},{"attributes":{"children":[{"id":"1126"}]},"id":"1157","type":"Row"},{"attributes":{"data":{"form":["CH2N + CH2O","CH2N + CH2O",null,null,null,null,null,null,null,null,null,null,null,null,"H + C2H3NO","H + C2H3NO"],"lab":["PR156","PR156","MIN82","MIN82","TS233","TS233","MIN50","MIN50","TS138","TS138","MIN39","MIN39","TS87","TS87","PR9","PR9"],"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAADwPwAAAAAAAABAAAAAAAAACEAAAAAAAAAQQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAcQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAkQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAqQAAAAAAAACxAAAAAAAAALkA=","dtype":"float64","order":"little","shape":[16]},"y":[44.98843404115178,44.98843404115178,37.192227805178845,37.192227805178845,85.04921675512742,85.04921675512742,13.205727827706141,13.205727827706141,48.8757388858794,48.8757388858794,4.512507489416748,4.512507489416748,36.26513437794347,36.26513437794347,28.89100169511221,28.89100169511221]},"selected":{"id":"1324"},"selection_policy":{"id":"1323"}},"id":"1193","type":"ColumnDataSource"},{"attributes":{},"id":"1314","type":"Selection"},{"attributes":{"children":[{"id":"1156"},{"id":"1157"},{"id":"1161"},{"id":"1160"}],"width":600},"id":"1158","type":"Column"},{"attributes":{"name":"ENERGYLABELS","source":{"id":"1251"},"text":{"field":"elab"},"text_font_size":{"value":"1.4vh"},"visible":false,"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":-20}},"id":"1252","type":"LabelSet"},{"attributes":{},"id":"1315","type":"UnionRenderers"},{"attributes":{},"id":"1162","type":"DataRange1d"},{"attributes":{"callback":{"id":"1261"},"description":"Show energy labels","icon":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAKklEQVR4nGP8//8/AzbAwsDAcPLkSTRRc3NzFjgLTY4JqzlQozBNo65RAAfvDWESs4jlAAAAAElFTkSuQmCC"},"id":"1262","type":"CustomAction"},{"attributes":{"args":{"graph":{"id":"1033"},"prof":{"id":"1161"}},"code":"\n\t\t// graph - bokeh graph for the network view, use to fetch node and edge renderers\n\t\t// prof - bokeh figure for the profiles\n\t\tvar nrend = graph.node_renderer.data_source\n\t\tvar erend = graph.edge_renderer.data_source\n\t\tvar ninds = nrend.selected.indices\n\t\tvar einds = erend.selected.indices\n\t\tif (ninds.length) {\n\t\t\tvar rend = nrend\n\t\t} else if (einds.length) {\n\t\t\tvar rend = erend\n\t\t} else {\n\t\t\tvar rend = null\n\t\t\t// make everything visible\n\t\t\tfor (let [index,line] of prof.renderers.entries()){\n\t\t\t\tprof.renderers[index].visible = true\n\t\t\t\t// only EVEN entries for center\n\t\t\t\tif (index % 2 == 0){\n\t\t\t\t\tprof.center[index+2].visible = true\n\t\t\t\t}\n\t\t\t} \n\t\t\treturn true\n\t\t}\n\t\tvar ndx = rend.selected.indices[0]\n\t\tvar sel_spc = rend.data[\"name\"][ndx]\n\t\t// labels are stored in \"center\" property of the figure\n\t\t// and we have TWO renderers per entry: skeleton and rectangle\n\t\tvar Nlines = prof.renderers.length/2\n\t\tfor (let i = 0 ; i &lt; Nlines ; i++){\n\t\t\tconst index = 2*i\n\t\t\tvar current_data = prof.renderers[index].data_source\n\t\t\tvar labels = current_data.data[\"lab\"]\n\t\t\t// use ! to negate inclusion\n\t\t\tif (!labels.includes(sel_spc)){\n\t\t\t\tprof.renderers[index].visible = false\n\t\t\t\tprof.renderers[index+1].visible = false\n\t\t\t\t// labels are also duplicated: first tag, then energy.\n\t\t\t\tprof.center[index+2].visible = false\n\t\t\t\tprof.center[index+3].visible = false\n\t\t\t} \n\t\tprof.properties.renderers.change.emit()\n\t\t}\n\t\t"},"id":"1259","type":"CustomJS"},{"attributes":{},"id":"1316","type":"Selection"},{"attributes":{},"id":"1164","type":"DataRange1d"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVA","dtype":"float64","order":"little","shape":[6]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1298"},"selection_policy":{"id":"1297"}},"id":"1206","type":"ColumnDataSource"},{"attributes":{},"id":"1266","type":"Title"},{"attributes":{},"id":"1317","type":"UnionRenderers"},{"attributes":{},"id":"1166","type":"LinearScale"},{"attributes":{},"id":"1267","type":"AllLabels"},{"attributes":{},"id":"1318","type":"Selection"},{"attributes":{},"id":"1168","type":"LinearScale"},{"attributes":{},"id":"1268","type":"BasicTickFormatter"},{"attributes":{},"id":"1319","type":"UnionRenderers"},{"attributes":{"formatter":{"id":"1285"},"major_label_policy":{"id":"1284"},"ticker":{"id":"1171"},"visible":false},"id":"1170","type":"LinearAxis"},{"attributes":{},"id":"1284","type":"AllLabels"},{"attributes":{},"id":"1320","type":"Selection"},{"attributes":{"name":"THELABELS","source":{"id":"1203"},"text":{"field":"lab"},"text_font_size":{"value":"1.4vh"},"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":2}},"id":"1204","type":"LabelSet"},{"attributes":{},"id":"1278","type":"AllLabels"},{"attributes":{},"id":"1171","type":"BasicTicker"},{"attributes":{},"id":"1321","type":"UnionRenderers"},{"attributes":{"axis":{"id":"1170"},"ticker":null},"id":"1173","type":"Grid"},{"attributes":{},"id":"1285","type":"BasicTickFormatter"},{"attributes":{},"id":"1322","type":"Selection"},{"attributes":{"axis_label":"E (kcal/mol)","axis_label_text_font":"Arial","axis_label_text_font_size":"1.5vh","axis_label_text_font_style":"bold","formatter":{"id":"1282"},"major_label_policy":{"id":"1281"},"major_label_text_font_size":"1.2vh","ticker":{"id":"1175"}},"id":"1174","type":"LinearAxis"},{"attributes":{"align":"center","css_classes":["xspecial"],"icon":null,"js_event_callbacks":{"button_click":[{"id":"1139"}]},"label":"Load vibrations","max_width":200},"id":"1127","type":"Button"},{"attributes":{},"id":"1282","type":"BasicTickFormatter"},{"attributes":{},"id":"1323","type":"UnionRenderers"},{"attributes":{"align":"center","css_classes":["xtest"],"icon":null,"js_event_callbacks":{"button_click":[{"id":"1140"}]},"label":"To clipboard","max_width":200},"id":"1128","type":"Button"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","36.3","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS87","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVA","dtype":"float64","order":"little","shape":[6]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,36.26513437794347,28.89100169511221]},"selected":{"id":"1296"},"selection_policy":{"id":"1295"}},"id":"1203","type":"ColumnDataSource"},{"attributes":{},"id":"1175","type":"BasicTicker"},{"attributes":{},"id":"1324","type":"Selection"},{"attributes":{"axis":{"id":"1174"},"dimension":1,"ticker":null},"id":"1177","type":"Grid"},{"attributes":{},"id":"1279","type":"BasicTickFormatter"},{"attributes":{},"id":"1288","type":"UnionRenderers"},{"attributes":{},"id":"1325","type":"UnionRenderers"},{"attributes":{"data":{"form":["CH2N + CH2O","CH2N + CH2O",null,null,null,null,null,null,null,null,"H + C2H3NO","H + C2H3NO"],"lab":["PR156","PR156","MIN82","MIN82","TS110","TS110","MIN39","MIN39","TS87","TS87","PR9","PR9"],"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAADwPwAAAAAAAABAAAAAAAAACEAAAAAAAAAQQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAcQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAkQAAAAAAAACZA","dtype":"float64","order":"little","shape":[12]},"y":[44.98843404115178,44.98843404115178,37.192227805178845,37.192227805178845,42.23341786007222,42.23341786007222,4.512507489416748,4.512507489416748,36.26513437794347,36.26513437794347,28.89100169511221,28.89100169511221]},"selected":{"id":"1312"},"selection_policy":{"id":"1311"}},"id":"1190","type":"ColumnDataSource"},{"attributes":{},"id":"1289","type":"Selection"},{"attributes":{},"id":"1326","type":"Selection"},{"attributes":{"args":{"prof":{"id":"1161"},"thrbox":{"id":"1137"}},"code":"\n\t\t// graph - bokeh graph for the network view, use to fetch node and edge renderers\n\t\t// prof - bokeh figure for the profiles, thrbox - textbox for threshold energy\n\t\tvar thr = parseFloat(thrbox.value)\n\t\tvar range = {min: thr, max: thr}\n\t\tfunction overThreshold(element){\n\t\t\treturn element &gt; thr\n\t\t}\n\t\tvar Nlines = prof.renderers.length/2\n\t\tfor (let i = 0 ; i &lt; Nlines ; i++){\n\t\t\tconst index = 2*i\n\t\t\tvar current_data = prof.renderers[index].data_source\n\t\t\tvar energies = current_data.data[\"y\"]\n\t\t\t//hide if anything is above the threshold\n\t\t\tif (energies.some(overThreshold)){\n\t\t\t\tprof.renderers[index].visible = false\n\t\t\t\tprof.renderers[index+1].visible = false\n\t\t\t\t// labels are also duplicated: first tag, then energy.\n\t\t\t\tprof.center[index+2].visible = false\n\t\t\t\tprof.center[index+3].visible = false\n\t\t\t} \n\t\t}\n\t\t"},"id":"1260","type":"CustomJS"},{"attributes":{},"id":"1290","type":"UnionRenderers"},{"attributes":{},"id":"1327","type":"UnionRenderers"},{"attributes":{},"id":"1178","type":"PanTool"},{"attributes":{},"id":"1291","type":"Selection"},{"attributes":{},"id":"1329","type":"UnionRenderers"},{"attributes":{},"id":"1179","type":"WheelZoomTool"},{"attributes":{"source":{"id":"1199"}},"id":"1202","type":"CDSView"},{"attributes":{},"id":"1292","type":"UnionRenderers"},{"attributes":{"overlay":{"id":"1183"}},"id":"1180","type":"BoxZoomTool"},{"attributes":{"align":"center","max_width":200,"value":"MIN82"},"id":"1129","type":"TextInput"},{"attributes":{},"id":"1293","type":"Selection"},{"attributes":{"data_source":{"id":"1199"},"glyph":{"id":"1200"},"hover_glyph":null,"muted_glyph":null,"view":{"id":"1202"}},"id":"1201","type":"GlyphRenderer"},{"attributes":{},"id":"1181","type":"ResetTool"},{"attributes":{"align":"center","icon":null,"js_event_callbacks":{"button_click":[{"id":"1141"}]},"label":"Locate molecule","max_width":400},"id":"1130","type":"Button"},{"attributes":{},"id":"1295","type":"UnionRenderers"},{"attributes":{},"id":"1182","type":"SaveTool"},{"attributes":{"align":"center","disabled":true,"icon":null,"js_event_callbacks":{"menu_item_click":[{"id":"1142"}]},"label":"Normal modes","max_width":400,"menu":[["No vibr. loaded","None"],null]},"id":"1131","type":"Dropdown"},{"attributes":{},"id":"1296","type":"Selection"},{"attributes":{"source":{"id":"1191"}},"id":"1213","type":"CDSView"},{"attributes":{"active_multi":null,"tools":[{"id":"1178"},{"id":"1179"},{"id":"1180"},{"id":"1181"},{"id":"1182"},{"id":"1254"},{"id":"1262"}]},"id":"1184","type":"Toolbar"},{"attributes":{"fill_alpha":{"value":0.7},"fill_color":{"field":"energy","transform":{"id":"1051"}},"line_color":{"field":"energy","transform":{"id":"1051"}},"line_width":{"value":2},"size":{"value":30}},"id":"1062","type":"Circle"},{"attributes":{"line_width":{"value":2}},"id":"1071","type":"MultiLine"},{"attributes":{"end":1.2,"start":-1.2},"id":"1003","type":"Range1d"},{"attributes":{"line_color":"#1f77b4","x":{"field":"x"},"y":{"field":"y"}},"id":"1195","type":"Line"},{"attributes":{"formatter":{"id":"1268"},"major_label_policy":{"id":"1267"},"ticker":{"id":"1018"},"visible":false},"id":"1017","type":"LinearAxis"},{"attributes":{"args":{"jsmol":{"id":"1126"},"layout":{"id":"1159"},"mol_view":[false],"prof":{"id":"1161"}},"code":"\n\t\t//layout - full layout, jsmol - jsmol app (where the profile window will appear), prof - profile\n\t\t//mol_view - boolean for current view\n\t\tvar current_fig = layout.children[1][0].children\n\t\tvar name_elem = current_fig[0]\n\t\tvar jsmol_plot = current_fig[1]\n\t\tvar prof_plot = current_fig[2]\n\t\tvar control_elem = current_fig[3]\n\n\t\t// allow to enable and disable corresponding profile control buttons\n\t\tvar bfilt1 = control_elem.children[1] \n\t\tvar bfilt2 = control_elem.children[3]\n\t\tif (mol_view[0] == true){\n\t\t\tjsmol.visible = true\n\t\t\tprof.visible = false\n\t\t\tbfilt1.disabled = true\n\t\t\tbfilt2.disabled = true\n\t\t\tmol_view[0] = false\n\t\t} else {\n\t\t\tjsmol.visible = false\n\t\t\tprof.visible = true\n\t\t\tbfilt1.disabled = false\n\t\t\tbfilt2.disabled = false\n\t\t\tmol_view[0] = true\n\t\t}\n\n\t\t"},"id":"1258","type":"CustomJS"},{"attributes":{"args":{"prof":{"id":"1161"}},"code":"\n\t\t// prof - bokeh figure for the profiles\n\t\t// make everything visible\n\t\tvar Nlines = prof.renderers.length/2\n\t\tfor (let i = 0 ; i &lt; Nlines ; i++){\n\t\t\tconst index = 2*i\n\t\t\tprof.renderers[index].visible = true\n\t\t\tprof.renderers[index+1].visible = true\n\t\t\t// tags are EVEN entries and energies are ODD\n\t\t\tprof.center[index+2].visible = true\n\t\t\tprof.center[index+3].visible = false\n\t\t\tconsole.log(prof.center[index+3].text,prof.center[index+3].visible)\n\t\t}\n\t\t"},"id":"1257","type":"CustomJS"},{"attributes":{},"id":"1018","type":"BasicTicker"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","syncable":false,"top_units":"screen"},"id":"1183","type":"BoxAnnotation"},{"attributes":{"data":{"enames":["TS110","TS233","TS87","TS116","TS138","TS68","TS85"],"etuples":[["MIN82","MIN39"],["MIN82","MIN50"],["MIN39","PR9"],["MIN39","MIN29"],["MIN39","MIN50"],["MIN29","MIN50"],["MIN29","PR9"]],"xe":[0.2170798412017836,0.11001662781055664,-0.41313500804910613,-0.19732139153847653,-0.10794275694527893,-0.3043846049297035,-0.6095768560335307],"ye":[-0.005710333217249036,-0.2510927503087899,0.2626414381308054,0.42242253042374667,0.009311999617086106,0.17704011333220576,0.43036955184592507]},"selected":{"id":"1291"},"selection_policy":{"id":"1290"}},"id":"1084","type":"ColumnDataSource"},{"attributes":{"line_color":{"value":"orange"},"line_width":{"value":3}},"id":"1076","type":"MultiLine"},{"attributes":{"data":{"form":["CH2N + CH2O","CH2N + CH2O",null,null,null,null,null,null,null,null,null,null,null,null,"H + C2H3NO","H + C2H3NO"],"lab":["PR156","PR156","MIN82","MIN82","TS233","TS233","MIN50","MIN50","TS68","TS68","MIN29","MIN29","TS85","TS85","PR9","PR9"],"x":{"__ndarray__":"AAAAAAAAAAAAAAAAAADwPwAAAAAAAABAAAAAAAAACEAAAAAAAAAQQAAAAAAAABRAAAAAAAAAGEAAAAAAAAAcQAAAAAAAACBAAAAAAAAAIkAAAAAAAAAkQAAAAAAAACZAAAAAAAAAKEAAAAAAAAAqQAAAAAAAACxAAAAAAAAALkA=","dtype":"float64","order":"little","shape":[16]},"y":[44.98843404115178,44.98843404115178,37.192227805178845,37.192227805178845,85.04921675512742,85.04921675512742,13.205727827706141,13.205727827706141,29.66137923800852,29.66137923800852,0.0,0.0,34.50326257312554,34.50326257312554,28.89100169511221,28.89100169511221]},"selected":{"id":"1320"},"selection_policy":{"id":"1319"}},"id":"1192","type":"ColumnDataSource"},{"attributes":{"active_multi":null,"tools":[{"id":"1021"},{"id":"1022"},{"id":"1023"},{"id":"1024"},{"id":"1025"},{"id":"1093"},{"id":"1099"},{"id":"1112"},{"id":"1115"}]},"id":"1027","type":"Toolbar"},{"attributes":{"name":"ENERGYLABELS","source":{"id":"1206"},"text":{"field":"elab"},"text_font_size":{"value":"1.4vh"},"visible":false,"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":-20}},"id":"1207","type":"LabelSet"},{"attributes":{"data":{"nnames":["MIN82","MIN39","MIN29","MIN50","PR9","PR156"],"xn":[0.4350392259576192,-0.0008795435540519421,-0.3937632395229011,-0.2150059703365059,-0.8253904725441603,1.0],"yn":[-0.26611508314312504,0.25469441670862697,0.5901506441388663,-0.23607041747445476,0.27058845955298383,-0.6132480197828973]},"selected":{"id":"1289"},"selection_policy":{"id":"1288"}},"id":"1081","type":"ColumnDataSource"},{"attributes":{"formatter":{"id":"1279"},"major_label_policy":{"id":"1278"},"ticker":{"id":"1014"},"visible":false},"id":"1013","type":"LinearAxis"},{"attributes":{"line_color":"#ff7f0e","x":{"field":"x"},"y":{"field":"y"}},"id":"1210","type":"Line"},{"attributes":{"source":{"id":"1039"}},"id":"1041","type":"CDSView"},{"attributes":{"source":{"id":"1081"},"text":{"field":"nnames"},"text_font_size":{"value":"1.5vh"},"text_font_style":{"value":"bold"},"x":{"field":"xn"},"y":{"field":"yn"},"y_offset":{"value":5}},"id":"1082","type":"LabelSet"},{"attributes":{},"id":"1014","type":"BasicTicker"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","43.8","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS116","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,43.825577985000564,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1318"},"selection_policy":{"id":"1317"}},"id":"1214","type":"ColumnDataSource"},{"attributes":{},"id":"1009","type":"LinearScale"},{"attributes":{"text":"Reaction network visualization","text_font_size":"1.5vh"},"id":"1005","type":"Title"},{"attributes":{"data_source":{"id":"1191"},"glyph":{"id":"1210"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1211"},"view":{"id":"1213"}},"id":"1212","type":"GlyphRenderer"},{"attributes":{"edge_renderer":{"id":"1040"},"inspection_policy":{"id":"1087"},"layout_provider":{"id":"1046"},"node_renderer":{"id":"1036"},"selection_policy":{"id":"1102"}},"id":"1033","type":"GraphRenderer"},{"attributes":{"line_alpha":0.1,"line_color":"#ff7f0e","x":{"field":"x"},"y":{"field":"y"}},"id":"1211","type":"Line"},{"attributes":{"axis":{"id":"1013"},"grid_line_color":null,"ticker":null},"id":"1016","type":"Grid"},{"attributes":{"source":{"id":"1084"},"text":{"field":"enames"},"text_color":{"value":"red"},"text_font_size":{"value":"1.5vh"},"text_font_style":{"value":"bold"},"x":{"field":"xe"},"y":{"field":"ye"}},"id":"1085","type":"LabelSet"},{"attributes":{"data":{"script":[]},"selected":{"id":"1293"},"selection_policy":{"id":"1292"}},"id":"1125","type":"ColumnDataSource"},{"attributes":{},"id":"1087","type":"EdgesAndLinkedNodes"},{"attributes":{"fill_alpha":{"value":0.9},"fill_color":{"value":"#ff7f0e"},"height":{"value":2},"line_width":{"value":0},"name":"RECTANGLE","width":{"value":1},"x":{"field":"x"},"y":{"field":"y"}},"id":"1215","type":"Rect"},{"attributes":{},"id":"1021","type":"PanTool"},{"attributes":{"data_source":{"id":"1214"},"glyph":{"id":"1215"},"hover_glyph":null,"muted_glyph":null,"view":{"id":"1217"}},"id":"1216","type":"GlyphRenderer"},{"attributes":{"source":{"id":"1214"}},"id":"1217","type":"CDSView"},{"attributes":{},"id":"1024","type":"ResetTool"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","43.8","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS116","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,43.825577985000564,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1300"},"selection_policy":{"id":"1299"}},"id":"1218","type":"ColumnDataSource"},{"attributes":{"callback":{"id":"1094"},"description":"Node hover","formatters":{"@energy":"printf"},"renderers":[{"id":"1036"}]},"id":"1093","type":"HoverTool"},{"attributes":{"name":"THELABELS","source":{"id":"1218"},"text":{"field":"lab"},"text_font_size":{"value":"1.4vh"},"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":2}},"id":"1219","type":"LabelSet"},{"attributes":{"overlay":{"id":"1026"}},"id":"1023","type":"BoxZoomTool"},{"attributes":{"axis":{"id":"1017"},"dimension":1,"grid_line_color":null,"ticker":null},"id":"1020","type":"Grid"},{"attributes":{"data_source":{"id":"1190"},"glyph":{"id":"1195"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1196"},"view":{"id":"1198"}},"id":"1197","type":"GlyphRenderer"},{"attributes":{"args":{"graph":{"id":"1033"},"hover":{"id":"1093"}},"code":"\n\tvar nrend = graph.node_renderer.data_source\n\tif (cb_data.index.indices.length &gt; 0) {\n\t\tvar ndx = cb_data.index.indices[0]\n\t\tvar formula_list = nrend.data[\"formula\"]\n\t\t// fallback for cases without any fragmentation, where formula is not defined\n\t    if (formula_list){\n\t\t\tvar formula = formula_list[ndx]\n\t\t} else {\n\t\t\tvar formula = null\n\t\t}\n\t    if (!formula){\n\t\t\thover.tooltips = [[\"tag\",\"@name\"],[\"E\",\"@energy{%.2f}\"]]\n \t\t} else {\n\t\t\thover.tooltips = [[\"tag\",\"@name\"],[\"E\",\"@energy{%.2f}\"],[\"formula\",\"@formula\"]]\n\t\t}\n\t}\n\t"},"id":"1094","type":"CustomJS"},{"attributes":{"args":{"hover":{"id":"1254"}},"code":"\n\t// all renderers are checked at once: when the triggered one is caught (by changes in cb_data.index.line_indices)\n\t// access its data_source directly\n\tif (cb_data.index.line_indices.length &gt; 0) {\n\t\tvar ndx = cb_data.index.line_indices[0]\n\t\tvar rend_obj = cb_data.renderer.data_source\n\t\tvar formula_list = rend_obj.data[\"form\"]\n\n\t// fallback for cases without any fragmentation, where formula is not defined\n\t    if (formula_list){\n\t\t\tvar formula = formula_list[ndx]\n\t\t} else {\n\t\t\tvar formula = null\n\t\t}\n\t    if (!formula){\n\t\t\thover.tooltips = [[\"tag\",\"@lab\"],[\"E\",\"@y{%.2f}\"]]\n \t\t} else {\n\t\t\thover.tooltips = [[\"tag\",\"@lab\"],[\"E\",\"@y{%.2f}\"],[\"formula\",\"@form\"]]\n\t\t}\n\t}\n\t"},"id":"1255","type":"CustomJS"},{"attributes":{"data_source":{"id":"1039"},"glyph":{"id":"1038"},"hover_glyph":{"id":"1071"},"muted_glyph":null,"selection_glyph":{"id":"1076"},"view":{"id":"1041"}},"id":"1040","type":"GlyphRenderer"},{"attributes":{},"id":"1011","type":"LinearScale"},{"attributes":{"data":{"elab":["45.0","37.2","42.2","4.5","43.8","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS110","MIN39","TS116","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,42.23341786007222,4.512507489416748,43.825577985000564,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1302"},"selection_policy":{"id":"1301"}},"id":"1221","type":"ColumnDataSource"},{"attributes":{"callback":null,"description":"Edge hover","formatters":{"@energy":"printf"},"line_policy":"interp","renderers":[{"id":"1040"}],"tooltips":[["tag","@name"],["E","@energy{%.2f}"]]},"id":"1099","type":"HoverTool"},{"attributes":{"name":"ENERGYLABELS","source":{"id":"1221"},"text":{"field":"elab"},"text_font_size":{"value":"1.4vh"},"visible":false,"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":-20}},"id":"1222","type":"LabelSet"},{"attributes":{"callback":null,"renderers":[{"id":"1036"},{"id":"1040"}]},"id":"1112","type":"TapTool"},{"attributes":{"fill_alpha":{"value":0.8},"fill_color":{"field":"energy","transform":{"id":"1051"}},"line_width":{"value":2},"size":{"value":30}},"id":"1057","type":"Circle"},{"attributes":{},"id":"1022","type":"WheelZoomTool"},{"attributes":{"callback":{"id":"1255"},"description":"Profile hover","formatters":{"@y":"printf"},"line_policy":"interp","renderers":[{"id":"1197"},{"id":"1212"},{"id":"1227"},{"id":"1242"}],"tooltips":[["tag","@lab"],["E","@y{%.2f}"],["formula","@form"]]},"id":"1254","type":"HoverTool"},{"attributes":{},"id":"1102","type":"EdgesAndLinkedNodes"},{"attributes":{},"id":"1025","type":"SaveTool"},{"attributes":{},"id":"1281","type":"AllLabels"},{"attributes":{"data":{"energy":[37.192227805178845,4.512507489416748,0.0,13.205727827706141,28.89100169511221,44.98843404115178],"fname":["MIN82_minf_ts157_batch7.rxyz","MIN39_minf_ts301_batch44.rxyz","MIN29_min0.rxyz","MIN50_minf_ts127_batch22.rxyz","PR9_minf_ts17_batch32","PR156_min_diss_21"],"formula":[null,null,null,null,"H + C2H3NO","CH2N + CH2O"],"frequencies":["91.0;339.0;537.0;684.0;705.0;781.0;974.0;1118.0;1196.0;1247.0;1305.0;1469.0;1481.0;1651.0;2922.0;2945.0;3527.0;3661.0","75.0;245.0;278.0;644.0;654.0;882.0;994.0;1062.0;1106.0;1266.0;1310.0;1428.0;1488.0;1856.0;3028.0;3082.0;3538.0;3875.0","103.0;347.0;365.0;450.0;790.0;963.0;1015.0;1098.0;1179.0;1248.0;1378.0;1407.0;1501.0;1752.0;3018.0;3064.0;3124.0;3913.0","129.0;290.0;498.0;733.0;749.0;872.0;1102.0;1152.0;1167.0;1236.0;1335.0;1388.0;1428.0;1763.0;2929.0;2948.0;3095.0;3457.0","  179;  235;  370;  587;  904; 1038; 1120; 1263; 1276; 1467; 1508; 2407; 3029; 3066; 3927","  744; 1037; 1463; 1634; 3401; 3466; 1214; 1276; 1540; 1857; 2909; 2972"],"geometry":["H 1.574909 -0.298325 0.000000\nC 0.000000 0.980061 0.000000\nO -0.347780 -1.309309 0.000000\nN 1.251986 0.661432 0.000000\nH -1.646776 0.017845 0.894251\nH -1.646776 0.017845 -0.894251\nH 1.940730 1.396880 0.000000\nC -1.033958 -0.195027 0.000000","H -2.499136 -0.310197 -0.018365\nC -0.775791 0.580189 -0.025063\nC 0.712838 0.627316 0.017415\nO 1.326091 -0.636605 -0.028159\nN -1.491059 -0.419700 0.006839\nH 1.063092 1.226309 -0.826787\nH 0.991126 1.167171 0.930303\nH 0.651326 -1.297578 0.138138","H 0.763739 -0.932366 1.154153\nC 0.792494 -0.197978 0.338293\nC -0.503176 0.562137 0.082812\nO -1.584900 -0.319544 -0.081102\nN 1.822595 -0.044171 -0.329969\nH -0.725108 1.167663 0.961856\nH -0.369115 1.228604 -0.771885\nH -1.484391 -0.783306 -0.912153","H 1.265167 1.504149 0.000000\nC 0.781714 0.524585 0.000000\nC -0.733545 0.545844 0.000000\nO -1.341785 -0.660482 0.000000\nN 1.499485 -0.507967 0.000000\nH -1.111255 1.126611 0.861777\nH -1.111313 1.126786 -0.861625\nH 0.906273 -1.340494 0.000000","H 5 0.000000 0.000000\nC -4.23665 0.120144 -0.000032\nC -5.6188 0.605214 -0.000032\nO -6.48989 -0.496654 0.000183\nN -3.14265 -0.220145 -0.000032\nH -5.747 1.235965 0.886278\nH -5.74685 1.235774 -0.886294\nH -7.38969 -0.172493 -0.001677","H 5 0.855957 1.063879\nC 5 0.000000 -0.775578\nN 5 0.000000 0.511962\nH 5 -0.855957 1.063879\nC -4.40248 -0.000001 0.000490\nO -5.59757 -0.000001 -0.000490\nH -3.8174 0.938505 -0.004416\nH -3.81737 -0.938480 0.006355"],"index":["MIN82","MIN39","MIN29","MIN50","PR9","PR156"],"model":["data 'model X'|8|MIN82|H 1.574909 -0.298325 0.000000|C 0.000000 0.980061 0.000000|O -0.347780 -1.309309 0.000000|N 1.251986 0.661432 0.000000|H -1.646776 0.017845 0.894251|H -1.646776 0.017845 -0.894251|H 1.940730 1.396880 0.000000|C -1.033958 -0.195027 0.000000|end 'model X';show data","data 'model X'|8|MIN39|H -2.499136 -0.310197 -0.018365|C -0.775791 0.580189 -0.025063|C 0.712838 0.627316 0.017415|O 1.326091 -0.636605 -0.028159|N -1.491059 -0.419700 0.006839|H 1.063092 1.226309 -0.826787|H 0.991126 1.167171 0.930303|H 0.651326 -1.297578 0.138138|end 'model X';show data","data 'model X'|8|MIN29|H 0.763739 -0.932366 1.154153|C 0.792494 -0.197978 0.338293|C -0.503176 0.562137 0.082812|O -1.584900 -0.319544 -0.081102|N 1.822595 -0.044171 -0.329969|H -0.725108 1.167663 0.961856|H -0.369115 1.228604 -0.771885|H -1.484391 -0.783306 -0.912153|end 'model X';show data","data 'model X'|8|MIN50|H 1.265167 1.504149 0.000000|C 0.781714 0.524585 0.000000|C -0.733545 0.545844 0.000000|O -1.341785 -0.660482 0.000000|N 1.499485 -0.507967 0.000000|H -1.111255 1.126611 0.861777|H -1.111313 1.126786 -0.861625|H 0.906273 -1.340494 0.000000|end 'model X';show data","data 'model X'|8|PR9|H 5 0.000000 0.000000|C -4.23665 0.120144 -0.000032|C -5.6188 0.605214 -0.000032|O -6.48989 -0.496654 0.000183|N -3.14265 -0.220145 -0.000032|H -5.747 1.235965 0.886278|H -5.74685 1.235774 -0.886294|H -7.38969 -0.172493 -0.001677|end 'model X';show data","data 'model X'|8|PR156|H 5 0.855957 1.063879|C 5 0.000000 -0.775578|N 5 0.000000 0.511962|H 5 -0.855957 1.063879|C -4.40248 -0.000001 0.000490|O -5.59757 -0.000001 -0.000490|H -3.8174 0.938505 -0.004416|H -3.81737 -0.938480 0.006355|end 'model X';show data"],"name":["MIN82","MIN39","MIN29","MIN50","PR9","PR156"],"vibr_displace":[[[["0.000000","0.000000","-0.490000"],["0.000000","0.000000","0.220000"],["0.000000","0.000000","0.100000"],["0.000000","0.000000","-0.110000"],["-0.420000","-0.080000","-0.390000"],["0.420000","0.080000","-0.390000"],["0.000000","0.000000","-0.030000"],["0.000000","0.000000","-0.110000"]],[["-0.500000","-0.400000","0.000000"],["-0.080000","0.040000","0.000000"],["0.300000","0.270000","0.000000"],["-0.160000","-0.290000","0.000000"],["-0.100000","-0.100000","0.010000"],["-0.100000","-0.100000","-0.010000"],["0.050000","-0.500000","0.000000"],["-0.070000","0.040000","0.000000"]],[["-0.609998","-0.210000","0.000000"],["0.020000","0.420000","0.000000"],["-0.040000","-0.170000","0.000000"],["-0.090000","-0.030000","0.000000"],["0.210000","-0.060000","0.030000"],["0.210000","-0.060000","-0.030000"],["0.300000","-0.400000","0.000000"],["0.140000","-0.090000","0.000000"]],[["0.000000","0.000000","0.520000"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","-0.030000"],["0.000000","0.000000","0.010000"],["-0.230000","-0.140000","-0.100000"],["0.230000","0.140000","-0.100000"],["0.000000","0.000000","-0.749998"],["0.000000","0.000000","0.040000"]],[["-0.020000","-0.020000","0.000000"],["0.210000","0.180000","0.000000"],["0.000000","0.110000","0.000000"],["0.220000","0.080000","0.000000"],["-0.320000","-0.290000","0.080000"],["-0.320000","-0.290000","-0.080000"],["0.360000","-0.040000","0.000000"],["-0.450000","-0.360000","0.000000"]],[["0.000000","0.000000","0.770001"],["0.000000","0.000000","0.040000"],["0.000000","0.000000","-0.010000"],["0.000000","0.000000","-0.140000"],["-0.080000","-0.050000","-0.030000"],["0.080000","0.050000","-0.030000"],["0.000000","0.000000","0.609998"],["0.000000","0.000000","0.020000"]],[["0.000000","0.000000","0.310000"],["0.000000","0.000000","0.150000"],["0.000000","0.000000","0.050000"],["0.000000","0.000000","-0.030000"],["0.550000","0.190000","0.160000"],["-0.550000","-0.190000","0.160000"],["0.000000","0.000000","-0.350000"],["0.000000","0.000000","-0.200000"]],[["0.770001","0.150000","0.000000"],["0.000000","0.140000","0.000000"],["0.010000","-0.020000","0.000000"],["-0.010000","-0.130000","0.000000"],["-0.020000","-0.150000","0.030000"],["-0.020000","-0.150000","-0.030000"],["-0.450000","0.300000","0.000000"],["-0.020000","0.020000","0.000000"]],[["0.110000","0.030000","0.000000"],["0.010000","-0.010000","0.000000"],["-0.060000","0.130000","0.000000"],["-0.060000","-0.030000","0.000000"],["0.440000","0.450000","0.120000"],["0.440000","0.450000","-0.120000"],["-0.240000","0.150000","0.000000"],["0.070000","-0.220000","0.000000"]],[["0.000000","0.000000","-0.030000"],["0.000000","0.000000","-0.030000"],["0.000000","0.000000","0.050000"],["0.000000","0.000000","0.000000"],["0.090000","-0.679998","0.140000"],["-0.090000","0.679998","0.140000"],["0.000000","0.000000","0.050000"],["0.000000","0.000000","-0.070000"]],[["-0.020000","-0.010000","0.000000"],["-0.010000","-0.020000","0.000000"],["-0.120000","0.140000","0.000000"],["0.010000","0.010000","0.000000"],["-0.050000","-0.679998","0.010000"],["-0.050000","-0.679998","-0.010000"],["0.050000","-0.030000","0.000000"],["0.170000","-0.050000","0.000000"]],[["-0.510000","-0.120000","0.000000"],["0.260000","-0.030000","0.000000"],["0.000000","-0.020000","0.000000"],["-0.130000","0.020000","0.000000"],["0.020000","-0.160000","0.060000"],["0.020000","-0.160000","-0.060000"],["-0.609998","0.460000","0.000000"],["-0.030000","0.040000","0.000000"]],[["0.020000","0.020000","0.000000"],["-0.030000","-0.020000","0.000000"],["0.010000","-0.020000","0.000000"],["0.010000","0.010000","0.000000"],["0.500000","-0.220000","0.430000"],["0.500000","-0.220000","-0.430000"],["0.120000","-0.080000","0.000000"],["-0.090000","0.070000","0.000000"]],[["0.579999","0.310000","0.000000"],["0.150000","-0.030000","0.000000"],["0.000000","0.000000","0.000000"],["-0.200000","0.050000","0.000000"],["-0.040000","-0.020000","-0.030000"],["-0.040000","-0.020000","0.030000"],["0.450000","-0.539999","0.000000"],["0.000000","0.000000","0.000000"]],[["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.370000","0.120000","0.590001"],["-0.370000","0.120000","-0.590001"],["0.000000","0.000000","0.000000"],["0.060000","-0.010000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.400000","-0.120000","-0.560002"],["-0.400000","0.120000","-0.560002"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.090000"]],[["-0.280000","0.829999","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","-0.030000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.330000","-0.350000","0.000000"],["0.000000","0.000000","0.000000"]],[["-0.160000","0.440000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.030000","-0.080000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.600002","0.649999","0.000000"],["0.000000","0.000000","0.000000"]]],[[["0.030000","-0.050000","0.080000"],["0.000000","0.010000","0.140000"],["0.000000","0.020000","-0.090000"],["-0.020000","-0.010000","0.100000"],["0.040000","-0.020000","-0.070000"],["-0.180000","-0.100000","-0.260000"],["0.200000","0.150000","-0.230000"],["-0.240000","-0.020000","-0.810001"]],[["-0.220000","0.370000","0.060000"],["-0.010000","-0.080000","0.180000"],["-0.020000","-0.070000","-0.060000"],["0.230000","0.030000","0.010000"],["-0.250000","0.080000","-0.120000"],["-0.260000","-0.170000","-0.230000"],["0.130000","0.130000","-0.220000"],["0.460000","-0.100000","0.410000"]],[["0.100000","-0.150000","0.040000"],["0.000000","0.050000","0.160000"],["0.010000","0.030000","-0.030000"],["-0.120000","-0.020000","-0.030000"],["0.110000","-0.040000","-0.120000"],["-0.090000","-0.120000","-0.180000"],["0.200000","0.150000","-0.160000"],["-0.030000","0.100000","0.859998"]],[["0.000000","-0.330000","0.820002"],["-0.110000","0.130000","-0.010000"],["-0.060000","-0.070000","-0.030000"],["0.070000","-0.040000","0.020000"],["0.060000","0.030000","-0.060000"],["0.140000","0.020000","0.120000"],["-0.230000","-0.180000","0.090000"],["0.140000","-0.110000","0.000000"]],[["-0.030000","0.430000","0.780002"],["0.110000","-0.140000","-0.020000"],["0.060000","0.070000","-0.020000"],["-0.070000","0.040000","0.010000"],["-0.050000","-0.040000","-0.060000"],["0.190000","0.160000","0.100000"],["-0.140000","-0.020000","0.100000"],["-0.160000","0.130000","0.030000"]],[["-0.200000","-0.539999","0.040000"],["-0.210000","0.030000","-0.010000"],["0.310000","0.150000","0.010000"],["0.040000","-0.060000","0.000000"],["-0.160000","-0.070000","0.000000"],["0.400000","0.070000","-0.010000"],["0.390000","0.040000","0.050000"],["-0.270000","0.250000","0.020000"]],[["-0.010000","-0.030000","0.400000"],["0.000000","0.000000","-0.120000"],["0.000000","-0.010000","0.200000"],["-0.010000","0.010000","-0.040000"],["0.000000","0.000000","-0.020000"],["-0.410000","-0.380000","-0.250000"],["0.450000","0.390000","-0.190000"],["0.060000","-0.080000","-0.090000"]],[["0.130000","0.939999","-0.020000"],["-0.120000","0.070000","-0.010000"],["-0.060000","0.160000","0.010000"],["0.070000","-0.140000","-0.010000"],["0.060000","-0.110000","0.010000"],["0.000000","0.060000","-0.020000"],["0.040000","0.070000","0.010000"],["-0.010000","-0.060000","0.000000"]],[["-0.070000","-0.630001","0.050000"],["0.130000","-0.090000","0.000000"],["-0.140000","0.210000","0.010000"],["0.080000","-0.190000","-0.010000"],["-0.020000","0.100000","-0.010000"],["-0.350000","0.290000","-0.010000"],["-0.260000","0.240000","0.030000"],["-0.290000","0.200000","0.080000"]],[["-0.010000","-0.080000","-0.050000"],["0.020000","-0.010000","0.040000"],["-0.020000","0.050000","0.020000"],["-0.020000","-0.010000","-0.030000"],["-0.010000","0.000000","0.000000"],["0.600002","-0.430000","-0.050000"],["-0.350000","0.410000","-0.070000"],["0.230000","-0.270000","-0.110000"]],[["0.030000","0.140000","-0.030000"],["-0.030000","0.030000","0.020000"],["0.060000","-0.100000","0.030000"],["0.040000","0.010000","-0.030000"],["0.010000","-0.010000","0.000000"],["-0.150000","-0.100000","-0.060000"],["-0.600002","0.380000","-0.040000"],["-0.440000","0.480000","0.020000"]],[["0.000000","0.000000","0.000000"],["-0.020000","0.010000","0.000000"],["0.130000","0.020000","-0.010000"],["-0.050000","-0.020000","0.010000"],["0.000000","0.000000","0.000000"],["-0.500000","0.320000","-0.070000"],["-0.430000","0.180000","0.080000"],["0.400000","-0.480000","-0.030000"]],[["-0.010000","0.000000","0.000000"],["0.000000","0.010000","0.000000"],["-0.020000","-0.070000","0.000000"],["0.000000","-0.010000","0.000000"],["-0.010000","-0.010000","0.000000"],["0.170000","0.520000","0.460000"],["0.230000","0.520000","-0.400000"],["0.030000","-0.040000","0.000000"]],[["-0.360000","-0.250000","0.000000"],["0.450000","0.529997","-0.020000"],["-0.060000","-0.010000","0.000000"],["0.010000","0.000000","0.000000"],["-0.300000","-0.420000","0.010000"],["-0.150000","-0.050000","-0.090000"],["-0.130000","-0.060000","0.070000"],["0.010000","-0.010000","0.010000"]],[["-0.010000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.030000","0.050000","0.050000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.080000","-0.140000","0.240000"],["-0.250000","-0.450000","-0.800000"],["0.010000","0.010000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.020000","-0.030000","0.080000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.320000","0.520000","-0.740001"],["-0.090000","-0.140000","-0.220000"],["-0.010000","0.000000","0.010000"]],[["0.990001","-0.080000","0.020000"],["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.070000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","-0.010000","0.000000"]],[["-0.010000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","0.040000","-0.010000"],["0.000000","0.000000","0.000000"],["0.000000","-0.010000","0.010000"],["0.000000","-0.010000","-0.010000"],["-0.690000","-0.700001","0.170000"]]],[[["0.200000","0.430000","0.440000"],["0.020000","0.150000","0.180000"],["-0.020000","0.070000","0.150000"],["0.120000","-0.060000","-0.140000"],["-0.160000","-0.160000","-0.170000"],["-0.220000","-0.100000","0.210000"],["0.020000","0.200000","0.260000"],["0.370000","0.020000","-0.150000"]],[["0.100000","0.150000","0.150000"],["0.040000","0.020000","0.040000"],["0.000000","-0.040000","-0.020000"],["-0.010000","-0.030000","0.020000"],["0.020000","-0.010000","0.000000"],["0.010000","0.010000","-0.050000"],["-0.010000","-0.070000","-0.050000"],["-0.550000","0.660000","-0.430000"]],[["-0.500000","-0.160000","-0.420000"],["-0.130000","0.110000","-0.180000"],["-0.090000","0.200000","0.010000"],["0.160000","-0.130000","0.070000"],["0.080000","-0.150000","0.090000"],["-0.110000","0.030000","0.120000"],["-0.340000","0.320000","0.070000"],["0.000000","0.280000","-0.170000"]],[["-0.280000","-0.420000","-0.160000"],["-0.130000","-0.160000","0.100000"],["0.130000","0.060000","-0.070000"],["0.220000","-0.030000","0.050000"],["-0.260000","0.120000","-0.020000"],["0.080000","0.350000","-0.280000"],["0.320000","-0.220000","-0.260000"],["-0.010000","0.260000","-0.140000"]],[["0.030000","0.600002","0.470000"],["-0.120000","-0.050000","-0.110000"],["0.070000","-0.050000","-0.050000"],["0.060000","0.020000","0.020000"],["-0.040000","0.030000","0.050000"],["0.300000","-0.360000","0.220000"],["-0.080000","0.250000","0.160000"],["-0.040000","-0.030000","0.040000"]],[["-0.430000","-0.300000","-0.410000"],["-0.020000","0.220000","0.070000"],["0.150000","-0.150000","-0.070000"],["-0.010000","0.020000","0.000000"],["-0.050000","-0.030000","-0.010000"],["0.110000","-0.450000","0.140000"],["0.050000","0.180000","0.180000"],["-0.340000","-0.170000","0.070000"]],[["0.250000","0.120000","-0.140000"],["-0.150000","0.140000","-0.140000"],["0.090000","-0.130000","0.170000"],["-0.020000","0.010000","-0.020000"],["0.000000","-0.030000","0.040000"],["0.130000","0.400000","-0.190000"],["0.290000","-0.579999","-0.150000"],["0.290000","0.180000","-0.090000"]],[["-0.470000","0.170000","0.150000"],["0.010000","-0.030000","0.010000"],["0.320000","0.250000","0.040000"],["-0.280000","-0.230000","-0.030000"],["0.000000","0.030000","-0.020000"],["0.470000","0.180000","0.110000"],["0.190000","0.220000","0.010000"],["0.230000","0.050000","-0.140000"]],[["0.620000","-0.090000","-0.090000"],["-0.050000","0.000000","-0.030000"],["0.050000","0.070000","-0.010000"],["0.000000","-0.030000","0.000000"],["-0.010000","-0.020000","0.030000"],["-0.380000","-0.060000","-0.040000"],["0.410000","0.190000","0.130000"],["-0.400000","-0.230000","0.070000"]],[["0.620000","-0.250000","-0.190000"],["0.000000","0.030000","0.030000"],["-0.010000","0.010000","-0.070000"],["-0.020000","-0.010000","0.010000"],["-0.050000","-0.020000","0.040000"],["0.490000","-0.050000","0.100000"],["-0.310000","0.120000","-0.040000"],["0.320000","0.180000","-0.060000"]],[["0.110000","-0.010000","0.010000"],["-0.010000","-0.020000","0.000000"],["0.120000","0.010000","0.060000"],["0.010000","0.020000","-0.040000"],["-0.010000","0.000000","0.010000"],["-0.240000","0.140000","-0.110000"],["-0.859998","-0.070000","-0.140000"],["-0.300000","-0.180000","0.040000"]],[["-0.010000","-0.010000","-0.010000"],["0.010000","0.010000","0.000000"],["-0.070000","0.040000","0.060000"],["0.040000","-0.020000","-0.060000"],["-0.010000","0.000000","0.000000"],["0.679998","0.190000","0.160000"],["0.090000","-0.150000","-0.060000"],["-0.539999","-0.360000","0.080000"]],[["0.030000","0.000000","-0.010000"],["0.010000","0.010000","-0.010000"],["0.010000","0.080000","0.000000"],["0.000000","0.010000","0.000000"],["-0.010000","0.000000","0.010000"],["-0.120000","-0.569998","0.400000"],["0.040000","-0.539999","-0.450000"],["0.010000","0.020000","0.000000"]],[["-0.180000","0.270000","-0.190000"],["0.579999","0.050000","-0.350000"],["-0.010000","-0.010000","0.030000"],["-0.020000","0.000000","0.000000"],["-0.450000","-0.070000","0.290000"],["-0.190000","0.140000","-0.150000"],["0.130000","0.040000","0.090000"],["0.040000","0.000000","0.000000"]],[["-0.030000","-0.660000","0.740001"],["0.000000","0.050000","-0.060000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","-0.020000","-0.020000"],["0.010000","0.020000","-0.030000"],["0.000000","0.000000","0.000000"]],[["0.000000","0.010000","-0.010000"],["0.000000","0.000000","0.000000"],["0.000000","-0.070000","0.020000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.110000","0.290000","0.440000"],["0.100000","0.500000","-0.670002"],["0.000000","0.000000","0.000000"]],[["0.000000","0.030000","-0.030000"],["0.000000","0.000000","0.000000"],["-0.020000","0.010000","0.090000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.180000","-0.470000","-0.679998"],["0.050000","0.320000","-0.410000"],["-0.010000","0.000000","0.010000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.030000","0.050000"],["0.000000","0.000000","0.000000"],["0.000000","-0.010000","-0.010000"],["0.000000","0.000000","0.000000"],["0.090000","-0.490000","-0.869999"]]],[[["0.000000","0.000000","0.450000"],["0.000000","0.000000","0.130000"],["0.000000","0.000000","-0.060000"],["0.000000","0.000000","0.070000"],["0.000000","0.000000","-0.080000"],["-0.190000","0.350000","-0.390000"],["0.190000","-0.350000","-0.390000"],["0.000000","0.000000","-0.380000"]],[["0.230000","-0.010000","0.000000"],["-0.020000","0.120000","0.000000"],["0.000000","0.130000","0.000000"],["0.400000","-0.090000","0.000000"],["-0.380000","-0.130000","0.000000"],["-0.150000","0.000000","0.020000"],["-0.150000","0.000000","-0.020000"],["-0.719999","0.120000","0.000000"]],[["0.000000","0.000000","-0.400000"],["0.000000","0.000000","-0.030000"],["0.000000","0.000000","0.230000"],["0.000000","0.000000","-0.100000"],["0.000000","0.000000","-0.010000"],["-0.170000","0.510000","-0.230000"],["0.170000","-0.510000","-0.230000"],["0.000000","0.000000","0.290000"]],[["0.230000","0.240000","0.000000"],["0.230000","0.240000","0.000000"],["0.190000","-0.190000","0.000000"],["-0.200000","-0.080000","0.000000"],["-0.130000","0.030000","0.000000"],["0.140000","-0.190000","-0.020000"],["0.140000","-0.190000","0.020000"],["-0.630001","0.380000","0.000000"]],[["0.000000","0.000000","0.560002"],["0.000000","0.000000","-0.180000"],["0.000000","0.000000","0.070000"],["0.000000","0.000000","-0.020000"],["0.000000","0.000000","0.110000"],["0.330000","0.240000","0.040000"],["-0.330000","-0.240000","0.040000"],["0.000000","0.000000","-0.560002"]],[["0.569998","-0.070000","0.000000"],["0.260000","0.080000","0.000000"],["-0.290000","0.170000","0.000000"],["-0.050000","-0.100000","0.000000"],["0.120000","-0.090000","0.000000"],["-0.470000","-0.050000","0.050000"],["-0.470000","-0.050000","-0.050000"],["-0.090000","0.040000","0.000000"]],[["0.080000","-0.070000","0.000000"],["-0.050000","-0.020000","0.000000"],["0.100000","0.310000","0.000000"],["-0.100000","-0.260000","0.000000"],["-0.030000","0.030000","0.000000"],["0.550000","0.170000","0.210000"],["0.550000","0.170000","-0.210000"],["0.180000","-0.100000","0.000000"]],[["0.000000","0.000000","-0.080000"],["0.000000","0.000000","-0.090000"],["0.000000","0.000000","0.050000"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","0.050000"],["-0.579999","-0.240000","-0.040000"],["0.579999","0.240000","-0.040000"],["0.000000","0.000000","-0.440000"]],[["0.000000","0.000000","0.690000"],["0.000000","0.000000","-0.090000"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","-0.040000"],["-0.200000","-0.070000","-0.020000"],["0.200000","0.070000","-0.020000"],["0.000000","0.000000","0.660000"]],[["0.520000","-0.220000","0.000000"],["0.000000","0.040000","0.000000"],["0.050000","-0.020000","0.000000"],["-0.010000","0.010000","0.000000"],["-0.090000","0.040000","0.000000"],["-0.140000","-0.110000","-0.030000"],["-0.140000","-0.110000","0.030000"],["0.639998","-0.440000","0.000000"]],[["-0.100000","0.030000","0.000000"],["-0.020000","-0.020000","0.000000"],["0.030000","0.060000","0.000000"],["0.000000","0.040000","0.000000"],["0.010000","0.000000","0.000000"],["-0.050000","-0.590001","0.370000"],["-0.050000","-0.590001","-0.370000"],["-0.050000","0.030000","0.000000"]],[["-0.320000","0.120000","0.000000"],["-0.030000","-0.010000","0.000000"],["0.180000","0.100000","0.000000"],["-0.040000","-0.040000","0.000000"],["0.020000","-0.030000","0.000000"],["-0.590001","0.010000","-0.270000"],["-0.590001","0.010000","0.270000"],["-0.020000","0.000000","0.000000"]],[["0.649999","-0.470000","0.000000"],["-0.100000","-0.070000","0.000000"],["0.040000","0.000000","0.000000"],["-0.010000","0.000000","0.000000"],["0.050000","0.070000","0.000000"],["-0.090000","-0.020000","-0.050000"],["-0.090000","-0.020000","0.050000"],["-0.420000","0.370000","0.000000"]],[["0.450000","0.110000","0.000000"],["-0.410000","0.510000","0.000000"],["0.040000","-0.040000","0.000000"],["-0.010000","0.000000","0.000000"],["0.270000","-0.390000","0.000000"],["0.170000","-0.010000","0.030000"],["0.170000","-0.010000","-0.030000"],["-0.010000","-0.260000","0.000000"]],[["-0.010000","-0.040000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","-0.050000","0.000000"],["0.000000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["-0.230000","0.350000","0.569998"],["-0.230000","0.350000","-0.560002"],["0.000000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.090000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.240000","-0.380000","-0.529997"],["-0.250000","0.390000","-0.539999"],["0.000000","0.000000","0.000000"]],[["0.450000","0.890002","0.000000"],["-0.040000","-0.080000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.010000","0.010000","0.020000"],["-0.010000","0.010000","-0.020000"],["-0.020000","0.000000","0.000000"]],[["-0.010000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","0.060000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.550000","-0.829999","0.000000"]]],[],[]],"vibr_models":["load data 'model FRQS'\n8\nfrq = 91.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 -0.490000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.220000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.100000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 -0.110000\nH -1.646776 0.017845 0.894251 0 -0.420000 -0.080000 -0.390000\nH -1.646776 0.017845 -0.894251 0 0.420000 0.080000 -0.390000\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 -0.030000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 -0.110000\n8\nfrq = 339.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.500000 -0.400000 0.000000\nC 0.000000 0.980061 0.000000 0 -0.080000 0.040000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.300000 0.270000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.160000 -0.290000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.100000 -0.100000 0.010000\nH -1.646776 0.017845 -0.894251 0 -0.100000 -0.100000 -0.010000\nH 1.940730 1.396880 0.000000 0 0.050000 -0.500000 0.000000\nC -1.033958 -0.195027 0.000000 0 -0.070000 0.040000 0.000000\n8\nfrq = 537.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.609998 -0.210000 0.000000\nC 0.000000 0.980061 0.000000 0 0.020000 0.420000 0.000000\nO -0.347780 -1.309309 0.000000 0 -0.040000 -0.170000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.090000 -0.030000 0.000000\nH -1.646776 0.017845 0.894251 0 0.210000 -0.060000 0.030000\nH -1.646776 0.017845 -0.894251 0 0.210000 -0.060000 -0.030000\nH 1.940730 1.396880 0.000000 0 0.300000 -0.400000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.140000 -0.090000 0.000000\n8\nfrq = 684.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 0.520000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.020000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 -0.030000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 0.010000\nH -1.646776 0.017845 0.894251 0 -0.230000 -0.140000 -0.100000\nH -1.646776 0.017845 -0.894251 0 0.230000 0.140000 -0.100000\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 -0.749998\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.040000\n8\nfrq = 705.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.020000 -0.020000 0.000000\nC 0.000000 0.980061 0.000000 0 0.210000 0.180000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.110000 0.000000\nN 1.251986 0.661432 0.000000 0 0.220000 0.080000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.320000 -0.290000 0.080000\nH -1.646776 0.017845 -0.894251 0 -0.320000 -0.290000 -0.080000\nH 1.940730 1.396880 0.000000 0 0.360000 -0.040000 0.000000\nC -1.033958 -0.195027 0.000000 0 -0.450000 -0.360000 0.000000\n8\nfrq = 781.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 0.770001\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.040000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 -0.010000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 -0.140000\nH -1.646776 0.017845 0.894251 0 -0.080000 -0.050000 -0.030000\nH -1.646776 0.017845 -0.894251 0 0.080000 0.050000 -0.030000\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 0.609998\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.020000\n8\nfrq = 974.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 0.310000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.150000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.050000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 -0.030000\nH -1.646776 0.017845 0.894251 0 0.550000 0.190000 0.160000\nH -1.646776 0.017845 -0.894251 0 -0.550000 -0.190000 0.160000\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 -0.350000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 -0.200000\n8\nfrq = 1118.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.770001 0.150000 0.000000\nC 0.000000 0.980061 0.000000 0 0.000000 0.140000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.010000 -0.020000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.010000 -0.130000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.020000 -0.150000 0.030000\nH -1.646776 0.017845 -0.894251 0 -0.020000 -0.150000 -0.030000\nH 1.940730 1.396880 0.000000 0 -0.450000 0.300000 0.000000\nC -1.033958 -0.195027 0.000000 0 -0.020000 0.020000 0.000000\n8\nfrq = 1196.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.110000 0.030000 0.000000\nC 0.000000 0.980061 0.000000 0 0.010000 -0.010000 0.000000\nO -0.347780 -1.309309 0.000000 0 -0.060000 0.130000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.060000 -0.030000 0.000000\nH -1.646776 0.017845 0.894251 0 0.440000 0.450000 0.120000\nH -1.646776 0.017845 -0.894251 0 0.440000 0.450000 -0.120000\nH 1.940730 1.396880 0.000000 0 -0.240000 0.150000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.070000 -0.220000 0.000000\n8\nfrq = 1247.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 -0.030000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 -0.030000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.050000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 0.000000\nH -1.646776 0.017845 0.894251 0 0.090000 -0.679998 0.140000\nH -1.646776 0.017845 -0.894251 0 -0.090000 0.679998 0.140000\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 0.050000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 -0.070000\n8\nfrq = 1305.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.020000 -0.010000 0.000000\nC 0.000000 0.980061 0.000000 0 -0.010000 -0.020000 0.000000\nO -0.347780 -1.309309 0.000000 0 -0.120000 0.140000 0.000000\nN 1.251986 0.661432 0.000000 0 0.010000 0.010000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.050000 -0.679998 0.010000\nH -1.646776 0.017845 -0.894251 0 -0.050000 -0.679998 -0.010000\nH 1.940730 1.396880 0.000000 0 0.050000 -0.030000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.170000 -0.050000 0.000000\n8\nfrq = 1469.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.510000 -0.120000 0.000000\nC 0.000000 0.980061 0.000000 0 0.260000 -0.030000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 -0.020000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.130000 0.020000 0.000000\nH -1.646776 0.017845 0.894251 0 0.020000 -0.160000 0.060000\nH -1.646776 0.017845 -0.894251 0 0.020000 -0.160000 -0.060000\nH 1.940730 1.396880 0.000000 0 -0.609998 0.460000 0.000000\nC -1.033958 -0.195027 0.000000 0 -0.030000 0.040000 0.000000\n8\nfrq = 1481.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.020000 0.020000 0.000000\nC 0.000000 0.980061 0.000000 0 -0.030000 -0.020000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.010000 -0.020000 0.000000\nN 1.251986 0.661432 0.000000 0 0.010000 0.010000 0.000000\nH -1.646776 0.017845 0.894251 0 0.500000 -0.220000 0.430000\nH -1.646776 0.017845 -0.894251 0 0.500000 -0.220000 -0.430000\nH 1.940730 1.396880 0.000000 0 0.120000 -0.080000 0.000000\nC -1.033958 -0.195027 0.000000 0 -0.090000 0.070000 0.000000\n8\nfrq = 1651.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.579999 0.310000 0.000000\nC 0.000000 0.980061 0.000000 0 0.150000 -0.030000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.200000 0.050000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.040000 -0.020000 -0.030000\nH -1.646776 0.017845 -0.894251 0 -0.040000 -0.020000 0.030000\nH 1.940730 1.396880 0.000000 0 0.450000 -0.539999 0.000000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.000000\n8\nfrq = 2922.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.010000 0.000000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.000000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 0.000000\nH -1.646776 0.017845 0.894251 0 -0.370000 0.120000 0.590001\nH -1.646776 0.017845 -0.894251 0 -0.370000 0.120000 -0.590001\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.060000 -0.010000 0.000000\n8\nfrq = 2945.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 0.000000 0.000000 0.000000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.000000\nN 1.251986 0.661432 0.000000 0 0.000000 0.000000 0.000000\nH -1.646776 0.017845 0.894251 0 0.400000 -0.120000 -0.560002\nH -1.646776 0.017845 -0.894251 0 -0.400000 0.120000 -0.560002\nH 1.940730 1.396880 0.000000 0 0.000000 0.000000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.090000\n8\nfrq = 3527.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.280000 0.829999 0.000000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.000000\nN 1.251986 0.661432 0.000000 0 0.040000 -0.030000 0.000000\nH -1.646776 0.017845 0.894251 0 0.000000 0.000000 0.000000\nH -1.646776 0.017845 -0.894251 0 0.000000 0.000000 0.000000\nH 1.940730 1.396880 0.000000 0 -0.330000 -0.350000 0.000000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.000000\n8\nfrq = 3661.00 cm-1 \nH 1.574909 -0.298325 0.000000 0 -0.160000 0.440000 0.000000\nC 0.000000 0.980061 0.000000 0 0.000000 0.000000 0.000000\nO -0.347780 -1.309309 0.000000 0 0.000000 0.000000 0.000000\nN 1.251986 0.661432 0.000000 0 -0.030000 -0.080000 0.000000\nH -1.646776 0.017845 0.894251 0 0.000000 0.000000 0.000000\nH -1.646776 0.017845 -0.894251 0 0.000000 0.000000 0.000000\nH 1.940730 1.396880 0.000000 0 0.600002 0.649999 0.000000\nC -1.033958 -0.195027 0.000000 0 0.000000 0.000000 0.000000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = 75.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.030000 -0.050000 0.080000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.010000 0.140000\nC 0.712838 0.627316 0.017415 0 0.000000 0.020000 -0.090000\nO 1.326091 -0.636605 -0.028159 0 -0.020000 -0.010000 0.100000\nN -1.491059 -0.419700 0.006839 0 0.040000 -0.020000 -0.070000\nH 1.063092 1.226309 -0.826787 0 -0.180000 -0.100000 -0.260000\nH 0.991126 1.167171 0.930303 0 0.200000 0.150000 -0.230000\nH 0.651326 -1.297578 0.138138 0 -0.240000 -0.020000 -0.810001\n8\nfrq = 245.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.220000 0.370000 0.060000\nC -0.775791 0.580189 -0.025063 0 -0.010000 -0.080000 0.180000\nC 0.712838 0.627316 0.017415 0 -0.020000 -0.070000 -0.060000\nO 1.326091 -0.636605 -0.028159 0 0.230000 0.030000 0.010000\nN -1.491059 -0.419700 0.006839 0 -0.250000 0.080000 -0.120000\nH 1.063092 1.226309 -0.826787 0 -0.260000 -0.170000 -0.230000\nH 0.991126 1.167171 0.930303 0 0.130000 0.130000 -0.220000\nH 0.651326 -1.297578 0.138138 0 0.460000 -0.100000 0.410000\n8\nfrq = 278.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.100000 -0.150000 0.040000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.050000 0.160000\nC 0.712838 0.627316 0.017415 0 0.010000 0.030000 -0.030000\nO 1.326091 -0.636605 -0.028159 0 -0.120000 -0.020000 -0.030000\nN -1.491059 -0.419700 0.006839 0 0.110000 -0.040000 -0.120000\nH 1.063092 1.226309 -0.826787 0 -0.090000 -0.120000 -0.180000\nH 0.991126 1.167171 0.930303 0 0.200000 0.150000 -0.160000\nH 0.651326 -1.297578 0.138138 0 -0.030000 0.100000 0.859998\n8\nfrq = 644.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.000000 -0.330000 0.820002\nC -0.775791 0.580189 -0.025063 0 -0.110000 0.130000 -0.010000\nC 0.712838 0.627316 0.017415 0 -0.060000 -0.070000 -0.030000\nO 1.326091 -0.636605 -0.028159 0 0.070000 -0.040000 0.020000\nN -1.491059 -0.419700 0.006839 0 0.060000 0.030000 -0.060000\nH 1.063092 1.226309 -0.826787 0 0.140000 0.020000 0.120000\nH 0.991126 1.167171 0.930303 0 -0.230000 -0.180000 0.090000\nH 0.651326 -1.297578 0.138138 0 0.140000 -0.110000 0.000000\n8\nfrq = 654.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.030000 0.430000 0.780002\nC -0.775791 0.580189 -0.025063 0 0.110000 -0.140000 -0.020000\nC 0.712838 0.627316 0.017415 0 0.060000 0.070000 -0.020000\nO 1.326091 -0.636605 -0.028159 0 -0.070000 0.040000 0.010000\nN -1.491059 -0.419700 0.006839 0 -0.050000 -0.040000 -0.060000\nH 1.063092 1.226309 -0.826787 0 0.190000 0.160000 0.100000\nH 0.991126 1.167171 0.930303 0 -0.140000 -0.020000 0.100000\nH 0.651326 -1.297578 0.138138 0 -0.160000 0.130000 0.030000\n8\nfrq = 882.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.200000 -0.539999 0.040000\nC -0.775791 0.580189 -0.025063 0 -0.210000 0.030000 -0.010000\nC 0.712838 0.627316 0.017415 0 0.310000 0.150000 0.010000\nO 1.326091 -0.636605 -0.028159 0 0.040000 -0.060000 0.000000\nN -1.491059 -0.419700 0.006839 0 -0.160000 -0.070000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.400000 0.070000 -0.010000\nH 0.991126 1.167171 0.930303 0 0.390000 0.040000 0.050000\nH 0.651326 -1.297578 0.138138 0 -0.270000 0.250000 0.020000\n8\nfrq = 994.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.010000 -0.030000 0.400000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.000000 -0.120000\nC 0.712838 0.627316 0.017415 0 0.000000 -0.010000 0.200000\nO 1.326091 -0.636605 -0.028159 0 -0.010000 0.010000 -0.040000\nN -1.491059 -0.419700 0.006839 0 0.000000 0.000000 -0.020000\nH 1.063092 1.226309 -0.826787 0 -0.410000 -0.380000 -0.250000\nH 0.991126 1.167171 0.930303 0 0.450000 0.390000 -0.190000\nH 0.651326 -1.297578 0.138138 0 0.060000 -0.080000 -0.090000\n8\nfrq = 1062.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.130000 0.939999 -0.020000\nC -0.775791 0.580189 -0.025063 0 -0.120000 0.070000 -0.010000\nC 0.712838 0.627316 0.017415 0 -0.060000 0.160000 0.010000\nO 1.326091 -0.636605 -0.028159 0 0.070000 -0.140000 -0.010000\nN -1.491059 -0.419700 0.006839 0 0.060000 -0.110000 0.010000\nH 1.063092 1.226309 -0.826787 0 0.000000 0.060000 -0.020000\nH 0.991126 1.167171 0.930303 0 0.040000 0.070000 0.010000\nH 0.651326 -1.297578 0.138138 0 -0.010000 -0.060000 0.000000\n8\nfrq = 1106.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.070000 -0.630001 0.050000\nC -0.775791 0.580189 -0.025063 0 0.130000 -0.090000 0.000000\nC 0.712838 0.627316 0.017415 0 -0.140000 0.210000 0.010000\nO 1.326091 -0.636605 -0.028159 0 0.080000 -0.190000 -0.010000\nN -1.491059 -0.419700 0.006839 0 -0.020000 0.100000 -0.010000\nH 1.063092 1.226309 -0.826787 0 -0.350000 0.290000 -0.010000\nH 0.991126 1.167171 0.930303 0 -0.260000 0.240000 0.030000\nH 0.651326 -1.297578 0.138138 0 -0.290000 0.200000 0.080000\n8\nfrq = 1266.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.010000 -0.080000 -0.050000\nC -0.775791 0.580189 -0.025063 0 0.020000 -0.010000 0.040000\nC 0.712838 0.627316 0.017415 0 -0.020000 0.050000 0.020000\nO 1.326091 -0.636605 -0.028159 0 -0.020000 -0.010000 -0.030000\nN -1.491059 -0.419700 0.006839 0 -0.010000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.600002 -0.430000 -0.050000\nH 0.991126 1.167171 0.930303 0 -0.350000 0.410000 -0.070000\nH 0.651326 -1.297578 0.138138 0 0.230000 -0.270000 -0.110000\n8\nfrq = 1310.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.030000 0.140000 -0.030000\nC -0.775791 0.580189 -0.025063 0 -0.030000 0.030000 0.020000\nC 0.712838 0.627316 0.017415 0 0.060000 -0.100000 0.030000\nO 1.326091 -0.636605 -0.028159 0 0.040000 0.010000 -0.030000\nN -1.491059 -0.419700 0.006839 0 0.010000 -0.010000 0.000000\nH 1.063092 1.226309 -0.826787 0 -0.150000 -0.100000 -0.060000\nH 0.991126 1.167171 0.930303 0 -0.600002 0.380000 -0.040000\nH 0.651326 -1.297578 0.138138 0 -0.440000 0.480000 0.020000\n8\nfrq = 1428.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.000000 0.000000 0.000000\nC -0.775791 0.580189 -0.025063 0 -0.020000 0.010000 0.000000\nC 0.712838 0.627316 0.017415 0 0.130000 0.020000 -0.010000\nO 1.326091 -0.636605 -0.028159 0 -0.050000 -0.020000 0.010000\nN -1.491059 -0.419700 0.006839 0 0.000000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 -0.500000 0.320000 -0.070000\nH 0.991126 1.167171 0.930303 0 -0.430000 0.180000 0.080000\nH 0.651326 -1.297578 0.138138 0 0.400000 -0.480000 -0.030000\n8\nfrq = 1488.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.010000 0.000000 0.000000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.010000 0.000000\nC 0.712838 0.627316 0.017415 0 -0.020000 -0.070000 0.000000\nO 1.326091 -0.636605 -0.028159 0 0.000000 -0.010000 0.000000\nN -1.491059 -0.419700 0.006839 0 -0.010000 -0.010000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.170000 0.520000 0.460000\nH 0.991126 1.167171 0.930303 0 0.230000 0.520000 -0.400000\nH 0.651326 -1.297578 0.138138 0 0.030000 -0.040000 0.000000\n8\nfrq = 1856.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.360000 -0.250000 0.000000\nC -0.775791 0.580189 -0.025063 0 0.450000 0.529997 -0.020000\nC 0.712838 0.627316 0.017415 0 -0.060000 -0.010000 0.000000\nO 1.326091 -0.636605 -0.028159 0 0.010000 0.000000 0.000000\nN -1.491059 -0.419700 0.006839 0 -0.300000 -0.420000 0.010000\nH 1.063092 1.226309 -0.826787 0 -0.150000 -0.050000 -0.090000\nH 0.991126 1.167171 0.930303 0 -0.130000 -0.060000 0.070000\nH 0.651326 -1.297578 0.138138 0 0.010000 -0.010000 0.010000\n8\nfrq = 3028.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.010000 0.000000 0.000000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.000000 0.000000\nC 0.712838 0.627316 0.017415 0 0.030000 0.050000 0.050000\nO 1.326091 -0.636605 -0.028159 0 0.000000 0.000000 0.000000\nN -1.491059 -0.419700 0.006839 0 0.000000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 -0.080000 -0.140000 0.240000\nH 0.991126 1.167171 0.930303 0 -0.250000 -0.450000 -0.800000\nH 0.651326 -1.297578 0.138138 0 0.010000 0.010000 0.000000\n8\nfrq = 3082.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.000000 0.000000 0.000000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.000000 0.000000\nC 0.712838 0.627316 0.017415 0 -0.020000 -0.030000 0.080000\nO 1.326091 -0.636605 -0.028159 0 0.000000 0.000000 0.000000\nN -1.491059 -0.419700 0.006839 0 0.000000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.320000 0.520000 -0.740001\nH 0.991126 1.167171 0.930303 0 -0.090000 -0.140000 -0.220000\nH 0.651326 -1.297578 0.138138 0 -0.010000 0.000000 0.010000\n8\nfrq = 3538.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 0.990001 -0.080000 0.020000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.010000 0.000000\nC 0.712838 0.627316 0.017415 0 0.000000 0.000000 0.000000\nO 1.326091 -0.636605 -0.028159 0 0.000000 0.000000 0.000000\nN -1.491059 -0.419700 0.006839 0 -0.070000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.000000 0.000000 0.000000\nH 0.991126 1.167171 0.930303 0 0.000000 0.000000 0.000000\nH 0.651326 -1.297578 0.138138 0 0.000000 -0.010000 0.000000\n8\nfrq = 3875.00 cm-1 \nH -2.499136 -0.310197 -0.018365 0 -0.010000 0.000000 0.000000\nC -0.775791 0.580189 -0.025063 0 0.000000 0.000000 0.000000\nC 0.712838 0.627316 0.017415 0 0.000000 0.000000 0.000000\nO 1.326091 -0.636605 -0.028159 0 0.040000 0.040000 -0.010000\nN -1.491059 -0.419700 0.006839 0 0.000000 0.000000 0.000000\nH 1.063092 1.226309 -0.826787 0 0.000000 -0.010000 0.010000\nH 0.991126 1.167171 0.930303 0 0.000000 -0.010000 -0.010000\nH 0.651326 -1.297578 0.138138 0 -0.690000 -0.700001 0.170000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = 103.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.200000 0.430000 0.440000\nC 0.792494 -0.197978 0.338293 0 0.020000 0.150000 0.180000\nC -0.503176 0.562137 0.082812 0 -0.020000 0.070000 0.150000\nO -1.584900 -0.319544 -0.081102 0 0.120000 -0.060000 -0.140000\nN 1.822595 -0.044171 -0.329969 0 -0.160000 -0.160000 -0.170000\nH -0.725108 1.167663 0.961856 0 -0.220000 -0.100000 0.210000\nH -0.369115 1.228604 -0.771885 0 0.020000 0.200000 0.260000\nH -1.484391 -0.783306 -0.912153 0 0.370000 0.020000 -0.150000\n8\nfrq = 347.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.100000 0.150000 0.150000\nC 0.792494 -0.197978 0.338293 0 0.040000 0.020000 0.040000\nC -0.503176 0.562137 0.082812 0 0.000000 -0.040000 -0.020000\nO -1.584900 -0.319544 -0.081102 0 -0.010000 -0.030000 0.020000\nN 1.822595 -0.044171 -0.329969 0 0.020000 -0.010000 0.000000\nH -0.725108 1.167663 0.961856 0 0.010000 0.010000 -0.050000\nH -0.369115 1.228604 -0.771885 0 -0.010000 -0.070000 -0.050000\nH -1.484391 -0.783306 -0.912153 0 -0.550000 0.660000 -0.430000\n8\nfrq = 365.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.500000 -0.160000 -0.420000\nC 0.792494 -0.197978 0.338293 0 -0.130000 0.110000 -0.180000\nC -0.503176 0.562137 0.082812 0 -0.090000 0.200000 0.010000\nO -1.584900 -0.319544 -0.081102 0 0.160000 -0.130000 0.070000\nN 1.822595 -0.044171 -0.329969 0 0.080000 -0.150000 0.090000\nH -0.725108 1.167663 0.961856 0 -0.110000 0.030000 0.120000\nH -0.369115 1.228604 -0.771885 0 -0.340000 0.320000 0.070000\nH -1.484391 -0.783306 -0.912153 0 0.000000 0.280000 -0.170000\n8\nfrq = 450.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.280000 -0.420000 -0.160000\nC 0.792494 -0.197978 0.338293 0 -0.130000 -0.160000 0.100000\nC -0.503176 0.562137 0.082812 0 0.130000 0.060000 -0.070000\nO -1.584900 -0.319544 -0.081102 0 0.220000 -0.030000 0.050000\nN 1.822595 -0.044171 -0.329969 0 -0.260000 0.120000 -0.020000\nH -0.725108 1.167663 0.961856 0 0.080000 0.350000 -0.280000\nH -0.369115 1.228604 -0.771885 0 0.320000 -0.220000 -0.260000\nH -1.484391 -0.783306 -0.912153 0 -0.010000 0.260000 -0.140000\n8\nfrq = 790.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.030000 0.600002 0.470000\nC 0.792494 -0.197978 0.338293 0 -0.120000 -0.050000 -0.110000\nC -0.503176 0.562137 0.082812 0 0.070000 -0.050000 -0.050000\nO -1.584900 -0.319544 -0.081102 0 0.060000 0.020000 0.020000\nN 1.822595 -0.044171 -0.329969 0 -0.040000 0.030000 0.050000\nH -0.725108 1.167663 0.961856 0 0.300000 -0.360000 0.220000\nH -0.369115 1.228604 -0.771885 0 -0.080000 0.250000 0.160000\nH -1.484391 -0.783306 -0.912153 0 -0.040000 -0.030000 0.040000\n8\nfrq = 963.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.430000 -0.300000 -0.410000\nC 0.792494 -0.197978 0.338293 0 -0.020000 0.220000 0.070000\nC -0.503176 0.562137 0.082812 0 0.150000 -0.150000 -0.070000\nO -1.584900 -0.319544 -0.081102 0 -0.010000 0.020000 0.000000\nN 1.822595 -0.044171 -0.329969 0 -0.050000 -0.030000 -0.010000\nH -0.725108 1.167663 0.961856 0 0.110000 -0.450000 0.140000\nH -0.369115 1.228604 -0.771885 0 0.050000 0.180000 0.180000\nH -1.484391 -0.783306 -0.912153 0 -0.340000 -0.170000 0.070000\n8\nfrq = 1015.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.250000 0.120000 -0.140000\nC 0.792494 -0.197978 0.338293 0 -0.150000 0.140000 -0.140000\nC -0.503176 0.562137 0.082812 0 0.090000 -0.130000 0.170000\nO -1.584900 -0.319544 -0.081102 0 -0.020000 0.010000 -0.020000\nN 1.822595 -0.044171 -0.329969 0 0.000000 -0.030000 0.040000\nH -0.725108 1.167663 0.961856 0 0.130000 0.400000 -0.190000\nH -0.369115 1.228604 -0.771885 0 0.290000 -0.579999 -0.150000\nH -1.484391 -0.783306 -0.912153 0 0.290000 0.180000 -0.090000\n8\nfrq = 1098.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.470000 0.170000 0.150000\nC 0.792494 -0.197978 0.338293 0 0.010000 -0.030000 0.010000\nC -0.503176 0.562137 0.082812 0 0.320000 0.250000 0.040000\nO -1.584900 -0.319544 -0.081102 0 -0.280000 -0.230000 -0.030000\nN 1.822595 -0.044171 -0.329969 0 0.000000 0.030000 -0.020000\nH -0.725108 1.167663 0.961856 0 0.470000 0.180000 0.110000\nH -0.369115 1.228604 -0.771885 0 0.190000 0.220000 0.010000\nH -1.484391 -0.783306 -0.912153 0 0.230000 0.050000 -0.140000\n8\nfrq = 1179.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.620000 -0.090000 -0.090000\nC 0.792494 -0.197978 0.338293 0 -0.050000 0.000000 -0.030000\nC -0.503176 0.562137 0.082812 0 0.050000 0.070000 -0.010000\nO -1.584900 -0.319544 -0.081102 0 0.000000 -0.030000 0.000000\nN 1.822595 -0.044171 -0.329969 0 -0.010000 -0.020000 0.030000\nH -0.725108 1.167663 0.961856 0 -0.380000 -0.060000 -0.040000\nH -0.369115 1.228604 -0.771885 0 0.410000 0.190000 0.130000\nH -1.484391 -0.783306 -0.912153 0 -0.400000 -0.230000 0.070000\n8\nfrq = 1248.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.620000 -0.250000 -0.190000\nC 0.792494 -0.197978 0.338293 0 0.000000 0.030000 0.030000\nC -0.503176 0.562137 0.082812 0 -0.010000 0.010000 -0.070000\nO -1.584900 -0.319544 -0.081102 0 -0.020000 -0.010000 0.010000\nN 1.822595 -0.044171 -0.329969 0 -0.050000 -0.020000 0.040000\nH -0.725108 1.167663 0.961856 0 0.490000 -0.050000 0.100000\nH -0.369115 1.228604 -0.771885 0 -0.310000 0.120000 -0.040000\nH -1.484391 -0.783306 -0.912153 0 0.320000 0.180000 -0.060000\n8\nfrq = 1378.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.110000 -0.010000 0.010000\nC 0.792494 -0.197978 0.338293 0 -0.010000 -0.020000 0.000000\nC -0.503176 0.562137 0.082812 0 0.120000 0.010000 0.060000\nO -1.584900 -0.319544 -0.081102 0 0.010000 0.020000 -0.040000\nN 1.822595 -0.044171 -0.329969 0 -0.010000 0.000000 0.010000\nH -0.725108 1.167663 0.961856 0 -0.240000 0.140000 -0.110000\nH -0.369115 1.228604 -0.771885 0 -0.859998 -0.070000 -0.140000\nH -1.484391 -0.783306 -0.912153 0 -0.300000 -0.180000 0.040000\n8\nfrq = 1407.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.010000 -0.010000 -0.010000\nC 0.792494 -0.197978 0.338293 0 0.010000 0.010000 0.000000\nC -0.503176 0.562137 0.082812 0 -0.070000 0.040000 0.060000\nO -1.584900 -0.319544 -0.081102 0 0.040000 -0.020000 -0.060000\nN 1.822595 -0.044171 -0.329969 0 -0.010000 0.000000 0.000000\nH -0.725108 1.167663 0.961856 0 0.679998 0.190000 0.160000\nH -0.369115 1.228604 -0.771885 0 0.090000 -0.150000 -0.060000\nH -1.484391 -0.783306 -0.912153 0 -0.539999 -0.360000 0.080000\n8\nfrq = 1501.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.030000 0.000000 -0.010000\nC 0.792494 -0.197978 0.338293 0 0.010000 0.010000 -0.010000\nC -0.503176 0.562137 0.082812 0 0.010000 0.080000 0.000000\nO -1.584900 -0.319544 -0.081102 0 0.000000 0.010000 0.000000\nN 1.822595 -0.044171 -0.329969 0 -0.010000 0.000000 0.010000\nH -0.725108 1.167663 0.961856 0 -0.120000 -0.569998 0.400000\nH -0.369115 1.228604 -0.771885 0 0.040000 -0.539999 -0.450000\nH -1.484391 -0.783306 -0.912153 0 0.010000 0.020000 0.000000\n8\nfrq = 1752.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.180000 0.270000 -0.190000\nC 0.792494 -0.197978 0.338293 0 0.579999 0.050000 -0.350000\nC -0.503176 0.562137 0.082812 0 -0.010000 -0.010000 0.030000\nO -1.584900 -0.319544 -0.081102 0 -0.020000 0.000000 0.000000\nN 1.822595 -0.044171 -0.329969 0 -0.450000 -0.070000 0.290000\nH -0.725108 1.167663 0.961856 0 -0.190000 0.140000 -0.150000\nH -0.369115 1.228604 -0.771885 0 0.130000 0.040000 0.090000\nH -1.484391 -0.783306 -0.912153 0 0.040000 0.000000 0.000000\n8\nfrq = 3018.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 -0.030000 -0.660000 0.740001\nC 0.792494 -0.197978 0.338293 0 0.000000 0.050000 -0.060000\nC -0.503176 0.562137 0.082812 0 0.000000 0.000000 0.000000\nO -1.584900 -0.319544 -0.081102 0 0.000000 0.000000 0.000000\nN 1.822595 -0.044171 -0.329969 0 0.000000 0.000000 0.000000\nH -0.725108 1.167663 0.961856 0 0.000000 -0.020000 -0.020000\nH -0.369115 1.228604 -0.771885 0 0.010000 0.020000 -0.030000\nH -1.484391 -0.783306 -0.912153 0 0.000000 0.000000 0.000000\n8\nfrq = 3064.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.000000 0.010000 -0.010000\nC 0.792494 -0.197978 0.338293 0 0.000000 0.000000 0.000000\nC -0.503176 0.562137 0.082812 0 0.000000 -0.070000 0.020000\nO -1.584900 -0.319544 -0.081102 0 0.000000 0.000000 0.000000\nN 1.822595 -0.044171 -0.329969 0 0.000000 0.000000 0.000000\nH -0.725108 1.167663 0.961856 0 -0.110000 0.290000 0.440000\nH -0.369115 1.228604 -0.771885 0 0.100000 0.500000 -0.670002\nH -1.484391 -0.783306 -0.912153 0 0.000000 0.000000 0.000000\n8\nfrq = 3124.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.000000 0.030000 -0.030000\nC 0.792494 -0.197978 0.338293 0 0.000000 0.000000 0.000000\nC -0.503176 0.562137 0.082812 0 -0.020000 0.010000 0.090000\nO -1.584900 -0.319544 -0.081102 0 0.000000 0.000000 0.000000\nN 1.822595 -0.044171 -0.329969 0 0.000000 0.000000 0.000000\nH -0.725108 1.167663 0.961856 0 0.180000 -0.470000 -0.679998\nH -0.369115 1.228604 -0.771885 0 0.050000 0.320000 -0.410000\nH -1.484391 -0.783306 -0.912153 0 -0.010000 0.000000 0.010000\n8\nfrq = 3913.00 cm-1 \nH 0.763739 -0.932366 1.154153 0 0.000000 0.000000 0.000000\nC 0.792494 -0.197978 0.338293 0 0.000000 0.000000 0.000000\nC -0.503176 0.562137 0.082812 0 0.000000 0.000000 0.000000\nO -1.584900 -0.319544 -0.081102 0 0.000000 0.030000 0.050000\nN 1.822595 -0.044171 -0.329969 0 0.000000 0.000000 0.000000\nH -0.725108 1.167663 0.961856 0 0.000000 -0.010000 -0.010000\nH -0.369115 1.228604 -0.771885 0 0.000000 0.000000 0.000000\nH -1.484391 -0.783306 -0.912153 0 0.090000 -0.490000 -0.869999\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = 129.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 0.450000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 0.130000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 -0.060000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.070000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 -0.080000\nH -1.111255 1.126611 0.861777 0 -0.190000 0.350000 -0.390000\nH -1.111313 1.126786 -0.861625 0 0.190000 -0.350000 -0.390000\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 -0.380000\n8\nfrq = 290.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.230000 -0.010000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.020000 0.120000 0.000000\nC -0.733545 0.545844 0.000000 0 0.000000 0.130000 0.000000\nO -1.341785 -0.660482 0.000000 0 0.400000 -0.090000 0.000000\nN 1.499485 -0.507967 0.000000 0 -0.380000 -0.130000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.150000 0.000000 0.020000\nH -1.111313 1.126786 -0.861625 0 -0.150000 0.000000 -0.020000\nH 0.906273 -1.340494 0.000000 0 -0.719999 0.120000 0.000000\n8\nfrq = 498.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 -0.400000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 -0.030000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.230000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 -0.100000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 -0.010000\nH -1.111255 1.126611 0.861777 0 -0.170000 0.510000 -0.230000\nH -1.111313 1.126786 -0.861625 0 0.170000 -0.510000 -0.230000\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 0.290000\n8\nfrq = 733.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.230000 0.240000 0.000000\nC 0.781714 0.524585 0.000000 0 0.230000 0.240000 0.000000\nC -0.733545 0.545844 0.000000 0 0.190000 -0.190000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.200000 -0.080000 0.000000\nN 1.499485 -0.507967 0.000000 0 -0.130000 0.030000 0.000000\nH -1.111255 1.126611 0.861777 0 0.140000 -0.190000 -0.020000\nH -1.111313 1.126786 -0.861625 0 0.140000 -0.190000 0.020000\nH 0.906273 -1.340494 0.000000 0 -0.630001 0.380000 0.000000\n8\nfrq = 749.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 0.560002\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 -0.180000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.070000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 -0.020000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 0.110000\nH -1.111255 1.126611 0.861777 0 0.330000 0.240000 0.040000\nH -1.111313 1.126786 -0.861625 0 -0.330000 -0.240000 0.040000\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 -0.560002\n8\nfrq = 872.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.569998 -0.070000 0.000000\nC 0.781714 0.524585 0.000000 0 0.260000 0.080000 0.000000\nC -0.733545 0.545844 0.000000 0 -0.290000 0.170000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.050000 -0.100000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.120000 -0.090000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.470000 -0.050000 0.050000\nH -1.111313 1.126786 -0.861625 0 -0.470000 -0.050000 -0.050000\nH 0.906273 -1.340494 0.000000 0 -0.090000 0.040000 0.000000\n8\nfrq = 1102.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.080000 -0.070000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.050000 -0.020000 0.000000\nC -0.733545 0.545844 0.000000 0 0.100000 0.310000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.100000 -0.260000 0.000000\nN 1.499485 -0.507967 0.000000 0 -0.030000 0.030000 0.000000\nH -1.111255 1.126611 0.861777 0 0.550000 0.170000 0.210000\nH -1.111313 1.126786 -0.861625 0 0.550000 0.170000 -0.210000\nH 0.906273 -1.340494 0.000000 0 0.180000 -0.100000 0.000000\n8\nfrq = 1152.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 -0.080000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 -0.090000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.050000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.020000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 0.050000\nH -1.111255 1.126611 0.861777 0 -0.579999 -0.240000 -0.040000\nH -1.111313 1.126786 -0.861625 0 0.579999 0.240000 -0.040000\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 -0.440000\n8\nfrq = 1167.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 0.690000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 -0.090000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.020000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 -0.040000\nH -1.111255 1.126611 0.861777 0 -0.200000 -0.070000 -0.020000\nH -1.111313 1.126786 -0.861625 0 0.200000 0.070000 -0.020000\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 0.660000\n8\nfrq = 1236.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.520000 -0.220000 0.000000\nC 0.781714 0.524585 0.000000 0 0.000000 0.040000 0.000000\nC -0.733545 0.545844 0.000000 0 0.050000 -0.020000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.010000 0.010000 0.000000\nN 1.499485 -0.507967 0.000000 0 -0.090000 0.040000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.140000 -0.110000 -0.030000\nH -1.111313 1.126786 -0.861625 0 -0.140000 -0.110000 0.030000\nH 0.906273 -1.340494 0.000000 0 0.639998 -0.440000 0.000000\n8\nfrq = 1335.00 cm-1 \nH 1.265167 1.504149 0.000000 0 -0.100000 0.030000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.020000 -0.020000 0.000000\nC -0.733545 0.545844 0.000000 0 0.030000 0.060000 0.000000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.040000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.010000 0.000000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.050000 -0.590001 0.370000\nH -1.111313 1.126786 -0.861625 0 -0.050000 -0.590001 -0.370000\nH 0.906273 -1.340494 0.000000 0 -0.050000 0.030000 0.000000\n8\nfrq = 1388.00 cm-1 \nH 1.265167 1.504149 0.000000 0 -0.320000 0.120000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.030000 -0.010000 0.000000\nC -0.733545 0.545844 0.000000 0 0.180000 0.100000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.040000 -0.040000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.020000 -0.030000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.590001 0.010000 -0.270000\nH -1.111313 1.126786 -0.861625 0 -0.590001 0.010000 0.270000\nH 0.906273 -1.340494 0.000000 0 -0.020000 0.000000 0.000000\n8\nfrq = 1428.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.649999 -0.470000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.100000 -0.070000 0.000000\nC -0.733545 0.545844 0.000000 0 0.040000 0.000000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.010000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.050000 0.070000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.090000 -0.020000 -0.050000\nH -1.111313 1.126786 -0.861625 0 -0.090000 -0.020000 0.050000\nH 0.906273 -1.340494 0.000000 0 -0.420000 0.370000 0.000000\n8\nfrq = 1763.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.450000 0.110000 0.000000\nC 0.781714 0.524585 0.000000 0 -0.410000 0.510000 0.000000\nC -0.733545 0.545844 0.000000 0 0.040000 -0.040000 0.000000\nO -1.341785 -0.660482 0.000000 0 -0.010000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.270000 -0.390000 0.000000\nH -1.111255 1.126611 0.861777 0 0.170000 -0.010000 0.030000\nH -1.111313 1.126786 -0.861625 0 0.170000 -0.010000 -0.030000\nH 0.906273 -1.340494 0.000000 0 -0.010000 -0.260000 0.000000\n8\nfrq = 2929.00 cm-1 \nH 1.265167 1.504149 0.000000 0 -0.010000 -0.040000 0.000000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 0.000000\nC -0.733545 0.545844 0.000000 0 0.040000 -0.050000 0.000000\nO -1.341785 -0.660482 0.000000 0 0.000000 -0.010000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.230000 0.350000 0.569998\nH -1.111313 1.126786 -0.861625 0 -0.230000 0.350000 -0.560002\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 0.000000\n8\nfrq = 2948.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.000000 0.000000 0.000000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 0.000000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.090000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 0.000000\nH -1.111255 1.126611 0.861777 0 0.240000 -0.380000 -0.529997\nH -1.111313 1.126786 -0.861625 0 -0.250000 0.390000 -0.539999\nH 0.906273 -1.340494 0.000000 0 0.000000 0.000000 0.000000\n8\nfrq = 3095.00 cm-1 \nH 1.265167 1.504149 0.000000 0 0.450000 0.890002 0.000000\nC 0.781714 0.524585 0.000000 0 -0.040000 -0.080000 0.000000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.000000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.000000 0.000000 0.000000\nH -1.111255 1.126611 0.861777 0 -0.010000 0.010000 0.020000\nH -1.111313 1.126786 -0.861625 0 -0.010000 0.010000 -0.020000\nH 0.906273 -1.340494 0.000000 0 -0.020000 0.000000 0.000000\n8\nfrq = 3457.00 cm-1 \nH 1.265167 1.504149 0.000000 0 -0.010000 -0.010000 0.000000\nC 0.781714 0.524585 0.000000 0 0.000000 0.000000 0.000000\nC -0.733545 0.545844 0.000000 0 0.000000 0.000000 0.000000\nO -1.341785 -0.660482 0.000000 0 0.000000 0.000000 0.000000\nN 1.499485 -0.507967 0.000000 0 0.040000 0.060000 0.000000\nH -1.111255 1.126611 0.861777 0 0.000000 0.000000 0.000000\nH -1.111313 1.126786 -0.861625 0 0.000000 0.000000 0.000000\nH 0.906273 -1.340494 0.000000 0 -0.550000 -0.829999 0.000000\nend 'model FRQS'",null,null],"zpe":[38.07717,38.32977,38.19168,37.55406,31.99,33.61]},"selected":{"id":"1147"},"selection_policy":{"id":"1329"}},"id":"1035","type":"ColumnDataSource"},{"attributes":{"callback":{"id":"1114"},"description":"Hide labels","icon":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAIAAABLbSncAAAAKUlEQVR4nGM8ceIEAzbAwsDAYG5ujiZ68uRJJqzKGRgY6CHBAnEDpgQA24sHx1E8XckAAAAASUVORK5CYII="},"id":"1115","type":"CustomAction"},{"attributes":{"source":{"id":"1192"}},"id":"1228","type":"CDSView"},{"attributes":{"line_color":"#2ca02c","x":{"field":"x"},"y":{"field":"y"}},"id":"1225","type":"Line"},{"attributes":{"bottom_units":"screen","fill_alpha":0.5,"fill_color":"lightgrey","left_units":"screen","level":"overlay","line_alpha":1.0,"line_color":"black","line_dash":[4,4],"line_width":2,"right_units":"screen","syncable":false,"top_units":"screen"},"id":"1026","type":"BoxAnnotation"},{"attributes":{"args":{"counter":[1],"figure":{"id":"1004"}},"code":"\n\t\t// hide all labels from a reaction network\n\t\t// figure - bokeh FIGURE for the network view, counter - inner counter for state, use list for mutability\n\t\t// edit the 3rd and 4th elements of the figure.center array, containing labelsets\n\t\t// 0 - all labels on, 1 - TS labels off, 2 - all labels off\n\t\tvar ct = counter[0]\n\t\tswitch (ct) {\n\t\t\tcase 0:\n\t\t\t\tfigure.center[2].visible = true\n\t\t\t\tfigure.center[3].visible = true\n\t\t\t\tbreak\n\t\t\tcase 1:\n\t\t\t\tfigure.center[2].visible = true\n\t\t\t\tfigure.center[3].visible = false\n\t\t\t\tbreak\n\t\t\tcase 2:\n\t\t\t\tfigure.center[2].visible = false\n\t\t\t\tfigure.center[3].visible = false\n\t\t\t\tbreak\n\t\t}\n\t\tct = ct + 1\n\t\tif (ct &gt;= 3) {\n\t\t\tct = 0\n\t\t}\n\t\tcounter[0] = ct\n\t\t"},"id":"1114","type":"CustomJS"},{"attributes":{"data_source":{"id":"1035"},"glyph":{"id":"1052"},"hover_glyph":{"id":"1062"},"muted_glyph":null,"selection_glyph":{"id":"1057"},"view":{"id":"1037"}},"id":"1036","type":"GlyphRenderer"},{"attributes":{"fill_alpha":{"value":0.5},"fill_color":{"field":"energy","transform":{"id":"1051"}},"size":{"value":30}},"id":"1052","type":"Circle"},{"attributes":{"below":[{"id":"1013"}],"center":[{"id":"1016"},{"id":"1020"},{"id":"1082"},{"id":"1085"}],"left":[{"id":"1017"}],"renderers":[{"id":"1033"}],"title":{"id":"1005"},"toolbar":{"id":"1027"},"toolbar_location":"above","width":800,"x_range":{"id":"1002"},"x_scale":{"id":"1009"},"y_range":{"id":"1003"},"y_scale":{"id":"1011"}},"id":"1004","subtype":"Figure","type":"Plot"},{"attributes":{"data_source":{"id":"1192"},"glyph":{"id":"1225"},"hover_glyph":null,"muted_glyph":null,"nonselection_glyph":{"id":"1226"},"view":{"id":"1228"}},"id":"1227","type":"GlyphRenderer"},{"attributes":{"height":600,"info":{"height":"100%","j2sPath":"https://chemapps.stolaf.edu/jmol/jsmol/j2s","script":"background white;","serverURL":"https://chemapps.stolaf.edu/jmol/jsmol/php/jsmol.php","use":"HTML5","width":"100%"},"js_url":"https://chemapps.stolaf.edu/jmol/jsmol/JSmol.min.js","script_source":{"id":"1125"},"width":600},"id":"1126","type":"JSMol"},{"attributes":{"line_alpha":0.1,"line_color":"#2ca02c","x":{"field":"x"},"y":{"field":"y"}},"id":"1226","type":"Line"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","29.7","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS68","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,29.66137923800852,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1322"},"selection_policy":{"id":"1321"}},"id":"1229","type":"ColumnDataSource"},{"attributes":{"source":{"id":"1035"}},"id":"1037","type":"CDSView"},{"attributes":{"name":"THELABELS","source":{"id":"1233"},"text":{"field":"lab"},"text_font_size":{"value":"1.4vh"},"x":{"field":"x"},"x_offset":{"value":-1},"y":{"field":"y"},"y_offset":{"value":2}},"id":"1234","type":"LabelSet"},{"attributes":{"children":[{"id":"1127"},{"id":"1131"},{"id":"1128"}],"height":100},"id":"1153","type":"Row"},{"attributes":{"fill_alpha":{"value":0.9},"fill_color":{"value":"#2ca02c"},"height":{"value":2},"line_width":{"value":0},"name":"RECTANGLE","width":{"value":1},"x":{"field":"x"},"y":{"field":"y"}},"id":"1230","type":"Rect"},{"attributes":{},"id":"1038","type":"MultiLine"},{"attributes":{"js_property_callbacks":{"change:indices":[{"id":"1138"}]}},"id":"1152","type":"Selection"},{"attributes":{"end":1.2,"start":-1.2},"id":"1002","type":"Range1d"},{"attributes":{"data_source":{"id":"1229"},"glyph":{"id":"1230"},"hover_glyph":null,"muted_glyph":null,"view":{"id":"1232"}},"id":"1231","type":"GlyphRenderer"},{"attributes":{"data":{"barrless":[false,false,true,false,false,false,false,false],"end":["MIN39","MIN50","PR156","PR9","MIN29","MIN50","MIN50","PR9"],"energy":[42.23341786007222,85.04921675512742,44.98843404115178,36.26513437794347,43.825577985000564,48.8757388858794,29.66137923800852,34.50326257312554],"fname":["TS110_ts40_batch13.rxyz","TS233_ts474_batch30.rxyz",null,"TS87_ts24_batch40.rxyz","TS116_ts46_batch37.rxyz","TS138_ts80_batch1.rxyz","TS68_ts92_batch21.rxyz","TS85_ts53_batch3.rxyz"],"frequencies":["-1714.0;125.0;542.0;623.0;693.0;767.0;946.0;1044.0;1151.0;1204.0;1256.0;1290.0;1488.0;1663.0;2278.0;2913.0;2980.0;3656.0","-1917.0;138.0;280.0;425.0;497.0;567.0;862.0;982.0;1105.0;1212.0;1233.0;1315.0;1485.0;1576.0;2488.0;2892.0;2990.0;3335.0",null,"-1101.0;133.0;160.0;297.0;398.0;468.0;632.0;898.0;994.0;1098.0;1239.0;1374.0;1420.0;1487.0;2246.0;3048.0;3130.0;3907.0","-2053.0;107.0;229.0;280.0;408.0;514.0;873.0;938.0;1116.0;1204.0;1351.0;1402.0;1484.0;1819.0;2595.0;3025.0;3101.0;3906.0","-2058.0;189.0;435.0;632.0;632.0;922.0;968.0;1017.0;1062.0;1129.0;1150.0;1306.0;1496.0;1866.0;2009.0;3045.0;3096.0;3471.0","-1749.0;283.0;674.0;729.0;835.0;964.0;1014.0;1073.0;1083.0;1176.0;1279.0;1365.0;1491.0;1719.0;2085.0;3022.0;3059.0;3162.0","-847.0;164.0;247.0;320.0;405.0;495.0;625.0;883.0;996.0;1120.0;1244.0;1380.0;1420.0;1490.0;2265.0;3051.0;3136.0;3908.0"],"geometry":["H -2.312596 -0.350404 0.020147\nC -0.654763 0.787975 -0.064245\nC 0.907192 0.512117 0.030238\nO 0.981515 -0.805097 -0.029719\nN -1.307659 -0.291871 0.019260\nH 1.392301 1.079437 -0.778715\nH 1.169874 0.994617 0.990152\nH -0.462657 -1.040330 0.075389","H 1.715334 -0.494133 -0.781810\nC 0.687534 -0.643808 -0.046903\nC -0.906023 -0.521226 0.078864\nO -1.201115 0.732603 -0.101118\nN 1.491148 0.354469 0.104317\nH -1.323623 -1.255068 -0.625832\nH 1.100237 1.302923 0.181070\nH -1.010131 -0.905622 1.113539",null,"H 2.056104 1.696939 0.020700\nC 0.740517 -0.313761 -0.009645\nC -0.699624 -0.600967 0.040392\nO -1.493318 0.546670 -0.107340\nN 1.825745 0.092716 -0.017778\nH -0.951515 -1.269249 -0.782054\nH -0.902120 -1.134658 0.974664\nH -1.281491 1.172962 0.585376","H 1.631474 -1.047267 0.402290\nC 0.748202 -0.230529 0.121307\nC -0.565579 0.523209 0.116543\nO -1.668007 -0.279031 -0.194287\nN 1.928730 0.029692 -0.165664\nH -0.663376 1.010620 1.093315\nH -0.497835 1.298230 -0.649498\nH -1.723052 -0.993253 0.440733","H -1.234659 1.995482 0.000000\nC 0.000000 0.558087 0.000000\nC -0.499617 -0.827042 0.000000\nO 0.855674 -1.311300 0.000000\nN -0.240644 1.766305 0.000000\nH -1.054522 -1.114388 0.896347\nH -1.054522 -1.114388 -0.896347\nH 1.180525 -0.026710 0.000000","H 2.044262 -0.097336 0.000000\nC 0.959880 -0.170729 0.000000\nC 0.000000 0.960544 0.000000\nO -1.237513 0.273600 0.000000\nN 0.371932 -1.291733 0.000000\nH 0.110074 1.592671 0.888239\nH 0.110074 1.592671 -0.888239\nH -0.727107 -0.973573 0.000000","H -1.493598 1.869746 0.069157\nC -0.806409 0.124404 -0.009840\nC 0.604812 0.587634 0.021326\nO 1.512227 -0.467818 -0.096242\nN -1.757172 -0.535337 -0.016105\nH 0.768620 1.253427 -0.824292\nH 0.744956 1.171540 0.936259\nH 1.391989 -1.077036 0.632630"],"model":["data 'model X'|8|TS110|H -2.312596 -0.350404 0.020147|C -0.654763 0.787975 -0.064245|C 0.907192 0.512117 0.030238|O 0.981515 -0.805097 -0.029719|N -1.307659 -0.291871 0.019260|H 1.392301 1.079437 -0.778715|H 1.169874 0.994617 0.990152|H -0.462657 -1.040330 0.075389|end 'model X';show data","data 'model X'|8|TS233|H 1.715334 -0.494133 -0.781810|C 0.687534 -0.643808 -0.046903|C -0.906023 -0.521226 0.078864|O -1.201115 0.732603 -0.101118|N 1.491148 0.354469 0.104317|H -1.323623 -1.255068 -0.625832|H 1.100237 1.302923 0.181070|H -1.010131 -0.905622 1.113539|end 'model X';show data",null,"data 'model X'|8|TS87|H 2.056104 1.696939 0.020700|C 0.740517 -0.313761 -0.009645|C -0.699624 -0.600967 0.040392|O -1.493318 0.546670 -0.107340|N 1.825745 0.092716 -0.017778|H -0.951515 -1.269249 -0.782054|H -0.902120 -1.134658 0.974664|H -1.281491 1.172962 0.585376|end 'model X';show data","data 'model X'|8|TS116|H 1.631474 -1.047267 0.402290|C 0.748202 -0.230529 0.121307|C -0.565579 0.523209 0.116543|O -1.668007 -0.279031 -0.194287|N 1.928730 0.029692 -0.165664|H -0.663376 1.010620 1.093315|H -0.497835 1.298230 -0.649498|H -1.723052 -0.993253 0.440733|end 'model X';show data","data 'model X'|8|TS138|H -1.234659 1.995482 0.000000|C 0.000000 0.558087 0.000000|C -0.499617 -0.827042 0.000000|O 0.855674 -1.311300 0.000000|N -0.240644 1.766305 0.000000|H -1.054522 -1.114388 0.896347|H -1.054522 -1.114388 -0.896347|H 1.180525 -0.026710 0.000000|end 'model X';show data","data 'model X'|8|TS68|H 2.044262 -0.097336 0.000000|C 0.959880 -0.170729 0.000000|C 0.000000 0.960544 0.000000|O -1.237513 0.273600 0.000000|N 0.371932 -1.291733 0.000000|H 0.110074 1.592671 0.888239|H 0.110074 1.592671 -0.888239|H -0.727107 -0.973573 0.000000|end 'model X';show data","data 'model X'|8|TS85|H -1.493598 1.869746 0.069157|C -0.806409 0.124404 -0.009840|C 0.604812 0.587634 0.021326|O 1.512227 -0.467818 -0.096242|N -1.757172 -0.535337 -0.016105|H 0.768620 1.253427 -0.824292|H 0.744956 1.171540 0.936259|H 1.391989 -1.077036 0.632630|end 'model X';show data"],"name":["TS110","TS233","TSb_21","TS87","TS116","TS138","TS68","TS85"],"start":["MIN82","MIN82","MIN82","MIN39","MIN39","MIN39","MIN29","MIN29"],"vibr_displace":[[[["0.010000","-0.020000","0.000000"],["0.000000","0.030000","-0.010000"],["0.040000","-0.030000","0.000000"],["0.030000","0.040000","0.000000"],["0.010000","-0.040000","0.000000"],["-0.020000","0.020000","0.000000"],["-0.050000","0.000000","0.010000"],["-0.990001","-0.110000","0.080000"]],[["-0.030000","0.030000","-0.170000"],["0.020000","-0.010000","0.240000"],["0.020000","0.010000","-0.110000"],["0.000000","0.000000","0.110000"],["-0.030000","-0.010000","-0.140000"],["-0.380000","-0.110000","-0.460000"],["0.470000","0.210000","-0.340000"],["-0.070000","-0.030000","-0.330000"]],[["-0.040000","0.590001","-0.060000"],["0.460000","-0.270000","-0.010000"],["-0.290000","0.160000","0.010000"],["-0.080000","0.040000","-0.020000"],["-0.010000","0.000000","0.030000"],["-0.140000","0.210000","0.120000"],["-0.090000","0.150000","-0.020000"],["-0.300000","-0.220000","0.030000"]],[["-0.300000","0.230000","0.110000"],["-0.030000","-0.010000","0.020000"],["-0.240000","-0.110000","-0.040000"],["0.529997","-0.140000","0.010000"],["-0.300000","0.220000","0.010000"],["-0.290000","0.140000","0.090000"],["-0.400000","-0.020000","-0.020000"],["-0.010000","0.160000","-0.180000"]],[["0.020000","0.080000","0.960002"],["0.000000","0.010000","0.020000"],["-0.020000","0.000000","-0.020000"],["-0.010000","0.000000","0.020000"],["0.020000","-0.010000","-0.100000"],["0.130000","-0.010000","0.070000"],["-0.180000","0.000000","0.030000"],["0.000000","-0.010000","-0.050000"]],[["-0.380000","0.400000","0.280000"],["0.000000","-0.240000","-0.060000"],["0.360000","0.090000","0.060000"],["0.010000","0.100000","-0.020000"],["-0.350000","-0.030000","0.010000"],["0.330000","0.080000","0.020000"],["0.360000","0.050000","0.080000"],["0.030000","0.020000","-0.150000"]],[["0.000000","0.010000","-0.190000"],["0.010000","0.000000","0.040000"],["0.020000","0.000000","-0.130000"],["-0.020000","0.010000","0.050000"],["0.000000","-0.010000","0.050000"],["0.420000","0.120000","0.200000"],["-0.480000","-0.100000","0.080000"],["-0.020000","-0.050000","-0.679998"]],[["0.040000","-0.090000","0.210000"],["0.000000","0.010000","-0.110000"],["-0.020000","-0.010000","0.110000"],["-0.010000","0.000000","0.000000"],["0.030000","0.010000","0.060000"],["-0.380000","-0.020000","-0.130000"],["0.280000","0.070000","-0.030000"],["-0.060000","-0.060000","-0.820002"]],[["-0.010000","0.969998","-0.080000"],["-0.090000","0.020000","-0.010000"],["0.000000","0.000000","0.010000"],["0.020000","-0.010000","0.000000"],["0.060000","-0.060000","0.010000"],["-0.060000","-0.070000","-0.060000"],["-0.020000","-0.010000","0.010000"],["0.050000","-0.150000","-0.040000"]],[["0.010000","0.050000","0.040000"],["0.000000","-0.010000","-0.030000"],["0.020000","-0.020000","-0.070000"],["-0.010000","0.010000","0.050000"],["0.010000","0.000000","0.000000"],["-0.390000","0.609998","0.100000"],["0.180000","-0.620000","0.180000"],["0.030000","0.030000","0.080000"]],[["-0.010000","-0.080000","0.020000"],["-0.050000","0.060000","-0.010000"],["-0.050000","0.270000","-0.020000"],["0.030000","-0.200000","0.010000"],["-0.010000","-0.040000","0.010000"],["0.520000","0.110000","0.220000"],["0.660000","-0.180000","-0.020000"],["-0.210000","-0.110000","-0.070000"]],[["-0.010000","0.010000","0.010000"],["0.010000","0.000000","-0.010000"],["-0.110000","-0.090000","-0.020000"],["0.030000","0.140000","0.010000"],["-0.010000","-0.010000","0.000000"],["0.440000","-0.460000","0.050000"],["0.529997","-0.510000","0.020000"],["0.040000","0.000000","-0.060000"]],[["0.000000","0.060000","0.000000"],["-0.010000","0.010000","0.000000"],["-0.030000","-0.110000","-0.010000"],["-0.010000","0.020000","0.000000"],["0.010000","-0.010000","0.000000"],["0.190000","0.480000","0.490000"],["0.330000","0.480000","-0.360000"],["0.030000","0.010000","0.000000"]],[["-0.340000","0.040000","-0.010000"],["0.320000","0.510000","-0.040000"],["0.000000","-0.040000","0.010000"],["0.010000","0.000000","0.000000"],["-0.260000","-0.420000","0.030000"],["-0.220000","0.040000","-0.070000"],["-0.140000","0.030000","0.020000"],["0.410000","0.180000","0.000000"]],[["-0.050000","-0.100000","0.010000"],["0.010000","0.030000","0.000000"],["0.010000","-0.010000","0.000000"],["0.000000","0.010000","0.000000"],["-0.020000","0.030000","0.000000"],["-0.020000","0.020000","0.000000"],["-0.010000","0.010000","0.000000"],["0.130000","-0.979999","0.070000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.020000","0.040000","0.060000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.060000","-0.070000","0.140000"],["-0.240000","-0.400000","-0.859998"],["0.000000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.030000","-0.030000","0.070000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.450000","0.490000","-0.730000"],["-0.060000","-0.070000","-0.110000"],["0.000000","0.000000","0.000000"]],[["0.990001","0.070000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.070000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","-0.030000","0.000000"]]],[[["0.470000","0.840000","0.160000"],["-0.050000","-0.040000","0.030000"],["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","-0.040000","-0.030000"],["0.010000","-0.010000","0.000000"],["0.060000","0.000000","-0.180000"],["0.020000","-0.030000","0.000000"]],[["0.160000","-0.360000","0.310000"],["0.000000","0.020000","0.170000"],["-0.030000","-0.020000","-0.100000"],["-0.010000","0.010000","0.090000"],["0.030000","0.020000","-0.100000"],["0.210000","0.120000","-0.400000"],["0.140000","0.090000","-0.470000"],["-0.290000","-0.280000","-0.230000"]],[["-0.300000","0.220000","-0.210000"],["-0.020000","-0.110000","0.070000"],["-0.020000","-0.070000","-0.010000"],["0.350000","0.020000","0.030000"],["-0.270000","0.130000","-0.040000"],["-0.080000","0.070000","-0.120000"],["-0.700001","-0.050000","-0.110000"],["-0.200000","-0.120000","-0.050000"]],[["0.560002","-0.370000","0.609998"],["-0.060000","0.070000","-0.130000"],["-0.030000","-0.040000","0.030000"],["0.080000","-0.020000","0.010000"],["-0.070000","0.010000","0.020000"],["-0.180000","-0.060000","0.140000"],["0.190000","0.120000","-0.080000"],["0.140000","0.030000","0.070000"]],[["-0.350000","0.230000","-0.280000"],["-0.190000","0.220000","0.020000"],["-0.110000","-0.120000","0.070000"],["0.120000","-0.070000","-0.040000"],["0.120000","-0.010000","-0.020000"],["0.120000","-0.070000","-0.130000"],["0.490000","0.120000","0.270000"],["-0.420000","-0.240000","-0.010000"]],[["-0.390000","-0.130000","0.090000"],["-0.420000","0.080000","0.090000"],["0.590001","-0.040000","-0.110000"],["-0.040000","0.050000","0.020000"],["-0.120000","-0.080000","-0.010000"],["0.250000","-0.070000","0.140000"],["0.080000","-0.010000","-0.070000"],["0.370000","0.060000","-0.090000"]],[["-0.230000","0.030000","-0.130000"],["-0.040000","0.040000","0.020000"],["-0.060000","-0.010000","-0.100000"],["0.030000","-0.030000","0.030000"],["0.080000","0.010000","0.070000"],["-0.390000","-0.120000","0.210000"],["-0.170000","-0.030000","-0.639998"],["0.500000","0.050000","0.010000"]],[["-0.030000","-0.030000","-0.030000"],["-0.020000","0.010000","-0.120000"],["0.040000","0.010000","0.130000"],["-0.020000","0.010000","-0.030000"],["0.030000","-0.020000","0.090000"],["0.390000","0.130000","-0.210000"],["-0.360000","-0.120000","-0.660000"],["-0.340000","-0.210000","-0.010000"]],[["0.100000","0.020000","0.090000"],["-0.010000","-0.030000","-0.010000"],["0.060000","-0.160000","-0.030000"],["-0.030000","0.080000","0.010000"],["0.090000","0.050000","-0.010000"],["-0.539999","-0.030000","0.200000"],["-0.260000","-0.090000","0.030000"],["-0.670002","0.290000","0.030000"]],[["-0.200000","0.090000","-0.170000"],["0.040000","-0.090000","-0.040000"],["0.030000","-0.030000","0.000000"],["-0.010000","0.020000","0.000000"],["-0.070000","0.040000","0.060000"],["-0.130000","0.040000","0.030000"],["0.759999","0.380000","-0.350000"],["-0.180000","0.080000","0.010000"]],[["0.000000","0.010000","-0.020000"],["0.000000","0.020000","-0.020000"],["-0.030000","0.040000","-0.080000"],["0.020000","-0.050000","0.060000"],["-0.010000","-0.020000","0.010000"],["0.470000","-0.400000","0.080000"],["-0.020000","-0.020000","-0.080000"],["-0.280000","0.700001","0.130000"]],[["0.000000","0.000000","-0.010000"],["0.010000","-0.030000","0.000000"],["-0.070000","-0.190000","0.010000"],["-0.020000","0.210000","-0.010000"],["0.000000","0.010000","0.000000"],["0.560002","-0.630001","0.100000"],["0.050000","0.020000","0.000000"],["0.380000","-0.220000","0.020000"]],[["0.020000","0.000000","-0.060000"],["0.050000","0.050000","0.000000"],["0.020000","0.090000","-0.030000"],["0.000000","-0.010000","0.010000"],["-0.040000","-0.040000","0.000000"],["-0.110000","-0.460000","0.560002"],["0.000000","-0.020000","-0.040000"],["-0.350000","-0.510000","-0.250000"]],[["0.070000","0.190000","-0.270000"],["0.240000","0.340000","0.070000"],["0.030000","-0.160000","0.010000"],["-0.020000","0.060000","-0.010000"],["-0.200000","-0.280000","-0.010000"],["-0.300000","0.340000","-0.280000"],["0.020000","-0.160000","-0.300000"],["0.020000","0.360000","0.170000"]],[["-0.630001","0.240000","0.730000"],["0.050000","0.010000","-0.030000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","-0.020000","-0.030000"],["0.010000","0.000000","0.010000"],["0.010000","-0.060000","0.010000"],["0.000000","0.000000","-0.010000"]],[["0.010000","0.010000","-0.010000"],["0.000000","0.000000","0.000000"],["-0.020000","-0.030000","0.060000"],["0.000000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.070000","0.120000","0.150000"],["0.000000","0.010000","0.000000"],["0.110000","0.320000","-0.920001"]],[["0.010000","0.000000","-0.010000"],["0.000000","0.000000","0.000000"],["-0.030000","-0.050000","-0.070000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.380000","0.639998","0.639998"],["0.000000","0.000000","0.000000"],["-0.030000","-0.070000","0.150000"]],[["0.020000","-0.010000","-0.020000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.020000","0.070000","0.010000"],["0.000000","0.000000","0.000000"],["0.360000","-0.930003","-0.070000"],["0.000000","0.010000","-0.010000"]]],[],[[["0.180000","0.979999","0.030000"],["0.000000","0.040000","0.000000"],["-0.010000","-0.010000","0.000000"],["0.010000","-0.010000","0.000000"],["-0.020000","-0.080000","0.000000"],["0.000000","-0.010000","0.000000"],["-0.010000","0.000000","0.000000"],["0.010000","0.000000","0.000000"]],[["-0.090000","0.010000","0.890002"],["0.000000","-0.030000","-0.060000"],["0.000000","0.000000","0.070000"],["0.020000","0.000000","-0.030000"],["-0.020000","0.020000","-0.040000"],["-0.090000","-0.120000","0.190000"],["0.070000","0.140000","0.160000"],["0.150000","0.130000","-0.190000"]],[["0.730000","-0.290000","0.270000"],["0.010000","0.170000","-0.010000"],["0.030000","0.070000","0.020000"],["-0.170000","-0.070000","-0.020000"],["0.120000","-0.120000","-0.020000"],["0.100000","0.000000","0.050000"],["0.120000","0.080000","0.040000"],["-0.410000","-0.090000","0.070000"]],[["0.140000","-0.040000","-0.170000"],["-0.010000","0.040000","-0.070000"],["0.010000","0.000000","-0.040000"],["-0.070000","-0.040000","0.060000"],["0.010000","-0.010000","0.080000"],["-0.020000","0.000000","-0.030000"],["0.100000","-0.020000","-0.020000"],["0.679998","0.380000","-0.550000"]],[["0.310000","-0.080000","0.270000"],["-0.030000","0.040000","0.300000"],["-0.010000","-0.040000","-0.030000"],["0.020000","-0.010000","-0.010000"],["-0.030000","0.020000","-0.190000"],["0.290000","0.190000","-0.320000"],["-0.320000","-0.310000","-0.250000"],["0.350000","0.150000","-0.260000"]],[["0.910000","-0.140000","-0.080000"],["-0.090000","0.040000","-0.070000"],["-0.030000","-0.100000","0.020000"],["0.130000","0.000000","-0.010000"],["-0.110000","0.080000","0.040000"],["-0.120000","-0.140000","0.080000"],["0.020000","-0.010000","0.080000"],["0.060000","-0.140000","0.140000"]],[["-0.789998","-0.240000","0.000000"],["-0.200000","0.350000","-0.020000"],["0.040000","-0.070000","0.020000"],["0.160000","-0.040000","-0.010000"],["-0.020000","-0.160000","0.010000"],["0.140000","-0.090000","0.010000"],["0.130000","-0.080000","0.030000"],["0.150000","-0.120000","0.070000"]],[["0.110000","-0.030000","0.000000"],["-0.140000","-0.130000","0.000000"],["0.370000","0.250000","0.000000"],["0.020000","-0.070000","0.010000"],["-0.270000","-0.060000","0.010000"],["0.500000","0.270000","-0.060000"],["0.430000","0.010000","-0.110000"],["-0.300000","0.190000","-0.130000"]],[["0.000000","0.000000","-0.020000"],["0.010000","0.000000","-0.120000"],["-0.050000","0.000000","0.180000"],["0.030000","-0.030000","-0.030000"],["0.020000","0.010000","0.030000"],["0.150000","0.500000","-0.300000"],["-0.300000","-0.539999","-0.190000"],["-0.260000","0.250000","-0.190000"]],[["-0.010000","-0.010000","0.000000"],["0.020000","0.000000","0.050000"],["-0.290000","0.400000","-0.120000"],["0.230000","-0.350000","0.070000"],["0.030000","0.010000","-0.010000"],["-0.470000","0.220000","0.070000"],["-0.180000","0.460000","-0.030000"],["-0.100000","-0.010000","-0.170000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.010000","0.060000"],["0.020000","-0.060000","-0.040000"],["0.020000","0.010000","0.010000"],["0.000000","0.000000","-0.010000"],["-0.620000","0.150000","0.000000"],["0.470000","-0.190000","0.000000"],["-0.390000","0.370000","-0.200000"]],[["0.000000","-0.010000","0.000000"],["0.000000","0.020000","-0.020000"],["0.090000","-0.060000","-0.050000"],["0.010000","-0.010000","0.050000"],["0.000000","0.000000","0.000000"],["-0.100000","-0.090000","0.030000"],["-0.740001","0.400000","0.010000"],["-0.350000","0.340000","-0.160000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.010000","0.010000"],["0.110000","0.020000","0.040000"],["-0.030000","-0.020000","-0.040000"],["-0.010000","0.000000","0.000000"],["-0.660000","0.400000","-0.020000"],["-0.280000","0.020000","-0.040000"],["0.360000","-0.380000","0.170000"]],[["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.030000","0.070000","-0.010000"],["0.000000","0.010000","0.000000"],["0.010000","0.000000","0.000000"],["-0.160000","-0.490000","0.490000"],["-0.210000","-0.550000","-0.390000"],["-0.010000","0.020000","-0.010000"]],[["-0.110000","-0.420000","-0.010000"],["0.679998","0.240000","-0.010000"],["-0.080000","-0.020000","0.000000"],["-0.010000","0.010000","0.000000"],["-0.490000","-0.160000","0.000000"],["-0.060000","-0.030000","0.040000"],["-0.050000","-0.040000","-0.030000"],["0.010000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.020000","-0.050000","0.050000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.060000","0.160000","0.220000"],["0.190000","0.450000","-0.820002"],["0.000000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.010000","-0.040000","-0.080000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.230000","0.590001","0.730000"],["-0.060000","-0.130000","0.210000"],["-0.010000","0.000000","-0.010000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","0.040000","0.040000"],["0.000000","0.000000","0.000000"],["0.000000","-0.010000","-0.010000"],["0.000000","0.000000","0.000000"],["-0.210000","-0.660000","-0.719999"]]],[[["0.899998","0.310000","-0.290000"],["-0.050000","0.030000","-0.010000"],["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["-0.020000","-0.060000","0.030000"],["0.000000","0.010000","0.000000"],["-0.030000","0.020000","-0.010000"],["0.010000","0.000000","0.000000"]],[["0.130000","0.320000","0.639998"],["0.000000","0.090000","0.330000"],["-0.020000","0.040000","0.150000"],["0.110000","-0.030000","-0.160000"],["-0.110000","-0.100000","-0.290000"],["-0.270000","-0.040000","0.160000"],["0.090000","0.090000","0.210000"],["-0.030000","-0.030000","-0.170000"]],[["0.180000","0.090000","0.090000"],["0.050000","-0.090000","0.020000"],["0.030000","-0.090000","0.010000"],["-0.030000","0.030000","-0.040000"],["0.000000","0.090000","-0.020000"],["0.030000","-0.080000","0.010000"],["0.110000","-0.080000","0.020000"],["-0.649999","0.510000","0.450000"]],[["0.200000","0.370000","0.719999"],["0.010000","-0.090000","-0.040000"],["0.040000","-0.060000","-0.020000"],["-0.070000","0.070000","0.030000"],["-0.010000","0.050000","0.000000"],["0.130000","-0.070000","-0.010000"],["0.080000","-0.050000","-0.010000"],["0.230000","-0.280000","-0.330000"]],[["-0.100000","0.290000","0.609998"],["-0.040000","0.100000","-0.190000"],["-0.050000","0.050000","0.050000"],["0.040000","-0.060000","-0.010000"],["0.070000","-0.100000","0.040000"],["0.000000","-0.200000","0.180000"],["-0.270000","0.260000","0.240000"],["-0.210000","0.230000","0.290000"]],[["-0.120000","0.050000","0.150000"],["-0.290000","-0.260000","-0.140000"],["0.170000","0.120000","0.020000"],["0.380000","-0.030000","0.010000"],["-0.380000","0.120000","0.060000"],["0.210000","0.230000","-0.020000"],["0.330000","0.030000","-0.060000"],["0.300000","0.220000","0.290000"]],[["-0.290000","0.080000","-0.100000"],["-0.140000","0.320000","0.040000"],["0.270000","-0.290000","-0.120000"],["0.000000","0.040000","0.030000"],["-0.110000","-0.040000","0.020000"],["0.490000","-0.529997","0.040000"],["0.060000","0.020000","0.170000"],["-0.170000","-0.020000","-0.050000"]],[["-0.060000","0.070000","0.020000"],["-0.040000","0.080000","-0.090000"],["0.020000","-0.060000","0.160000"],["0.020000","0.010000","-0.020000"],["0.020000","-0.020000","0.000000"],["-0.130000","0.560002","-0.170000"],["0.220000","-0.539999","-0.310000"],["-0.300000","-0.140000","-0.210000"]],[["-0.020000","0.010000","0.000000"],["-0.020000","0.020000","-0.020000"],["0.310000","0.200000","0.100000"],["-0.270000","-0.200000","-0.090000"],["-0.010000","0.010000","0.000000"],["0.060000","0.150000","0.070000"],["0.700001","0.180000","0.110000"],["0.300000","0.060000","0.280000"]],[["0.010000","-0.030000","0.000000"],["0.010000","-0.030000","0.030000"],["0.060000","0.080000","0.010000"],["-0.010000","-0.040000","-0.010000"],["-0.020000","0.010000","0.000000"],["0.539999","0.150000","0.030000"],["-0.609998","0.020000","-0.100000"],["-0.430000","-0.200000","-0.250000"]],[["0.010000","-0.010000","0.010000"],["0.000000","-0.020000","-0.010000"],["0.130000","0.010000","-0.030000"],["0.000000","0.010000","0.040000"],["-0.010000","0.000000","0.000000"],["-0.850002","-0.020000","-0.130000"],["-0.310000","0.170000","0.080000"],["-0.270000","-0.130000","-0.140000"]],[["0.000000","0.010000","-0.010000"],["0.000000","0.010000","0.000000"],["-0.050000","0.070000","-0.060000"],["0.030000","-0.040000","0.060000"],["0.010000","0.000000","0.000000"],["0.060000","-0.190000","0.070000"],["0.639998","0.140000","0.060000"],["-0.569998","-0.280000","-0.290000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.010000","0.000000"],["0.020000","0.070000","0.020000"],["0.000000","0.010000","0.000000"],["-0.010000","0.000000","0.000000"],["-0.120000","-0.609998","0.320000"],["-0.070000","-0.470000","-0.520000"],["0.020000","0.020000","0.010000"]],[["0.220000","-0.220000","0.110000"],["0.690000","0.170000","-0.180000"],["-0.050000","-0.010000","0.020000"],["-0.020000","0.000000","0.000000"],["-0.539999","-0.130000","0.140000"],["-0.030000","0.100000","-0.060000"],["0.100000","0.010000","0.040000"],["-0.010000","0.000000","0.000000"]],[["-0.390000","0.840000","-0.360000"],["0.040000","-0.040000","0.010000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","-0.030000","0.010000"],["-0.010000","0.000000","0.000000"],["-0.010000","0.000000","0.010000"],["0.000000","0.000000","0.000000"]],[["0.000000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","-0.050000","-0.050000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.100000","0.400000","0.829999"],["0.030000","0.260000","-0.280000"],["0.000000","0.000000","0.000000"]],[["-0.010000","0.010000","0.000000"],["0.000000","0.000000","0.000000"],["-0.010000","-0.040000","0.080000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","-0.170000","-0.320000"],["0.050000","0.660000","-0.649999"],["0.010000","0.000000","0.010000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","0.050000","-0.040000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","-0.010000","0.010000"],["-0.070000","-0.749998","0.660000"]]],[[["-0.010000","-0.070000","0.000000"],["0.060000","-0.040000","0.000000"],["-0.010000","-0.010000","0.000000"],["-0.020000","-0.030000","0.000000"],["0.000000","0.010000","0.000000"],["0.000000","-0.010000","0.000000"],["0.000000","-0.010000","0.000000"],["-0.190000","0.979999","0.000000"]],[["0.000000","0.000000","-0.660000"],["0.000000","0.000000","0.320000"],["0.000000","0.000000","0.030000"],["0.000000","0.000000","-0.130000"],["0.000000","0.000000","-0.140000"],["0.030000","-0.200000","-0.010000"],["-0.030000","0.200000","-0.010000"],["0.000000","0.000000","0.590001"]],[["-0.340000","-0.590001","0.000000"],["0.260000","0.070000","0.000000"],["0.080000","0.200000","0.000000"],["-0.060000","-0.170000","0.000000"],["-0.210000","-0.030000","0.000000"],["0.000000","0.340000","0.000000"],["0.000000","0.340000","0.000000"],["0.240000","-0.220000","0.000000"]],[["-0.050000","-0.749998","0.000000"],["0.220000","-0.200000","0.000000"],["-0.200000","0.070000","0.000000"],["-0.060000","0.380000","0.000000"],["0.060000","-0.280000","0.000000"],["-0.140000","0.060000","0.030000"],["-0.140000","0.060000","-0.030000"],["0.110000","-0.090000","0.000000"]],[["0.000000","0.000000","0.590001"],["0.000000","0.000000","0.090000"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","-0.100000"],["-0.170000","-0.370000","-0.220000"],["0.170000","0.370000","-0.220000"],["0.000000","0.000000","-0.460000"]],[["0.210000","0.649999","0.000000"],["-0.130000","-0.100000","0.000000"],["0.060000","0.220000","0.000000"],["0.060000","-0.030000","0.000000"],["-0.020000","-0.190000","0.000000"],["-0.050000","0.440000","0.000000"],["-0.050000","0.440000","0.000000"],["-0.020000","0.150000","0.000000"]],[["0.000000","0.000000","0.700001"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","-0.060000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","-0.070000"],["0.110000","0.210000","0.080000"],["-0.110000","-0.210000","0.080000"],["0.000000","0.000000","0.609998"]],[["0.110000","0.380000","0.000000"],["-0.010000","-0.010000","0.000000"],["0.520000","-0.110000","0.000000"],["-0.440000","0.160000","0.000000"],["-0.020000","-0.090000","0.000000"],["0.370000","-0.070000","-0.040000"],["0.370000","-0.070000","0.040000"],["0.190000","0.100000","0.000000"]],[["0.000000","0.000000","0.040000"],["0.000000","0.000000","-0.160000"],["0.000000","0.000000","0.160000"],["0.000000","0.000000","-0.040000"],["0.000000","0.000000","0.020000"],["-0.310000","-0.380000","-0.160000"],["0.310000","0.380000","-0.160000"],["0.000000","0.000000","0.639998"]],[["0.160000","0.910000","0.000000"],["0.190000","0.050000","0.000000"],["-0.090000","-0.060000","0.000000"],["0.000000","0.010000","0.000000"],["-0.100000","-0.040000","0.000000"],["-0.020000","-0.190000","0.000000"],["-0.020000","-0.190000","0.000000"],["0.100000","-0.050000","0.000000"]],[["0.000000","0.000000","0.030000"],["0.000000","0.000000","0.040000"],["0.000000","0.000000","0.060000"],["0.000000","0.000000","-0.050000"],["0.000000","0.000000","-0.010000"],["-0.520000","0.460000","-0.100000"],["0.520000","-0.460000","-0.100000"],["0.000000","0.000000","-0.100000"]],[["0.010000","-0.040000","0.000000"],["-0.030000","-0.010000","0.000000"],["-0.030000","0.180000","0.000000"],["-0.020000","-0.030000","0.000000"],["0.010000","-0.030000","0.000000"],["0.370000","-0.590001","-0.020000"],["0.370000","-0.590001","0.020000"],["-0.020000","-0.020000","0.000000"]],[["0.000000","0.020000","0.000000"],["0.000000","-0.010000","0.000000"],["-0.070000","-0.040000","0.000000"],["-0.010000","0.000000","0.000000"],["0.000000","0.010000","0.000000"],["0.510000","0.240000","0.420000"],["0.510000","0.240000","-0.420000"],["-0.010000","-0.020000","0.000000"]],[["0.170000","-0.370000","0.000000"],["-0.060000","0.609998","0.000000"],["-0.030000","-0.090000","0.000000"],["0.010000","-0.030000","0.000000"],["0.090000","-0.400000","0.000000"],["0.000000","0.010000","0.070000"],["0.000000","0.010000","-0.070000"],["-0.480000","0.210000","0.000000"]],[["0.000000","0.040000","0.000000"],["0.050000","-0.030000","0.000000"],["0.030000","0.010000","0.000000"],["0.000000","0.010000","0.000000"],["-0.010000","0.020000","0.000000"],["0.020000","0.020000","-0.020000"],["0.020000","0.020000","0.020000"],["-0.969998","-0.220000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.060000","0.030000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.340000","-0.180000","0.590001"],["-0.340000","-0.180000","-0.590001"],["-0.010000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.100000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.350000","0.200000","-0.569998"],["-0.350000","-0.200000","-0.569998"],["0.000000","0.000000","0.010000"]],[["0.960002","-0.260000","0.000000"],["0.000000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.070000","0.020000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","-0.010000","0.000000"]]],[[["0.030000","-0.030000","0.000000"],["0.020000","0.000000","0.000000"],["-0.010000","-0.020000","0.000000"],["0.010000","-0.050000","0.000000"],["0.010000","0.020000","0.000000"],["0.020000","-0.010000","-0.010000"],["0.020000","-0.010000","0.010000"],["-0.550000","0.829999","0.000000"]],[["0.000000","0.000000","0.470000"],["0.000000","0.000000","0.180000"],["0.000000","0.000000","-0.120000"],["0.000000","0.000000","0.130000"],["0.000000","0.000000","-0.160000"],["-0.070000","0.380000","-0.390000"],["0.070000","-0.380000","-0.390000"],["0.000000","0.000000","-0.290000"]],[["-0.140000","-0.270000","0.000000"],["-0.150000","0.090000","0.000000"],["0.050000","0.210000","0.000000"],["0.450000","-0.380000","0.000000"],["-0.380000","0.190000","0.000000"],["-0.180000","0.210000","0.030000"],["-0.180000","0.210000","-0.030000"],["-0.090000","-0.390000","0.000000"]],[["0.000000","0.000000","0.600002"],["0.000000","0.000000","-0.070000"],["0.000000","0.000000","-0.080000"],["0.000000","0.000000","0.040000"],["0.000000","0.000000","0.050000"],["0.190000","-0.320000","0.140000"],["-0.190000","0.320000","0.140000"],["0.000000","0.000000","-0.560002"]],[["0.380000","-0.320000","0.000000"],["0.360000","0.040000","0.000000"],["0.120000","-0.300000","0.000000"],["-0.200000","-0.080000","0.000000"],["-0.210000","0.410000","0.000000"],["0.030000","-0.280000","-0.020000"],["0.030000","-0.280000","0.020000"],["0.040000","-0.310000","0.000000"]],[["0.230000","-0.660000","0.000000"],["0.180000","-0.130000","0.000000"],["-0.020000","0.250000","0.000000"],["-0.090000","-0.040000","0.000000"],["0.000000","-0.050000","0.000000"],["-0.340000","0.280000","0.010000"],["-0.340000","0.280000","-0.010000"],["0.050000","0.020000","0.000000"]],[["0.000000","0.000000","-0.539999"],["0.000000","0.000000","0.020000"],["0.000000","0.000000","0.030000"],["0.000000","0.000000","0.010000"],["0.000000","0.000000","0.050000"],["-0.170000","0.090000","-0.020000"],["0.170000","-0.090000","-0.020000"],["0.000000","0.000000","-0.800000"]],[["0.000000","0.000000","-0.520000"],["0.000000","0.000000","0.190000"],["0.000000","0.000000","-0.190000"],["0.000000","0.000000","0.040000"],["0.000000","0.000000","-0.050000"],["-0.030000","-0.520000","0.200000"],["0.030000","0.520000","0.200000"],["0.000000","0.000000","0.170000"]],[["-0.150000","0.200000","0.000000"],["-0.140000","0.040000","0.000000"],["0.330000","0.180000","0.000000"],["-0.230000","-0.180000","0.000000"],["0.030000","0.000000","0.000000"],["0.579999","0.070000","0.020000"],["0.579999","0.070000","-0.020000"],["-0.010000","-0.020000","0.000000"]],[["0.000000","0.000000","0.200000"],["0.000000","0.000000","-0.070000"],["0.000000","0.000000","-0.030000"],["0.000000","0.000000","0.040000"],["0.000000","0.000000","0.010000"],["-0.679998","-0.070000","0.080000"],["0.679998","0.070000","0.080000"],["0.000000","0.000000","0.110000"]],[["0.030000","0.899998","0.000000"],["0.090000","-0.050000","0.000000"],["0.060000","0.020000","0.000000"],["-0.010000","0.000000","0.000000"],["-0.080000","-0.050000","0.000000"],["-0.260000","0.090000","-0.010000"],["-0.260000","0.090000","0.010000"],["0.000000","0.050000","0.000000"]],[["-0.110000","-0.270000","0.000000"],["-0.110000","0.050000","0.000000"],["0.190000","-0.090000","0.000000"],["-0.010000","0.030000","0.000000"],["0.050000","0.010000","0.000000"],["-0.649999","0.040000","-0.010000"],["-0.649999","0.040000","0.010000"],["-0.030000","0.070000","0.000000"]],[["0.000000","0.030000","0.000000"],["0.000000","-0.010000","0.000000"],["0.010000","0.080000","0.000000"],["0.000000","0.010000","0.000000"],["0.000000","0.010000","0.000000"],["-0.100000","-0.550000","0.430000"],["-0.100000","-0.550000","-0.430000"],["0.010000","0.040000","0.000000"]],[["0.310000","-0.470000","0.000000"],["0.200000","0.600002","0.000000"],["0.040000","-0.040000","0.000000"],["-0.030000","-0.010000","0.000000"],["-0.200000","-0.420000","0.000000"],["0.060000","-0.110000","0.050000"],["0.060000","-0.110000","-0.050000"],["-0.170000","-0.030000","0.000000"]],[["0.020000","0.050000","0.000000"],["0.010000","-0.010000","0.000000"],["0.010000","0.020000","0.000000"],["0.000000","0.020000","0.000000"],["0.040000","0.000000","0.000000"],["-0.010000","0.010000","0.020000"],["-0.010000","0.010000","-0.020000"],["-0.840000","-0.539999","0.000000"]],[["-0.040000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["-0.010000","-0.070000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.060000","0.390000","0.579999"],["0.060000","0.390000","-0.579999"],["0.010000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.090000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.060000","-0.420000","-0.569998"],["0.060000","0.420000","-0.569998"],["0.000000","0.000000","0.000000"]],[["0.990001","0.070000","0.000000"],["-0.090000","-0.010000","0.000000"],["0.000000","-0.010000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.020000","0.020000"],["0.000000","0.020000","-0.020000"],["0.010000","0.000000","0.000000"]]],[[["-0.340000","0.930003","0.040000"],["0.060000","-0.140000","-0.010000"],["-0.020000","0.010000","0.000000"],["0.000000","0.010000","0.000000"],["-0.010000","0.040000","0.000000"],["-0.020000","0.010000","0.000000"],["-0.020000","0.010000","0.000000"],["-0.010000","0.000000","-0.010000"]],[["0.020000","-0.040000","0.880001"],["0.000000","-0.010000","0.030000"],["0.000000","0.000000","-0.090000"],["0.000000","-0.010000","0.050000"],["-0.010000","0.000000","-0.050000"],["-0.050000","-0.140000","-0.220000"],["0.050000","0.160000","-0.200000"],["0.090000","0.160000","0.200000"]],[["0.260000","-0.170000","-0.180000"],["-0.040000","-0.120000","0.020000"],["-0.010000","-0.100000","0.020000"],["0.170000","0.060000","-0.030000"],["-0.210000","0.120000","-0.020000"],["-0.120000","-0.050000","0.040000"],["-0.060000","-0.100000","0.030000"],["0.730000","0.340000","0.290000"]],[["0.140000","-0.120000","0.280000"],["-0.010000","-0.050000","-0.120000"],["-0.010000","-0.030000","-0.040000"],["0.120000","0.070000","0.060000"],["-0.080000","0.040000","0.080000"],["0.040000","0.000000","0.000000"],["-0.160000","-0.050000","0.000000"],["-0.569998","-0.480000","-0.500000"]],[["0.050000","-0.030000","-0.370000"],["0.010000","-0.030000","0.290000"],["0.000000","0.000000","-0.030000"],["0.040000","0.030000","0.000000"],["-0.030000","0.020000","-0.140000"],["-0.270000","-0.250000","-0.290000"],["0.230000","0.280000","-0.250000"],["-0.360000","-0.300000","-0.340000"]],[["0.930003","0.350000","0.000000"],["-0.010000","-0.010000","0.000000"],["-0.030000","0.010000","0.000000"],["-0.030000","0.020000","0.000000"],["0.020000","-0.050000","0.000000"],["-0.040000","0.010000","0.000000"],["-0.040000","0.010000","0.000000"],["-0.020000","0.030000","0.010000"]],[["-0.260000","0.749998","0.030000"],["-0.270000","0.300000","0.020000"],["-0.010000","-0.130000","-0.020000"],["0.200000","-0.030000","0.010000"],["0.010000","-0.130000","-0.010000"],["0.060000","-0.150000","-0.010000"],["0.060000","-0.120000","-0.040000"],["0.230000","-0.140000","-0.080000"]],[["0.030000","0.090000","-0.010000"],["-0.170000","-0.090000","0.010000"],["0.360000","0.290000","-0.010000"],["0.020000","-0.060000","-0.010000"],["-0.230000","-0.150000","-0.010000"],["0.490000","0.310000","0.040000"],["0.440000","0.070000","0.110000"],["-0.290000","0.150000","0.120000"]],[["0.000000","0.010000","0.040000"],["-0.010000","0.000000","-0.110000"],["0.040000","0.010000","0.180000"],["-0.030000","0.020000","-0.030000"],["-0.020000","-0.010000","0.020000"],["-0.100000","-0.520000","-0.280000"],["0.230000","0.560002","-0.210000"],["0.290000","-0.230000","-0.190000"]],[["0.110000","-0.090000","0.000000"],["0.010000","0.000000","-0.040000"],["-0.310000","0.350000","0.100000"],["0.250000","-0.310000","-0.060000"],["0.020000","0.020000","0.010000"],["-0.520000","0.200000","-0.050000"],["-0.190000","0.430000","0.010000"],["-0.150000","0.030000","0.190000"]],[["0.010000","-0.020000","0.000000"],["0.000000","-0.010000","0.060000"],["-0.030000","0.060000","-0.040000"],["-0.010000","-0.020000","0.010000"],["0.000000","0.000000","-0.010000"],["0.620000","-0.070000","0.000000"],["-0.500000","0.130000","0.000000"],["0.420000","-0.330000","-0.190000"]],[["-0.020000","0.040000","0.000000"],["-0.010000","0.020000","0.020000"],["0.100000","-0.050000","0.050000"],["0.010000","0.000000","-0.050000"],["0.000000","0.000000","0.000000"],["-0.100000","-0.120000","-0.040000"],["-0.780002","0.290000","-0.010000"],["-0.370000","0.300000","0.150000"]],[["-0.010000","0.030000","0.000000"],["-0.010000","0.010000","-0.010000"],["0.100000","0.030000","-0.050000"],["-0.030000","-0.020000","0.050000"],["0.000000","0.000000","0.000000"],["-0.710002","0.300000","0.000000"],["-0.280000","-0.040000","0.050000"],["0.390000","-0.340000","-0.160000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","0.070000","0.010000"],["0.000000","0.010000","0.000000"],["0.010000","0.000000","0.000000"],["-0.090000","-0.529997","-0.470000"],["-0.120000","-0.560002","0.400000"],["-0.010000","0.020000","0.010000"]],[["-0.100000","0.260000","0.010000"],["0.649999","0.380000","0.000000"],["-0.080000","-0.030000","0.000000"],["-0.010000","0.000000","0.000000"],["-0.470000","-0.320000","0.000000"],["-0.060000","-0.040000","-0.040000"],["-0.060000","-0.050000","0.040000"],["0.010000","0.010000","0.010000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.020000","-0.050000","-0.050000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.040000","0.160000","-0.230000"],["0.140000","0.490000","0.810001"],["0.000000","0.000000","0.000000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.010000","0.040000","-0.080000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.160000","-0.579999","0.749998"],["0.040000","0.140000","0.210000"],["0.010000","0.000000","-0.010000"]],[["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["0.000000","0.000000","0.000000"],["-0.010000","-0.040000","0.050000"],["0.000000","0.000000","0.000000"],["0.000000","0.010000","-0.010000"],["0.000000","0.000000","0.000000"],["0.110000","0.639998","-0.749998"]]]],"vibr_models":["load data 'model FRQS'\n8\nfrq = -1714.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.010000 -0.020000 0.000000\nC -0.654763 0.787975 -0.064245 0 0.000000 0.030000 -0.010000\nC 0.907192 0.512117 0.030238 0 0.040000 -0.030000 0.000000\nO 0.981515 -0.805097 -0.029719 0 0.030000 0.040000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.010000 -0.040000 0.000000\nH 1.392301 1.079437 -0.778715 0 -0.020000 0.020000 0.000000\nH 1.169874 0.994617 0.990152 0 -0.050000 0.000000 0.010000\nH -0.462657 -1.040330 0.075389 0 -0.990001 -0.110000 0.080000\n8\nfrq = 125.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.030000 0.030000 -0.170000\nC -0.654763 0.787975 -0.064245 0 0.020000 -0.010000 0.240000\nC 0.907192 0.512117 0.030238 0 0.020000 0.010000 -0.110000\nO 0.981515 -0.805097 -0.029719 0 0.000000 0.000000 0.110000\nN -1.307659 -0.291871 0.019260 0 -0.030000 -0.010000 -0.140000\nH 1.392301 1.079437 -0.778715 0 -0.380000 -0.110000 -0.460000\nH 1.169874 0.994617 0.990152 0 0.470000 0.210000 -0.340000\nH -0.462657 -1.040330 0.075389 0 -0.070000 -0.030000 -0.330000\n8\nfrq = 542.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.040000 0.590001 -0.060000\nC -0.654763 0.787975 -0.064245 0 0.460000 -0.270000 -0.010000\nC 0.907192 0.512117 0.030238 0 -0.290000 0.160000 0.010000\nO 0.981515 -0.805097 -0.029719 0 -0.080000 0.040000 -0.020000\nN -1.307659 -0.291871 0.019260 0 -0.010000 0.000000 0.030000\nH 1.392301 1.079437 -0.778715 0 -0.140000 0.210000 0.120000\nH 1.169874 0.994617 0.990152 0 -0.090000 0.150000 -0.020000\nH -0.462657 -1.040330 0.075389 0 -0.300000 -0.220000 0.030000\n8\nfrq = 623.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.300000 0.230000 0.110000\nC -0.654763 0.787975 -0.064245 0 -0.030000 -0.010000 0.020000\nC 0.907192 0.512117 0.030238 0 -0.240000 -0.110000 -0.040000\nO 0.981515 -0.805097 -0.029719 0 0.529997 -0.140000 0.010000\nN -1.307659 -0.291871 0.019260 0 -0.300000 0.220000 0.010000\nH 1.392301 1.079437 -0.778715 0 -0.290000 0.140000 0.090000\nH 1.169874 0.994617 0.990152 0 -0.400000 -0.020000 -0.020000\nH -0.462657 -1.040330 0.075389 0 -0.010000 0.160000 -0.180000\n8\nfrq = 693.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.020000 0.080000 0.960002\nC -0.654763 0.787975 -0.064245 0 0.000000 0.010000 0.020000\nC 0.907192 0.512117 0.030238 0 -0.020000 0.000000 -0.020000\nO 0.981515 -0.805097 -0.029719 0 -0.010000 0.000000 0.020000\nN -1.307659 -0.291871 0.019260 0 0.020000 -0.010000 -0.100000\nH 1.392301 1.079437 -0.778715 0 0.130000 -0.010000 0.070000\nH 1.169874 0.994617 0.990152 0 -0.180000 0.000000 0.030000\nH -0.462657 -1.040330 0.075389 0 0.000000 -0.010000 -0.050000\n8\nfrq = 767.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.380000 0.400000 0.280000\nC -0.654763 0.787975 -0.064245 0 0.000000 -0.240000 -0.060000\nC 0.907192 0.512117 0.030238 0 0.360000 0.090000 0.060000\nO 0.981515 -0.805097 -0.029719 0 0.010000 0.100000 -0.020000\nN -1.307659 -0.291871 0.019260 0 -0.350000 -0.030000 0.010000\nH 1.392301 1.079437 -0.778715 0 0.330000 0.080000 0.020000\nH 1.169874 0.994617 0.990152 0 0.360000 0.050000 0.080000\nH -0.462657 -1.040330 0.075389 0 0.030000 0.020000 -0.150000\n8\nfrq = 946.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.000000 0.010000 -0.190000\nC -0.654763 0.787975 -0.064245 0 0.010000 0.000000 0.040000\nC 0.907192 0.512117 0.030238 0 0.020000 0.000000 -0.130000\nO 0.981515 -0.805097 -0.029719 0 -0.020000 0.010000 0.050000\nN -1.307659 -0.291871 0.019260 0 0.000000 -0.010000 0.050000\nH 1.392301 1.079437 -0.778715 0 0.420000 0.120000 0.200000\nH 1.169874 0.994617 0.990152 0 -0.480000 -0.100000 0.080000\nH -0.462657 -1.040330 0.075389 0 -0.020000 -0.050000 -0.679998\n8\nfrq = 1044.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.040000 -0.090000 0.210000\nC -0.654763 0.787975 -0.064245 0 0.000000 0.010000 -0.110000\nC 0.907192 0.512117 0.030238 0 -0.020000 -0.010000 0.110000\nO 0.981515 -0.805097 -0.029719 0 -0.010000 0.000000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.030000 0.010000 0.060000\nH 1.392301 1.079437 -0.778715 0 -0.380000 -0.020000 -0.130000\nH 1.169874 0.994617 0.990152 0 0.280000 0.070000 -0.030000\nH -0.462657 -1.040330 0.075389 0 -0.060000 -0.060000 -0.820002\n8\nfrq = 1151.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.010000 0.969998 -0.080000\nC -0.654763 0.787975 -0.064245 0 -0.090000 0.020000 -0.010000\nC 0.907192 0.512117 0.030238 0 0.000000 0.000000 0.010000\nO 0.981515 -0.805097 -0.029719 0 0.020000 -0.010000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.060000 -0.060000 0.010000\nH 1.392301 1.079437 -0.778715 0 -0.060000 -0.070000 -0.060000\nH 1.169874 0.994617 0.990152 0 -0.020000 -0.010000 0.010000\nH -0.462657 -1.040330 0.075389 0 0.050000 -0.150000 -0.040000\n8\nfrq = 1204.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.010000 0.050000 0.040000\nC -0.654763 0.787975 -0.064245 0 0.000000 -0.010000 -0.030000\nC 0.907192 0.512117 0.030238 0 0.020000 -0.020000 -0.070000\nO 0.981515 -0.805097 -0.029719 0 -0.010000 0.010000 0.050000\nN -1.307659 -0.291871 0.019260 0 0.010000 0.000000 0.000000\nH 1.392301 1.079437 -0.778715 0 -0.390000 0.609998 0.100000\nH 1.169874 0.994617 0.990152 0 0.180000 -0.620000 0.180000\nH -0.462657 -1.040330 0.075389 0 0.030000 0.030000 0.080000\n8\nfrq = 1256.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.010000 -0.080000 0.020000\nC -0.654763 0.787975 -0.064245 0 -0.050000 0.060000 -0.010000\nC 0.907192 0.512117 0.030238 0 -0.050000 0.270000 -0.020000\nO 0.981515 -0.805097 -0.029719 0 0.030000 -0.200000 0.010000\nN -1.307659 -0.291871 0.019260 0 -0.010000 -0.040000 0.010000\nH 1.392301 1.079437 -0.778715 0 0.520000 0.110000 0.220000\nH 1.169874 0.994617 0.990152 0 0.660000 -0.180000 -0.020000\nH -0.462657 -1.040330 0.075389 0 -0.210000 -0.110000 -0.070000\n8\nfrq = 1290.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.010000 0.010000 0.010000\nC -0.654763 0.787975 -0.064245 0 0.010000 0.000000 -0.010000\nC 0.907192 0.512117 0.030238 0 -0.110000 -0.090000 -0.020000\nO 0.981515 -0.805097 -0.029719 0 0.030000 0.140000 0.010000\nN -1.307659 -0.291871 0.019260 0 -0.010000 -0.010000 0.000000\nH 1.392301 1.079437 -0.778715 0 0.440000 -0.460000 0.050000\nH 1.169874 0.994617 0.990152 0 0.529997 -0.510000 0.020000\nH -0.462657 -1.040330 0.075389 0 0.040000 0.000000 -0.060000\n8\nfrq = 1488.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.000000 0.060000 0.000000\nC -0.654763 0.787975 -0.064245 0 -0.010000 0.010000 0.000000\nC 0.907192 0.512117 0.030238 0 -0.030000 -0.110000 -0.010000\nO 0.981515 -0.805097 -0.029719 0 -0.010000 0.020000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.010000 -0.010000 0.000000\nH 1.392301 1.079437 -0.778715 0 0.190000 0.480000 0.490000\nH 1.169874 0.994617 0.990152 0 0.330000 0.480000 -0.360000\nH -0.462657 -1.040330 0.075389 0 0.030000 0.010000 0.000000\n8\nfrq = 1663.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.340000 0.040000 -0.010000\nC -0.654763 0.787975 -0.064245 0 0.320000 0.510000 -0.040000\nC 0.907192 0.512117 0.030238 0 0.000000 -0.040000 0.010000\nO 0.981515 -0.805097 -0.029719 0 0.010000 0.000000 0.000000\nN -1.307659 -0.291871 0.019260 0 -0.260000 -0.420000 0.030000\nH 1.392301 1.079437 -0.778715 0 -0.220000 0.040000 -0.070000\nH 1.169874 0.994617 0.990152 0 -0.140000 0.030000 0.020000\nH -0.462657 -1.040330 0.075389 0 0.410000 0.180000 0.000000\n8\nfrq = 2278.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 -0.050000 -0.100000 0.010000\nC -0.654763 0.787975 -0.064245 0 0.010000 0.030000 0.000000\nC 0.907192 0.512117 0.030238 0 0.010000 -0.010000 0.000000\nO 0.981515 -0.805097 -0.029719 0 0.000000 0.010000 0.000000\nN -1.307659 -0.291871 0.019260 0 -0.020000 0.030000 0.000000\nH 1.392301 1.079437 -0.778715 0 -0.020000 0.020000 0.000000\nH 1.169874 0.994617 0.990152 0 -0.010000 0.010000 0.000000\nH -0.462657 -1.040330 0.075389 0 0.130000 -0.979999 0.070000\n8\nfrq = 2913.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.000000 0.000000 0.000000\nC -0.654763 0.787975 -0.064245 0 0.000000 0.000000 0.000000\nC 0.907192 0.512117 0.030238 0 0.020000 0.040000 0.060000\nO 0.981515 -0.805097 -0.029719 0 0.000000 0.000000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.000000 0.000000 0.000000\nH 1.392301 1.079437 -0.778715 0 -0.060000 -0.070000 0.140000\nH 1.169874 0.994617 0.990152 0 -0.240000 -0.400000 -0.859998\nH -0.462657 -1.040330 0.075389 0 0.000000 0.000000 0.000000\n8\nfrq = 2980.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.000000 0.000000 0.000000\nC -0.654763 0.787975 -0.064245 0 0.000000 0.000000 0.000000\nC 0.907192 0.512117 0.030238 0 -0.030000 -0.030000 0.070000\nO 0.981515 -0.805097 -0.029719 0 0.000000 0.000000 0.000000\nN -1.307659 -0.291871 0.019260 0 0.000000 0.000000 0.000000\nH 1.392301 1.079437 -0.778715 0 0.450000 0.490000 -0.730000\nH 1.169874 0.994617 0.990152 0 -0.060000 -0.070000 -0.110000\nH -0.462657 -1.040330 0.075389 0 0.000000 0.000000 0.000000\n8\nfrq = 3656.00 cm-1 \nH -2.312596 -0.350404 0.020147 0 0.990001 0.070000 0.000000\nC -0.654763 0.787975 -0.064245 0 0.000000 0.000000 0.000000\nC 0.907192 0.512117 0.030238 0 0.000000 0.000000 0.000000\nO 0.981515 -0.805097 -0.029719 0 0.000000 0.000000 0.000000\nN -1.307659 -0.291871 0.019260 0 -0.070000 -0.010000 0.000000\nH 1.392301 1.079437 -0.778715 0 0.000000 0.000000 0.000000\nH 1.169874 0.994617 0.990152 0 0.000000 0.000000 0.000000\nH -0.462657 -1.040330 0.075389 0 0.010000 -0.030000 0.000000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = -1917.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.470000 0.840000 0.160000\nC 0.687534 -0.643808 -0.046903 0 -0.050000 -0.040000 0.030000\nC -0.906023 -0.521226 0.078864 0 0.000000 0.010000 0.000000\nO -1.201115 0.732603 -0.101118 0 0.000000 0.000000 0.000000\nN 1.491148 0.354469 0.104317 0 0.010000 -0.040000 -0.030000\nH -1.323623 -1.255068 -0.625832 0 0.010000 -0.010000 0.000000\nH 1.100237 1.302923 0.181070 0 0.060000 0.000000 -0.180000\nH -1.010131 -0.905622 1.113539 0 0.020000 -0.030000 0.000000\n8\nfrq = 138.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.160000 -0.360000 0.310000\nC 0.687534 -0.643808 -0.046903 0 0.000000 0.020000 0.170000\nC -0.906023 -0.521226 0.078864 0 -0.030000 -0.020000 -0.100000\nO -1.201115 0.732603 -0.101118 0 -0.010000 0.010000 0.090000\nN 1.491148 0.354469 0.104317 0 0.030000 0.020000 -0.100000\nH -1.323623 -1.255068 -0.625832 0 0.210000 0.120000 -0.400000\nH 1.100237 1.302923 0.181070 0 0.140000 0.090000 -0.470000\nH -1.010131 -0.905622 1.113539 0 -0.290000 -0.280000 -0.230000\n8\nfrq = 280.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.300000 0.220000 -0.210000\nC 0.687534 -0.643808 -0.046903 0 -0.020000 -0.110000 0.070000\nC -0.906023 -0.521226 0.078864 0 -0.020000 -0.070000 -0.010000\nO -1.201115 0.732603 -0.101118 0 0.350000 0.020000 0.030000\nN 1.491148 0.354469 0.104317 0 -0.270000 0.130000 -0.040000\nH -1.323623 -1.255068 -0.625832 0 -0.080000 0.070000 -0.120000\nH 1.100237 1.302923 0.181070 0 -0.700001 -0.050000 -0.110000\nH -1.010131 -0.905622 1.113539 0 -0.200000 -0.120000 -0.050000\n8\nfrq = 425.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.560002 -0.370000 0.609998\nC 0.687534 -0.643808 -0.046903 0 -0.060000 0.070000 -0.130000\nC -0.906023 -0.521226 0.078864 0 -0.030000 -0.040000 0.030000\nO -1.201115 0.732603 -0.101118 0 0.080000 -0.020000 0.010000\nN 1.491148 0.354469 0.104317 0 -0.070000 0.010000 0.020000\nH -1.323623 -1.255068 -0.625832 0 -0.180000 -0.060000 0.140000\nH 1.100237 1.302923 0.181070 0 0.190000 0.120000 -0.080000\nH -1.010131 -0.905622 1.113539 0 0.140000 0.030000 0.070000\n8\nfrq = 497.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.350000 0.230000 -0.280000\nC 0.687534 -0.643808 -0.046903 0 -0.190000 0.220000 0.020000\nC -0.906023 -0.521226 0.078864 0 -0.110000 -0.120000 0.070000\nO -1.201115 0.732603 -0.101118 0 0.120000 -0.070000 -0.040000\nN 1.491148 0.354469 0.104317 0 0.120000 -0.010000 -0.020000\nH -1.323623 -1.255068 -0.625832 0 0.120000 -0.070000 -0.130000\nH 1.100237 1.302923 0.181070 0 0.490000 0.120000 0.270000\nH -1.010131 -0.905622 1.113539 0 -0.420000 -0.240000 -0.010000\n8\nfrq = 567.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.390000 -0.130000 0.090000\nC 0.687534 -0.643808 -0.046903 0 -0.420000 0.080000 0.090000\nC -0.906023 -0.521226 0.078864 0 0.590001 -0.040000 -0.110000\nO -1.201115 0.732603 -0.101118 0 -0.040000 0.050000 0.020000\nN 1.491148 0.354469 0.104317 0 -0.120000 -0.080000 -0.010000\nH -1.323623 -1.255068 -0.625832 0 0.250000 -0.070000 0.140000\nH 1.100237 1.302923 0.181070 0 0.080000 -0.010000 -0.070000\nH -1.010131 -0.905622 1.113539 0 0.370000 0.060000 -0.090000\n8\nfrq = 862.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.230000 0.030000 -0.130000\nC 0.687534 -0.643808 -0.046903 0 -0.040000 0.040000 0.020000\nC -0.906023 -0.521226 0.078864 0 -0.060000 -0.010000 -0.100000\nO -1.201115 0.732603 -0.101118 0 0.030000 -0.030000 0.030000\nN 1.491148 0.354469 0.104317 0 0.080000 0.010000 0.070000\nH -1.323623 -1.255068 -0.625832 0 -0.390000 -0.120000 0.210000\nH 1.100237 1.302923 0.181070 0 -0.170000 -0.030000 -0.639998\nH -1.010131 -0.905622 1.113539 0 0.500000 0.050000 0.010000\n8\nfrq = 982.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.030000 -0.030000 -0.030000\nC 0.687534 -0.643808 -0.046903 0 -0.020000 0.010000 -0.120000\nC -0.906023 -0.521226 0.078864 0 0.040000 0.010000 0.130000\nO -1.201115 0.732603 -0.101118 0 -0.020000 0.010000 -0.030000\nN 1.491148 0.354469 0.104317 0 0.030000 -0.020000 0.090000\nH -1.323623 -1.255068 -0.625832 0 0.390000 0.130000 -0.210000\nH 1.100237 1.302923 0.181070 0 -0.360000 -0.120000 -0.660000\nH -1.010131 -0.905622 1.113539 0 -0.340000 -0.210000 -0.010000\n8\nfrq = 1105.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.100000 0.020000 0.090000\nC 0.687534 -0.643808 -0.046903 0 -0.010000 -0.030000 -0.010000\nC -0.906023 -0.521226 0.078864 0 0.060000 -0.160000 -0.030000\nO -1.201115 0.732603 -0.101118 0 -0.030000 0.080000 0.010000\nN 1.491148 0.354469 0.104317 0 0.090000 0.050000 -0.010000\nH -1.323623 -1.255068 -0.625832 0 -0.539999 -0.030000 0.200000\nH 1.100237 1.302923 0.181070 0 -0.260000 -0.090000 0.030000\nH -1.010131 -0.905622 1.113539 0 -0.670002 0.290000 0.030000\n8\nfrq = 1212.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.200000 0.090000 -0.170000\nC 0.687534 -0.643808 -0.046903 0 0.040000 -0.090000 -0.040000\nC -0.906023 -0.521226 0.078864 0 0.030000 -0.030000 0.000000\nO -1.201115 0.732603 -0.101118 0 -0.010000 0.020000 0.000000\nN 1.491148 0.354469 0.104317 0 -0.070000 0.040000 0.060000\nH -1.323623 -1.255068 -0.625832 0 -0.130000 0.040000 0.030000\nH 1.100237 1.302923 0.181070 0 0.759999 0.380000 -0.350000\nH -1.010131 -0.905622 1.113539 0 -0.180000 0.080000 0.010000\n8\nfrq = 1233.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.000000 0.010000 -0.020000\nC 0.687534 -0.643808 -0.046903 0 0.000000 0.020000 -0.020000\nC -0.906023 -0.521226 0.078864 0 -0.030000 0.040000 -0.080000\nO -1.201115 0.732603 -0.101118 0 0.020000 -0.050000 0.060000\nN 1.491148 0.354469 0.104317 0 -0.010000 -0.020000 0.010000\nH -1.323623 -1.255068 -0.625832 0 0.470000 -0.400000 0.080000\nH 1.100237 1.302923 0.181070 0 -0.020000 -0.020000 -0.080000\nH -1.010131 -0.905622 1.113539 0 -0.280000 0.700001 0.130000\n8\nfrq = 1315.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.000000 0.000000 -0.010000\nC 0.687534 -0.643808 -0.046903 0 0.010000 -0.030000 0.000000\nC -0.906023 -0.521226 0.078864 0 -0.070000 -0.190000 0.010000\nO -1.201115 0.732603 -0.101118 0 -0.020000 0.210000 -0.010000\nN 1.491148 0.354469 0.104317 0 0.000000 0.010000 0.000000\nH -1.323623 -1.255068 -0.625832 0 0.560002 -0.630001 0.100000\nH 1.100237 1.302923 0.181070 0 0.050000 0.020000 0.000000\nH -1.010131 -0.905622 1.113539 0 0.380000 -0.220000 0.020000\n8\nfrq = 1485.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.020000 0.000000 -0.060000\nC 0.687534 -0.643808 -0.046903 0 0.050000 0.050000 0.000000\nC -0.906023 -0.521226 0.078864 0 0.020000 0.090000 -0.030000\nO -1.201115 0.732603 -0.101118 0 0.000000 -0.010000 0.010000\nN 1.491148 0.354469 0.104317 0 -0.040000 -0.040000 0.000000\nH -1.323623 -1.255068 -0.625832 0 -0.110000 -0.460000 0.560002\nH 1.100237 1.302923 0.181070 0 0.000000 -0.020000 -0.040000\nH -1.010131 -0.905622 1.113539 0 -0.350000 -0.510000 -0.250000\n8\nfrq = 1576.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.070000 0.190000 -0.270000\nC 0.687534 -0.643808 -0.046903 0 0.240000 0.340000 0.070000\nC -0.906023 -0.521226 0.078864 0 0.030000 -0.160000 0.010000\nO -1.201115 0.732603 -0.101118 0 -0.020000 0.060000 -0.010000\nN 1.491148 0.354469 0.104317 0 -0.200000 -0.280000 -0.010000\nH -1.323623 -1.255068 -0.625832 0 -0.300000 0.340000 -0.280000\nH 1.100237 1.302923 0.181070 0 0.020000 -0.160000 -0.300000\nH -1.010131 -0.905622 1.113539 0 0.020000 0.360000 0.170000\n8\nfrq = 2488.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 -0.630001 0.240000 0.730000\nC 0.687534 -0.643808 -0.046903 0 0.050000 0.010000 -0.030000\nC -0.906023 -0.521226 0.078864 0 0.000000 0.000000 0.000000\nO -1.201115 0.732603 -0.101118 0 0.000000 0.000000 0.000000\nN 1.491148 0.354469 0.104317 0 0.010000 -0.020000 -0.030000\nH -1.323623 -1.255068 -0.625832 0 0.010000 0.000000 0.010000\nH 1.100237 1.302923 0.181070 0 0.010000 -0.060000 0.010000\nH -1.010131 -0.905622 1.113539 0 0.000000 0.000000 -0.010000\n8\nfrq = 2892.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.010000 0.010000 -0.010000\nC 0.687534 -0.643808 -0.046903 0 0.000000 0.000000 0.000000\nC -0.906023 -0.521226 0.078864 0 -0.020000 -0.030000 0.060000\nO -1.201115 0.732603 -0.101118 0 0.000000 -0.010000 0.000000\nN 1.491148 0.354469 0.104317 0 0.000000 0.000000 0.000000\nH -1.323623 -1.255068 -0.625832 0 0.070000 0.120000 0.150000\nH 1.100237 1.302923 0.181070 0 0.000000 0.010000 0.000000\nH -1.010131 -0.905622 1.113539 0 0.110000 0.320000 -0.920001\n8\nfrq = 2990.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.010000 0.000000 -0.010000\nC 0.687534 -0.643808 -0.046903 0 0.000000 0.000000 0.000000\nC -0.906023 -0.521226 0.078864 0 -0.030000 -0.050000 -0.070000\nO -1.201115 0.732603 -0.101118 0 0.000000 0.000000 0.000000\nN 1.491148 0.354469 0.104317 0 0.000000 0.000000 0.000000\nH -1.323623 -1.255068 -0.625832 0 0.380000 0.639998 0.639998\nH 1.100237 1.302923 0.181070 0 0.000000 0.000000 0.000000\nH -1.010131 -0.905622 1.113539 0 -0.030000 -0.070000 0.150000\n8\nfrq = 3335.00 cm-1 \nH 1.715334 -0.494133 -0.781810 0 0.020000 -0.010000 -0.020000\nC 0.687534 -0.643808 -0.046903 0 0.000000 0.000000 0.000000\nC -0.906023 -0.521226 0.078864 0 0.000000 0.000000 0.000000\nO -1.201115 0.732603 -0.101118 0 0.000000 0.000000 0.000000\nN 1.491148 0.354469 0.104317 0 -0.020000 0.070000 0.010000\nH -1.323623 -1.255068 -0.625832 0 0.000000 0.000000 0.000000\nH 1.100237 1.302923 0.181070 0 0.360000 -0.930003 -0.070000\nH -1.010131 -0.905622 1.113539 0 0.000000 0.010000 -0.010000\nend 'model FRQS'",null,"load data 'model FRQS'\n8\nfrq = -1101.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.180000 0.979999 0.030000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.040000 0.000000\nC -0.699624 -0.600967 0.040392 0 -0.010000 -0.010000 0.000000\nO -1.493318 0.546670 -0.107340 0 0.010000 -0.010000 0.000000\nN 1.825745 0.092716 -0.017778 0 -0.020000 -0.080000 0.000000\nH -0.951515 -1.269249 -0.782054 0 0.000000 -0.010000 0.000000\nH -0.902120 -1.134658 0.974664 0 -0.010000 0.000000 0.000000\nH -1.281491 1.172962 0.585376 0 0.010000 0.000000 0.000000\n8\nfrq = 133.00 cm-1 \nH 2.056104 1.696939 0.020700 0 -0.090000 0.010000 0.890002\nC 0.740517 -0.313761 -0.009645 0 0.000000 -0.030000 -0.060000\nC -0.699624 -0.600967 0.040392 0 0.000000 0.000000 0.070000\nO -1.493318 0.546670 -0.107340 0 0.020000 0.000000 -0.030000\nN 1.825745 0.092716 -0.017778 0 -0.020000 0.020000 -0.040000\nH -0.951515 -1.269249 -0.782054 0 -0.090000 -0.120000 0.190000\nH -0.902120 -1.134658 0.974664 0 0.070000 0.140000 0.160000\nH -1.281491 1.172962 0.585376 0 0.150000 0.130000 -0.190000\n8\nfrq = 160.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.730000 -0.290000 0.270000\nC 0.740517 -0.313761 -0.009645 0 0.010000 0.170000 -0.010000\nC -0.699624 -0.600967 0.040392 0 0.030000 0.070000 0.020000\nO -1.493318 0.546670 -0.107340 0 -0.170000 -0.070000 -0.020000\nN 1.825745 0.092716 -0.017778 0 0.120000 -0.120000 -0.020000\nH -0.951515 -1.269249 -0.782054 0 0.100000 0.000000 0.050000\nH -0.902120 -1.134658 0.974664 0 0.120000 0.080000 0.040000\nH -1.281491 1.172962 0.585376 0 -0.410000 -0.090000 0.070000\n8\nfrq = 297.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.140000 -0.040000 -0.170000\nC 0.740517 -0.313761 -0.009645 0 -0.010000 0.040000 -0.070000\nC -0.699624 -0.600967 0.040392 0 0.010000 0.000000 -0.040000\nO -1.493318 0.546670 -0.107340 0 -0.070000 -0.040000 0.060000\nN 1.825745 0.092716 -0.017778 0 0.010000 -0.010000 0.080000\nH -0.951515 -1.269249 -0.782054 0 -0.020000 0.000000 -0.030000\nH -0.902120 -1.134658 0.974664 0 0.100000 -0.020000 -0.020000\nH -1.281491 1.172962 0.585376 0 0.679998 0.380000 -0.550000\n8\nfrq = 398.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.310000 -0.080000 0.270000\nC 0.740517 -0.313761 -0.009645 0 -0.030000 0.040000 0.300000\nC -0.699624 -0.600967 0.040392 0 -0.010000 -0.040000 -0.030000\nO -1.493318 0.546670 -0.107340 0 0.020000 -0.010000 -0.010000\nN 1.825745 0.092716 -0.017778 0 -0.030000 0.020000 -0.190000\nH -0.951515 -1.269249 -0.782054 0 0.290000 0.190000 -0.320000\nH -0.902120 -1.134658 0.974664 0 -0.320000 -0.310000 -0.250000\nH -1.281491 1.172962 0.585376 0 0.350000 0.150000 -0.260000\n8\nfrq = 468.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.910000 -0.140000 -0.080000\nC 0.740517 -0.313761 -0.009645 0 -0.090000 0.040000 -0.070000\nC -0.699624 -0.600967 0.040392 0 -0.030000 -0.100000 0.020000\nO -1.493318 0.546670 -0.107340 0 0.130000 0.000000 -0.010000\nN 1.825745 0.092716 -0.017778 0 -0.110000 0.080000 0.040000\nH -0.951515 -1.269249 -0.782054 0 -0.120000 -0.140000 0.080000\nH -0.902120 -1.134658 0.974664 0 0.020000 -0.010000 0.080000\nH -1.281491 1.172962 0.585376 0 0.060000 -0.140000 0.140000\n8\nfrq = 632.00 cm-1 \nH 2.056104 1.696939 0.020700 0 -0.789998 -0.240000 0.000000\nC 0.740517 -0.313761 -0.009645 0 -0.200000 0.350000 -0.020000\nC -0.699624 -0.600967 0.040392 0 0.040000 -0.070000 0.020000\nO -1.493318 0.546670 -0.107340 0 0.160000 -0.040000 -0.010000\nN 1.825745 0.092716 -0.017778 0 -0.020000 -0.160000 0.010000\nH -0.951515 -1.269249 -0.782054 0 0.140000 -0.090000 0.010000\nH -0.902120 -1.134658 0.974664 0 0.130000 -0.080000 0.030000\nH -1.281491 1.172962 0.585376 0 0.150000 -0.120000 0.070000\n8\nfrq = 898.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.110000 -0.030000 0.000000\nC 0.740517 -0.313761 -0.009645 0 -0.140000 -0.130000 0.000000\nC -0.699624 -0.600967 0.040392 0 0.370000 0.250000 0.000000\nO -1.493318 0.546670 -0.107340 0 0.020000 -0.070000 0.010000\nN 1.825745 0.092716 -0.017778 0 -0.270000 -0.060000 0.010000\nH -0.951515 -1.269249 -0.782054 0 0.500000 0.270000 -0.060000\nH -0.902120 -1.134658 0.974664 0 0.430000 0.010000 -0.110000\nH -1.281491 1.172962 0.585376 0 -0.300000 0.190000 -0.130000\n8\nfrq = 994.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 -0.020000\nC 0.740517 -0.313761 -0.009645 0 0.010000 0.000000 -0.120000\nC -0.699624 -0.600967 0.040392 0 -0.050000 0.000000 0.180000\nO -1.493318 0.546670 -0.107340 0 0.030000 -0.030000 -0.030000\nN 1.825745 0.092716 -0.017778 0 0.020000 0.010000 0.030000\nH -0.951515 -1.269249 -0.782054 0 0.150000 0.500000 -0.300000\nH -0.902120 -1.134658 0.974664 0 -0.300000 -0.539999 -0.190000\nH -1.281491 1.172962 0.585376 0 -0.260000 0.250000 -0.190000\n8\nfrq = 1098.00 cm-1 \nH 2.056104 1.696939 0.020700 0 -0.010000 -0.010000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.020000 0.000000 0.050000\nC -0.699624 -0.600967 0.040392 0 -0.290000 0.400000 -0.120000\nO -1.493318 0.546670 -0.107340 0 0.230000 -0.350000 0.070000\nN 1.825745 0.092716 -0.017778 0 0.030000 0.010000 -0.010000\nH -0.951515 -1.269249 -0.782054 0 -0.470000 0.220000 0.070000\nH -0.902120 -1.134658 0.974664 0 -0.180000 0.460000 -0.030000\nH -1.281491 1.172962 0.585376 0 -0.100000 -0.010000 -0.170000\n8\nfrq = 1239.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.010000 0.060000\nC -0.699624 -0.600967 0.040392 0 0.020000 -0.060000 -0.040000\nO -1.493318 0.546670 -0.107340 0 0.020000 0.010000 0.010000\nN 1.825745 0.092716 -0.017778 0 0.000000 0.000000 -0.010000\nH -0.951515 -1.269249 -0.782054 0 -0.620000 0.150000 0.000000\nH -0.902120 -1.134658 0.974664 0 0.470000 -0.190000 0.000000\nH -1.281491 1.172962 0.585376 0 -0.390000 0.370000 -0.200000\n8\nfrq = 1374.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 -0.010000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.020000 -0.020000\nC -0.699624 -0.600967 0.040392 0 0.090000 -0.060000 -0.050000\nO -1.493318 0.546670 -0.107340 0 0.010000 -0.010000 0.050000\nN 1.825745 0.092716 -0.017778 0 0.000000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 -0.100000 -0.090000 0.030000\nH -0.902120 -1.134658 0.974664 0 -0.740001 0.400000 0.010000\nH -1.281491 1.172962 0.585376 0 -0.350000 0.340000 -0.160000\n8\nfrq = 1420.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.010000 0.010000\nC -0.699624 -0.600967 0.040392 0 0.110000 0.020000 0.040000\nO -1.493318 0.546670 -0.107340 0 -0.030000 -0.020000 -0.040000\nN 1.825745 0.092716 -0.017778 0 -0.010000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 -0.660000 0.400000 -0.020000\nH -0.902120 -1.134658 0.974664 0 -0.280000 0.020000 -0.040000\nH -1.281491 1.172962 0.585376 0 0.360000 -0.380000 0.170000\n8\nfrq = 1487.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.010000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.000000 0.000000\nC -0.699624 -0.600967 0.040392 0 0.030000 0.070000 -0.010000\nO -1.493318 0.546670 -0.107340 0 0.000000 0.010000 0.000000\nN 1.825745 0.092716 -0.017778 0 0.010000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 -0.160000 -0.490000 0.490000\nH -0.902120 -1.134658 0.974664 0 -0.210000 -0.550000 -0.390000\nH -1.281491 1.172962 0.585376 0 -0.010000 0.020000 -0.010000\n8\nfrq = 2246.00 cm-1 \nH 2.056104 1.696939 0.020700 0 -0.110000 -0.420000 -0.010000\nC 0.740517 -0.313761 -0.009645 0 0.679998 0.240000 -0.010000\nC -0.699624 -0.600967 0.040392 0 -0.080000 -0.020000 0.000000\nO -1.493318 0.546670 -0.107340 0 -0.010000 0.010000 0.000000\nN 1.825745 0.092716 -0.017778 0 -0.490000 -0.160000 0.000000\nH -0.951515 -1.269249 -0.782054 0 -0.060000 -0.030000 0.040000\nH -0.902120 -1.134658 0.974664 0 -0.050000 -0.040000 -0.030000\nH -1.281491 1.172962 0.585376 0 0.010000 0.000000 0.000000\n8\nfrq = 3048.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.000000 0.000000\nC -0.699624 -0.600967 0.040392 0 -0.020000 -0.050000 0.050000\nO -1.493318 0.546670 -0.107340 0 0.000000 0.000000 0.000000\nN 1.825745 0.092716 -0.017778 0 0.000000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 0.060000 0.160000 0.220000\nH -0.902120 -1.134658 0.974664 0 0.190000 0.450000 -0.820002\nH -1.281491 1.172962 0.585376 0 0.000000 0.000000 0.000000\n8\nfrq = 3130.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.000000 0.000000\nC -0.699624 -0.600967 0.040392 0 -0.010000 -0.040000 -0.080000\nO -1.493318 0.546670 -0.107340 0 0.000000 0.000000 0.000000\nN 1.825745 0.092716 -0.017778 0 0.000000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 0.230000 0.590001 0.730000\nH -0.902120 -1.134658 0.974664 0 -0.060000 -0.130000 0.210000\nH -1.281491 1.172962 0.585376 0 -0.010000 0.000000 -0.010000\n8\nfrq = 3907.00 cm-1 \nH 2.056104 1.696939 0.020700 0 0.000000 0.000000 0.000000\nC 0.740517 -0.313761 -0.009645 0 0.000000 0.000000 0.000000\nC -0.699624 -0.600967 0.040392 0 0.000000 0.000000 0.000000\nO -1.493318 0.546670 -0.107340 0 0.010000 0.040000 0.040000\nN 1.825745 0.092716 -0.017778 0 0.000000 0.000000 0.000000\nH -0.951515 -1.269249 -0.782054 0 0.000000 -0.010000 -0.010000\nH -0.902120 -1.134658 0.974664 0 0.000000 0.000000 0.000000\nH -1.281491 1.172962 0.585376 0 -0.210000 -0.660000 -0.719999\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = -2053.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.899998 0.310000 -0.290000\nC 0.748202 -0.230529 0.121307 0 -0.050000 0.030000 -0.010000\nC -0.565579 0.523209 0.116543 0 0.000000 0.010000 0.000000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.000000 0.000000\nN 1.928730 0.029692 -0.165664 0 -0.020000 -0.060000 0.030000\nH -0.663376 1.010620 1.093315 0 0.000000 0.010000 0.000000\nH -0.497835 1.298230 -0.649498 0 -0.030000 0.020000 -0.010000\nH -1.723052 -0.993253 0.440733 0 0.010000 0.000000 0.000000\n8\nfrq = 107.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.130000 0.320000 0.639998\nC 0.748202 -0.230529 0.121307 0 0.000000 0.090000 0.330000\nC -0.565579 0.523209 0.116543 0 -0.020000 0.040000 0.150000\nO -1.668007 -0.279031 -0.194287 0 0.110000 -0.030000 -0.160000\nN 1.928730 0.029692 -0.165664 0 -0.110000 -0.100000 -0.290000\nH -0.663376 1.010620 1.093315 0 -0.270000 -0.040000 0.160000\nH -0.497835 1.298230 -0.649498 0 0.090000 0.090000 0.210000\nH -1.723052 -0.993253 0.440733 0 -0.030000 -0.030000 -0.170000\n8\nfrq = 229.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.180000 0.090000 0.090000\nC 0.748202 -0.230529 0.121307 0 0.050000 -0.090000 0.020000\nC -0.565579 0.523209 0.116543 0 0.030000 -0.090000 0.010000\nO -1.668007 -0.279031 -0.194287 0 -0.030000 0.030000 -0.040000\nN 1.928730 0.029692 -0.165664 0 0.000000 0.090000 -0.020000\nH -0.663376 1.010620 1.093315 0 0.030000 -0.080000 0.010000\nH -0.497835 1.298230 -0.649498 0 0.110000 -0.080000 0.020000\nH -1.723052 -0.993253 0.440733 0 -0.649999 0.510000 0.450000\n8\nfrq = 280.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.200000 0.370000 0.719999\nC 0.748202 -0.230529 0.121307 0 0.010000 -0.090000 -0.040000\nC -0.565579 0.523209 0.116543 0 0.040000 -0.060000 -0.020000\nO -1.668007 -0.279031 -0.194287 0 -0.070000 0.070000 0.030000\nN 1.928730 0.029692 -0.165664 0 -0.010000 0.050000 0.000000\nH -0.663376 1.010620 1.093315 0 0.130000 -0.070000 -0.010000\nH -0.497835 1.298230 -0.649498 0 0.080000 -0.050000 -0.010000\nH -1.723052 -0.993253 0.440733 0 0.230000 -0.280000 -0.330000\n8\nfrq = 408.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.100000 0.290000 0.609998\nC 0.748202 -0.230529 0.121307 0 -0.040000 0.100000 -0.190000\nC -0.565579 0.523209 0.116543 0 -0.050000 0.050000 0.050000\nO -1.668007 -0.279031 -0.194287 0 0.040000 -0.060000 -0.010000\nN 1.928730 0.029692 -0.165664 0 0.070000 -0.100000 0.040000\nH -0.663376 1.010620 1.093315 0 0.000000 -0.200000 0.180000\nH -0.497835 1.298230 -0.649498 0 -0.270000 0.260000 0.240000\nH -1.723052 -0.993253 0.440733 0 -0.210000 0.230000 0.290000\n8\nfrq = 514.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.120000 0.050000 0.150000\nC 0.748202 -0.230529 0.121307 0 -0.290000 -0.260000 -0.140000\nC -0.565579 0.523209 0.116543 0 0.170000 0.120000 0.020000\nO -1.668007 -0.279031 -0.194287 0 0.380000 -0.030000 0.010000\nN 1.928730 0.029692 -0.165664 0 -0.380000 0.120000 0.060000\nH -0.663376 1.010620 1.093315 0 0.210000 0.230000 -0.020000\nH -0.497835 1.298230 -0.649498 0 0.330000 0.030000 -0.060000\nH -1.723052 -0.993253 0.440733 0 0.300000 0.220000 0.290000\n8\nfrq = 873.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.290000 0.080000 -0.100000\nC 0.748202 -0.230529 0.121307 0 -0.140000 0.320000 0.040000\nC -0.565579 0.523209 0.116543 0 0.270000 -0.290000 -0.120000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.040000 0.030000\nN 1.928730 0.029692 -0.165664 0 -0.110000 -0.040000 0.020000\nH -0.663376 1.010620 1.093315 0 0.490000 -0.529997 0.040000\nH -0.497835 1.298230 -0.649498 0 0.060000 0.020000 0.170000\nH -1.723052 -0.993253 0.440733 0 -0.170000 -0.020000 -0.050000\n8\nfrq = 938.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.060000 0.070000 0.020000\nC 0.748202 -0.230529 0.121307 0 -0.040000 0.080000 -0.090000\nC -0.565579 0.523209 0.116543 0 0.020000 -0.060000 0.160000\nO -1.668007 -0.279031 -0.194287 0 0.020000 0.010000 -0.020000\nN 1.928730 0.029692 -0.165664 0 0.020000 -0.020000 0.000000\nH -0.663376 1.010620 1.093315 0 -0.130000 0.560002 -0.170000\nH -0.497835 1.298230 -0.649498 0 0.220000 -0.539999 -0.310000\nH -1.723052 -0.993253 0.440733 0 -0.300000 -0.140000 -0.210000\n8\nfrq = 1116.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.020000 0.010000 0.000000\nC 0.748202 -0.230529 0.121307 0 -0.020000 0.020000 -0.020000\nC -0.565579 0.523209 0.116543 0 0.310000 0.200000 0.100000\nO -1.668007 -0.279031 -0.194287 0 -0.270000 -0.200000 -0.090000\nN 1.928730 0.029692 -0.165664 0 -0.010000 0.010000 0.000000\nH -0.663376 1.010620 1.093315 0 0.060000 0.150000 0.070000\nH -0.497835 1.298230 -0.649498 0 0.700001 0.180000 0.110000\nH -1.723052 -0.993253 0.440733 0 0.300000 0.060000 0.280000\n8\nfrq = 1204.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.010000 -0.030000 0.000000\nC 0.748202 -0.230529 0.121307 0 0.010000 -0.030000 0.030000\nC -0.565579 0.523209 0.116543 0 0.060000 0.080000 0.010000\nO -1.668007 -0.279031 -0.194287 0 -0.010000 -0.040000 -0.010000\nN 1.928730 0.029692 -0.165664 0 -0.020000 0.010000 0.000000\nH -0.663376 1.010620 1.093315 0 0.539999 0.150000 0.030000\nH -0.497835 1.298230 -0.649498 0 -0.609998 0.020000 -0.100000\nH -1.723052 -0.993253 0.440733 0 -0.430000 -0.200000 -0.250000\n8\nfrq = 1351.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.010000 -0.010000 0.010000\nC 0.748202 -0.230529 0.121307 0 0.000000 -0.020000 -0.010000\nC -0.565579 0.523209 0.116543 0 0.130000 0.010000 -0.030000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.010000 0.040000\nN 1.928730 0.029692 -0.165664 0 -0.010000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 -0.850002 -0.020000 -0.130000\nH -0.497835 1.298230 -0.649498 0 -0.310000 0.170000 0.080000\nH -1.723052 -0.993253 0.440733 0 -0.270000 -0.130000 -0.140000\n8\nfrq = 1402.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.000000 0.010000 -0.010000\nC 0.748202 -0.230529 0.121307 0 0.000000 0.010000 0.000000\nC -0.565579 0.523209 0.116543 0 -0.050000 0.070000 -0.060000\nO -1.668007 -0.279031 -0.194287 0 0.030000 -0.040000 0.060000\nN 1.928730 0.029692 -0.165664 0 0.010000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 0.060000 -0.190000 0.070000\nH -0.497835 1.298230 -0.649498 0 0.639998 0.140000 0.060000\nH -1.723052 -0.993253 0.440733 0 -0.569998 -0.280000 -0.290000\n8\nfrq = 1484.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.000000 0.000000 0.000000\nC 0.748202 -0.230529 0.121307 0 0.000000 0.010000 0.000000\nC -0.565579 0.523209 0.116543 0 0.020000 0.070000 0.020000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.010000 0.000000\nN 1.928730 0.029692 -0.165664 0 -0.010000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 -0.120000 -0.609998 0.320000\nH -0.497835 1.298230 -0.649498 0 -0.070000 -0.470000 -0.520000\nH -1.723052 -0.993253 0.440733 0 0.020000 0.020000 0.010000\n8\nfrq = 1819.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.220000 -0.220000 0.110000\nC 0.748202 -0.230529 0.121307 0 0.690000 0.170000 -0.180000\nC -0.565579 0.523209 0.116543 0 -0.050000 -0.010000 0.020000\nO -1.668007 -0.279031 -0.194287 0 -0.020000 0.000000 0.000000\nN 1.928730 0.029692 -0.165664 0 -0.539999 -0.130000 0.140000\nH -0.663376 1.010620 1.093315 0 -0.030000 0.100000 -0.060000\nH -0.497835 1.298230 -0.649498 0 0.100000 0.010000 0.040000\nH -1.723052 -0.993253 0.440733 0 -0.010000 0.000000 0.000000\n8\nfrq = 2595.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.390000 0.840000 -0.360000\nC 0.748202 -0.230529 0.121307 0 0.040000 -0.040000 0.010000\nC -0.565579 0.523209 0.116543 0 0.000000 0.000000 0.000000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.000000 0.000000\nN 1.928730 0.029692 -0.165664 0 0.000000 -0.030000 0.010000\nH -0.663376 1.010620 1.093315 0 -0.010000 0.000000 0.000000\nH -0.497835 1.298230 -0.649498 0 -0.010000 0.000000 0.010000\nH -1.723052 -0.993253 0.440733 0 0.000000 0.000000 0.000000\n8\nfrq = 3025.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.000000 0.010000 0.000000\nC 0.748202 -0.230529 0.121307 0 0.000000 0.000000 0.000000\nC -0.565579 0.523209 0.116543 0 0.010000 -0.050000 -0.050000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.000000 0.000000\nN 1.928730 0.029692 -0.165664 0 0.000000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 -0.100000 0.400000 0.829999\nH -0.497835 1.298230 -0.649498 0 0.030000 0.260000 -0.280000\nH -1.723052 -0.993253 0.440733 0 0.000000 0.000000 0.000000\n8\nfrq = 3101.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 -0.010000 0.010000 0.000000\nC 0.748202 -0.230529 0.121307 0 0.000000 0.000000 0.000000\nC -0.565579 0.523209 0.116543 0 -0.010000 -0.040000 0.080000\nO -1.668007 -0.279031 -0.194287 0 0.000000 0.000000 0.000000\nN 1.928730 0.029692 -0.165664 0 0.000000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 0.040000 -0.170000 -0.320000\nH -0.497835 1.298230 -0.649498 0 0.050000 0.660000 -0.649999\nH -1.723052 -0.993253 0.440733 0 0.010000 0.000000 0.010000\n8\nfrq = 3906.00 cm-1 \nH 1.631474 -1.047267 0.402290 0 0.000000 0.000000 0.000000\nC 0.748202 -0.230529 0.121307 0 0.000000 0.000000 0.000000\nC -0.565579 0.523209 0.116543 0 0.000000 0.000000 0.000000\nO -1.668007 -0.279031 -0.194287 0 0.010000 0.050000 -0.040000\nN 1.928730 0.029692 -0.165664 0 0.000000 0.000000 0.000000\nH -0.663376 1.010620 1.093315 0 0.000000 0.000000 0.000000\nH -0.497835 1.298230 -0.649498 0 0.000000 -0.010000 0.010000\nH -1.723052 -0.993253 0.440733 0 -0.070000 -0.749998 0.660000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = -2058.00 cm-1 \nH -1.234659 1.995482 0.000000 0 -0.010000 -0.070000 0.000000\nC 0.000000 0.558087 0.000000 0 0.060000 -0.040000 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.010000 -0.010000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.020000 -0.030000 0.000000\nN -0.240644 1.766305 0.000000 0 0.000000 0.010000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.000000 -0.010000 0.000000\nH -1.054522 -1.114388 -0.896347 0 0.000000 -0.010000 0.000000\nH 1.180525 -0.026710 0.000000 0 -0.190000 0.979999 0.000000\n8\nfrq = 189.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 -0.660000\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.320000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.030000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 -0.130000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 -0.140000\nH -1.054522 -1.114388 0.896347 0 0.030000 -0.200000 -0.010000\nH -1.054522 -1.114388 -0.896347 0 -0.030000 0.200000 -0.010000\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 0.590001\n8\nfrq = 435.00 cm-1 \nH -1.234659 1.995482 0.000000 0 -0.340000 -0.590001 0.000000\nC 0.000000 0.558087 0.000000 0 0.260000 0.070000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.080000 0.200000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.060000 -0.170000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.210000 -0.030000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.000000 0.340000 0.000000\nH -1.054522 -1.114388 -0.896347 0 0.000000 0.340000 0.000000\nH 1.180525 -0.026710 0.000000 0 0.240000 -0.220000 0.000000\n8\nfrq = 632.00 cm-1 \nH -1.234659 1.995482 0.000000 0 -0.050000 -0.749998 0.000000\nC 0.000000 0.558087 0.000000 0 0.220000 -0.200000 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.200000 0.070000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.060000 0.380000 0.000000\nN -0.240644 1.766305 0.000000 0 0.060000 -0.280000 0.000000\nH -1.054522 -1.114388 0.896347 0 -0.140000 0.060000 0.030000\nH -1.054522 -1.114388 -0.896347 0 -0.140000 0.060000 -0.030000\nH 1.180525 -0.026710 0.000000 0 0.110000 -0.090000 0.000000\n8\nfrq = 632.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.590001\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.090000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.020000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 0.020000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 -0.100000\nH -1.054522 -1.114388 0.896347 0 -0.170000 -0.370000 -0.220000\nH -1.054522 -1.114388 -0.896347 0 0.170000 0.370000 -0.220000\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 -0.460000\n8\nfrq = 922.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.210000 0.649999 0.000000\nC 0.000000 0.558087 0.000000 0 -0.130000 -0.100000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.060000 0.220000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.060000 -0.030000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.020000 -0.190000 0.000000\nH -1.054522 -1.114388 0.896347 0 -0.050000 0.440000 0.000000\nH -1.054522 -1.114388 -0.896347 0 -0.050000 0.440000 0.000000\nH 1.180525 -0.026710 0.000000 0 -0.020000 0.150000 0.000000\n8\nfrq = 968.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.700001\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.020000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 -0.060000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 0.000000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 -0.070000\nH -1.054522 -1.114388 0.896347 0 0.110000 0.210000 0.080000\nH -1.054522 -1.114388 -0.896347 0 -0.110000 -0.210000 0.080000\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 0.609998\n8\nfrq = 1017.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.110000 0.380000 0.000000\nC 0.000000 0.558087 0.000000 0 -0.010000 -0.010000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.520000 -0.110000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.440000 0.160000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.020000 -0.090000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.370000 -0.070000 -0.040000\nH -1.054522 -1.114388 -0.896347 0 0.370000 -0.070000 0.040000\nH 1.180525 -0.026710 0.000000 0 0.190000 0.100000 0.000000\n8\nfrq = 1062.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.040000\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 -0.160000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.160000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 -0.040000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 0.020000\nH -1.054522 -1.114388 0.896347 0 -0.310000 -0.380000 -0.160000\nH -1.054522 -1.114388 -0.896347 0 0.310000 0.380000 -0.160000\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 0.639998\n8\nfrq = 1129.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.160000 0.910000 0.000000\nC 0.000000 0.558087 0.000000 0 0.190000 0.050000 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.090000 -0.060000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.010000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.100000 -0.040000 0.000000\nH -1.054522 -1.114388 0.896347 0 -0.020000 -0.190000 0.000000\nH -1.054522 -1.114388 -0.896347 0 -0.020000 -0.190000 0.000000\nH 1.180525 -0.026710 0.000000 0 0.100000 -0.050000 0.000000\n8\nfrq = 1150.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.030000\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.040000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.060000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 -0.050000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 -0.010000\nH -1.054522 -1.114388 0.896347 0 -0.520000 0.460000 -0.100000\nH -1.054522 -1.114388 -0.896347 0 0.520000 -0.460000 -0.100000\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 -0.100000\n8\nfrq = 1306.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.010000 -0.040000 0.000000\nC 0.000000 0.558087 0.000000 0 -0.030000 -0.010000 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.030000 0.180000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.020000 -0.030000 0.000000\nN -0.240644 1.766305 0.000000 0 0.010000 -0.030000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.370000 -0.590001 -0.020000\nH -1.054522 -1.114388 -0.896347 0 0.370000 -0.590001 0.020000\nH 1.180525 -0.026710 0.000000 0 -0.020000 -0.020000 0.000000\n8\nfrq = 1496.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.020000 0.000000\nC 0.000000 0.558087 0.000000 0 0.000000 -0.010000 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.070000 -0.040000 0.000000\nO 0.855674 -1.311300 0.000000 0 -0.010000 0.000000 0.000000\nN -0.240644 1.766305 0.000000 0 0.000000 0.010000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.510000 0.240000 0.420000\nH -1.054522 -1.114388 -0.896347 0 0.510000 0.240000 -0.420000\nH 1.180525 -0.026710 0.000000 0 -0.010000 -0.020000 0.000000\n8\nfrq = 1866.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.170000 -0.370000 0.000000\nC 0.000000 0.558087 0.000000 0 -0.060000 0.609998 0.000000\nC -0.499617 -0.827042 0.000000 0 -0.030000 -0.090000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.010000 -0.030000 0.000000\nN -0.240644 1.766305 0.000000 0 0.090000 -0.400000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.000000 0.010000 0.070000\nH -1.054522 -1.114388 -0.896347 0 0.000000 0.010000 -0.070000\nH 1.180525 -0.026710 0.000000 0 -0.480000 0.210000 0.000000\n8\nfrq = 2009.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.040000 0.000000\nC 0.000000 0.558087 0.000000 0 0.050000 -0.030000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.030000 0.010000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.010000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.010000 0.020000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.020000 0.020000 -0.020000\nH -1.054522 -1.114388 -0.896347 0 0.020000 0.020000 0.020000\nH 1.180525 -0.026710 0.000000 0 -0.969998 -0.220000 0.000000\n8\nfrq = 3045.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.000000\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.060000 0.030000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 0.000000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 0.000000\nH -1.054522 -1.114388 0.896347 0 -0.340000 -0.180000 0.590001\nH -1.054522 -1.114388 -0.896347 0 -0.340000 -0.180000 -0.590001\nH 1.180525 -0.026710 0.000000 0 -0.010000 0.000000 0.000000\n8\nfrq = 3096.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.000000 0.000000 0.000000\nC 0.000000 0.558087 0.000000 0 0.000000 0.000000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.100000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 0.000000\nN -0.240644 1.766305 0.000000 0 0.000000 0.000000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.350000 0.200000 -0.569998\nH -1.054522 -1.114388 -0.896347 0 -0.350000 -0.200000 -0.569998\nH 1.180525 -0.026710 0.000000 0 0.000000 0.000000 0.010000\n8\nfrq = 3471.00 cm-1 \nH -1.234659 1.995482 0.000000 0 0.960002 -0.260000 0.000000\nC 0.000000 0.558087 0.000000 0 0.000000 -0.010000 0.000000\nC -0.499617 -0.827042 0.000000 0 0.000000 0.000000 0.000000\nO 0.855674 -1.311300 0.000000 0 0.000000 0.000000 0.000000\nN -0.240644 1.766305 0.000000 0 -0.070000 0.020000 0.000000\nH -1.054522 -1.114388 0.896347 0 0.000000 0.000000 0.000000\nH -1.054522 -1.114388 -0.896347 0 0.000000 0.000000 0.000000\nH 1.180525 -0.026710 0.000000 0 0.010000 -0.010000 0.000000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = -1749.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.030000 -0.030000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.020000 0.000000 0.000000\nC 0.000000 0.960544 0.000000 0 -0.010000 -0.020000 0.000000\nO -1.237513 0.273600 0.000000 0 0.010000 -0.050000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.010000 0.020000 0.000000\nH 0.110074 1.592671 0.888239 0 0.020000 -0.010000 -0.010000\nH 0.110074 1.592671 -0.888239 0 0.020000 -0.010000 0.010000\nH -0.727107 -0.973573 0.000000 0 -0.550000 0.829999 0.000000\n8\nfrq = 283.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 0.470000\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 0.180000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 -0.120000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.130000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 -0.160000\nH 0.110074 1.592671 0.888239 0 -0.070000 0.380000 -0.390000\nH 0.110074 1.592671 -0.888239 0 0.070000 -0.380000 -0.390000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 -0.290000\n8\nfrq = 674.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 -0.140000 -0.270000 0.000000\nC 0.959880 -0.170729 0.000000 0 -0.150000 0.090000 0.000000\nC 0.000000 0.960544 0.000000 0 0.050000 0.210000 0.000000\nO -1.237513 0.273600 0.000000 0 0.450000 -0.380000 0.000000\nN 0.371932 -1.291733 0.000000 0 -0.380000 0.190000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.180000 0.210000 0.030000\nH 0.110074 1.592671 -0.888239 0 -0.180000 0.210000 -0.030000\nH -0.727107 -0.973573 0.000000 0 -0.090000 -0.390000 0.000000\n8\nfrq = 729.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 0.600002\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 -0.070000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 -0.080000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.040000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.050000\nH 0.110074 1.592671 0.888239 0 0.190000 -0.320000 0.140000\nH 0.110074 1.592671 -0.888239 0 -0.190000 0.320000 0.140000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 -0.560002\n8\nfrq = 835.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.380000 -0.320000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.360000 0.040000 0.000000\nC 0.000000 0.960544 0.000000 0 0.120000 -0.300000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.200000 -0.080000 0.000000\nN 0.371932 -1.291733 0.000000 0 -0.210000 0.410000 0.000000\nH 0.110074 1.592671 0.888239 0 0.030000 -0.280000 -0.020000\nH 0.110074 1.592671 -0.888239 0 0.030000 -0.280000 0.020000\nH -0.727107 -0.973573 0.000000 0 0.040000 -0.310000 0.000000\n8\nfrq = 964.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.230000 -0.660000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.180000 -0.130000 0.000000\nC 0.000000 0.960544 0.000000 0 -0.020000 0.250000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.090000 -0.040000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.000000 -0.050000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.340000 0.280000 0.010000\nH 0.110074 1.592671 -0.888239 0 -0.340000 0.280000 -0.010000\nH -0.727107 -0.973573 0.000000 0 0.050000 0.020000 0.000000\n8\nfrq = 1014.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 -0.539999\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 0.020000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 0.030000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.010000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.050000\nH 0.110074 1.592671 0.888239 0 -0.170000 0.090000 -0.020000\nH 0.110074 1.592671 -0.888239 0 0.170000 -0.090000 -0.020000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 -0.800000\n8\nfrq = 1073.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 -0.520000\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 0.190000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 -0.190000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.040000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 -0.050000\nH 0.110074 1.592671 0.888239 0 -0.030000 -0.520000 0.200000\nH 0.110074 1.592671 -0.888239 0 0.030000 0.520000 0.200000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 0.170000\n8\nfrq = 1083.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 -0.150000 0.200000 0.000000\nC 0.959880 -0.170729 0.000000 0 -0.140000 0.040000 0.000000\nC 0.000000 0.960544 0.000000 0 0.330000 0.180000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.230000 -0.180000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.030000 0.000000 0.000000\nH 0.110074 1.592671 0.888239 0 0.579999 0.070000 0.020000\nH 0.110074 1.592671 -0.888239 0 0.579999 0.070000 -0.020000\nH -0.727107 -0.973573 0.000000 0 -0.010000 -0.020000 0.000000\n8\nfrq = 1176.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 0.200000\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 -0.070000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 -0.030000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.040000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.010000\nH 0.110074 1.592671 0.888239 0 -0.679998 -0.070000 0.080000\nH 0.110074 1.592671 -0.888239 0 0.679998 0.070000 0.080000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 0.110000\n8\nfrq = 1279.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.030000 0.899998 0.000000\nC 0.959880 -0.170729 0.000000 0 0.090000 -0.050000 0.000000\nC 0.000000 0.960544 0.000000 0 0.060000 0.020000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.010000 0.000000 0.000000\nN 0.371932 -1.291733 0.000000 0 -0.080000 -0.050000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.260000 0.090000 -0.010000\nH 0.110074 1.592671 -0.888239 0 -0.260000 0.090000 0.010000\nH -0.727107 -0.973573 0.000000 0 0.000000 0.050000 0.000000\n8\nfrq = 1365.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 -0.110000 -0.270000 0.000000\nC 0.959880 -0.170729 0.000000 0 -0.110000 0.050000 0.000000\nC 0.000000 0.960544 0.000000 0 0.190000 -0.090000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.010000 0.030000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.050000 0.010000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.649999 0.040000 -0.010000\nH 0.110074 1.592671 -0.888239 0 -0.649999 0.040000 0.010000\nH -0.727107 -0.973573 0.000000 0 -0.030000 0.070000 0.000000\n8\nfrq = 1491.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.030000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.000000 -0.010000 0.000000\nC 0.000000 0.960544 0.000000 0 0.010000 0.080000 0.000000\nO -1.237513 0.273600 0.000000 0 0.000000 0.010000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.010000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.100000 -0.550000 0.430000\nH 0.110074 1.592671 -0.888239 0 -0.100000 -0.550000 -0.430000\nH -0.727107 -0.973573 0.000000 0 0.010000 0.040000 0.000000\n8\nfrq = 1719.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.310000 -0.470000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.200000 0.600002 0.000000\nC 0.000000 0.960544 0.000000 0 0.040000 -0.040000 0.000000\nO -1.237513 0.273600 0.000000 0 -0.030000 -0.010000 0.000000\nN 0.371932 -1.291733 0.000000 0 -0.200000 -0.420000 0.000000\nH 0.110074 1.592671 0.888239 0 0.060000 -0.110000 0.050000\nH 0.110074 1.592671 -0.888239 0 0.060000 -0.110000 -0.050000\nH -0.727107 -0.973573 0.000000 0 -0.170000 -0.030000 0.000000\n8\nfrq = 2085.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.020000 0.050000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.010000 -0.010000 0.000000\nC 0.000000 0.960544 0.000000 0 0.010000 0.020000 0.000000\nO -1.237513 0.273600 0.000000 0 0.000000 0.020000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.040000 0.000000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.010000 0.010000 0.020000\nH 0.110074 1.592671 -0.888239 0 -0.010000 0.010000 -0.020000\nH -0.727107 -0.973573 0.000000 0 -0.840000 -0.539999 0.000000\n8\nfrq = 3022.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 -0.040000 -0.010000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 0.000000\nC 0.000000 0.960544 0.000000 0 -0.010000 -0.070000 0.000000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.000000\nH 0.110074 1.592671 0.888239 0 0.060000 0.390000 0.579999\nH 0.110074 1.592671 -0.888239 0 0.060000 0.390000 -0.579999\nH -0.727107 -0.973573 0.000000 0 0.010000 0.000000 0.000000\n8\nfrq = 3059.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.000000 0.000000 0.000000\nC 0.959880 -0.170729 0.000000 0 0.000000 0.000000 0.000000\nC 0.000000 0.960544 0.000000 0 0.000000 0.000000 0.090000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.000000\nH 0.110074 1.592671 0.888239 0 -0.060000 -0.420000 -0.569998\nH 0.110074 1.592671 -0.888239 0 0.060000 0.420000 -0.569998\nH -0.727107 -0.973573 0.000000 0 0.000000 0.000000 0.000000\n8\nfrq = 3162.00 cm-1 \nH 2.044262 -0.097336 0.000000 0 0.990001 0.070000 0.000000\nC 0.959880 -0.170729 0.000000 0 -0.090000 -0.010000 0.000000\nC 0.000000 0.960544 0.000000 0 0.000000 -0.010000 0.000000\nO -1.237513 0.273600 0.000000 0 0.000000 0.000000 0.000000\nN 0.371932 -1.291733 0.000000 0 0.000000 0.000000 0.000000\nH 0.110074 1.592671 0.888239 0 0.000000 0.020000 0.020000\nH 0.110074 1.592671 -0.888239 0 0.000000 0.020000 -0.020000\nH -0.727107 -0.973573 0.000000 0 0.010000 0.000000 0.000000\nend 'model FRQS'","load data 'model FRQS'\n8\nfrq = -847.00 cm-1 \nH -1.493598 1.869746 0.069157 0 -0.340000 0.930003 0.040000\nC -0.806409 0.124404 -0.009840 0 0.060000 -0.140000 -0.010000\nC 0.604812 0.587634 0.021326 0 -0.020000 0.010000 0.000000\nO 1.512227 -0.467818 -0.096242 0 0.000000 0.010000 0.000000\nN -1.757172 -0.535337 -0.016105 0 -0.010000 0.040000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.020000 0.010000 0.000000\nH 0.744956 1.171540 0.936259 0 -0.020000 0.010000 0.000000\nH 1.391989 -1.077036 0.632630 0 -0.010000 0.000000 -0.010000\n8\nfrq = 164.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.020000 -0.040000 0.880001\nC -0.806409 0.124404 -0.009840 0 0.000000 -0.010000 0.030000\nC 0.604812 0.587634 0.021326 0 0.000000 0.000000 -0.090000\nO 1.512227 -0.467818 -0.096242 0 0.000000 -0.010000 0.050000\nN -1.757172 -0.535337 -0.016105 0 -0.010000 0.000000 -0.050000\nH 0.768620 1.253427 -0.824292 0 -0.050000 -0.140000 -0.220000\nH 0.744956 1.171540 0.936259 0 0.050000 0.160000 -0.200000\nH 1.391989 -1.077036 0.632630 0 0.090000 0.160000 0.200000\n8\nfrq = 247.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.260000 -0.170000 -0.180000\nC -0.806409 0.124404 -0.009840 0 -0.040000 -0.120000 0.020000\nC 0.604812 0.587634 0.021326 0 -0.010000 -0.100000 0.020000\nO 1.512227 -0.467818 -0.096242 0 0.170000 0.060000 -0.030000\nN -1.757172 -0.535337 -0.016105 0 -0.210000 0.120000 -0.020000\nH 0.768620 1.253427 -0.824292 0 -0.120000 -0.050000 0.040000\nH 0.744956 1.171540 0.936259 0 -0.060000 -0.100000 0.030000\nH 1.391989 -1.077036 0.632630 0 0.730000 0.340000 0.290000\n8\nfrq = 320.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.140000 -0.120000 0.280000\nC -0.806409 0.124404 -0.009840 0 -0.010000 -0.050000 -0.120000\nC 0.604812 0.587634 0.021326 0 -0.010000 -0.030000 -0.040000\nO 1.512227 -0.467818 -0.096242 0 0.120000 0.070000 0.060000\nN -1.757172 -0.535337 -0.016105 0 -0.080000 0.040000 0.080000\nH 0.768620 1.253427 -0.824292 0 0.040000 0.000000 0.000000\nH 0.744956 1.171540 0.936259 0 -0.160000 -0.050000 0.000000\nH 1.391989 -1.077036 0.632630 0 -0.569998 -0.480000 -0.500000\n8\nfrq = 405.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.050000 -0.030000 -0.370000\nC -0.806409 0.124404 -0.009840 0 0.010000 -0.030000 0.290000\nC 0.604812 0.587634 0.021326 0 0.000000 0.000000 -0.030000\nO 1.512227 -0.467818 -0.096242 0 0.040000 0.030000 0.000000\nN -1.757172 -0.535337 -0.016105 0 -0.030000 0.020000 -0.140000\nH 0.768620 1.253427 -0.824292 0 -0.270000 -0.250000 -0.290000\nH 0.744956 1.171540 0.936259 0 0.230000 0.280000 -0.250000\nH 1.391989 -1.077036 0.632630 0 -0.360000 -0.300000 -0.340000\n8\nfrq = 495.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.930003 0.350000 0.000000\nC -0.806409 0.124404 -0.009840 0 -0.010000 -0.010000 0.000000\nC 0.604812 0.587634 0.021326 0 -0.030000 0.010000 0.000000\nO 1.512227 -0.467818 -0.096242 0 -0.030000 0.020000 0.000000\nN -1.757172 -0.535337 -0.016105 0 0.020000 -0.050000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.040000 0.010000 0.000000\nH 0.744956 1.171540 0.936259 0 -0.040000 0.010000 0.000000\nH 1.391989 -1.077036 0.632630 0 -0.020000 0.030000 0.010000\n8\nfrq = 625.00 cm-1 \nH -1.493598 1.869746 0.069157 0 -0.260000 0.749998 0.030000\nC -0.806409 0.124404 -0.009840 0 -0.270000 0.300000 0.020000\nC 0.604812 0.587634 0.021326 0 -0.010000 -0.130000 -0.020000\nO 1.512227 -0.467818 -0.096242 0 0.200000 -0.030000 0.010000\nN -1.757172 -0.535337 -0.016105 0 0.010000 -0.130000 -0.010000\nH 0.768620 1.253427 -0.824292 0 0.060000 -0.150000 -0.010000\nH 0.744956 1.171540 0.936259 0 0.060000 -0.120000 -0.040000\nH 1.391989 -1.077036 0.632630 0 0.230000 -0.140000 -0.080000\n8\nfrq = 883.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.030000 0.090000 -0.010000\nC -0.806409 0.124404 -0.009840 0 -0.170000 -0.090000 0.010000\nC 0.604812 0.587634 0.021326 0 0.360000 0.290000 -0.010000\nO 1.512227 -0.467818 -0.096242 0 0.020000 -0.060000 -0.010000\nN -1.757172 -0.535337 -0.016105 0 -0.230000 -0.150000 -0.010000\nH 0.768620 1.253427 -0.824292 0 0.490000 0.310000 0.040000\nH 0.744956 1.171540 0.936259 0 0.440000 0.070000 0.110000\nH 1.391989 -1.077036 0.632630 0 -0.290000 0.150000 0.120000\n8\nfrq = 996.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.000000 0.010000 0.040000\nC -0.806409 0.124404 -0.009840 0 -0.010000 0.000000 -0.110000\nC 0.604812 0.587634 0.021326 0 0.040000 0.010000 0.180000\nO 1.512227 -0.467818 -0.096242 0 -0.030000 0.020000 -0.030000\nN -1.757172 -0.535337 -0.016105 0 -0.020000 -0.010000 0.020000\nH 0.768620 1.253427 -0.824292 0 -0.100000 -0.520000 -0.280000\nH 0.744956 1.171540 0.936259 0 0.230000 0.560002 -0.210000\nH 1.391989 -1.077036 0.632630 0 0.290000 -0.230000 -0.190000\n8\nfrq = 1120.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.110000 -0.090000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.010000 0.000000 -0.040000\nC 0.604812 0.587634 0.021326 0 -0.310000 0.350000 0.100000\nO 1.512227 -0.467818 -0.096242 0 0.250000 -0.310000 -0.060000\nN -1.757172 -0.535337 -0.016105 0 0.020000 0.020000 0.010000\nH 0.768620 1.253427 -0.824292 0 -0.520000 0.200000 -0.050000\nH 0.744956 1.171540 0.936259 0 -0.190000 0.430000 0.010000\nH 1.391989 -1.077036 0.632630 0 -0.150000 0.030000 0.190000\n8\nfrq = 1244.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.010000 -0.020000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.000000 -0.010000 0.060000\nC 0.604812 0.587634 0.021326 0 -0.030000 0.060000 -0.040000\nO 1.512227 -0.467818 -0.096242 0 -0.010000 -0.020000 0.010000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 -0.010000\nH 0.768620 1.253427 -0.824292 0 0.620000 -0.070000 0.000000\nH 0.744956 1.171540 0.936259 0 -0.500000 0.130000 0.000000\nH 1.391989 -1.077036 0.632630 0 0.420000 -0.330000 -0.190000\n8\nfrq = 1380.00 cm-1 \nH -1.493598 1.869746 0.069157 0 -0.020000 0.040000 0.000000\nC -0.806409 0.124404 -0.009840 0 -0.010000 0.020000 0.020000\nC 0.604812 0.587634 0.021326 0 0.100000 -0.050000 0.050000\nO 1.512227 -0.467818 -0.096242 0 0.010000 0.000000 -0.050000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.100000 -0.120000 -0.040000\nH 0.744956 1.171540 0.936259 0 -0.780002 0.290000 -0.010000\nH 1.391989 -1.077036 0.632630 0 -0.370000 0.300000 0.150000\n8\nfrq = 1420.00 cm-1 \nH -1.493598 1.869746 0.069157 0 -0.010000 0.030000 0.000000\nC -0.806409 0.124404 -0.009840 0 -0.010000 0.010000 -0.010000\nC 0.604812 0.587634 0.021326 0 0.100000 0.030000 -0.050000\nO 1.512227 -0.467818 -0.096242 0 -0.030000 -0.020000 0.050000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.710002 0.300000 0.000000\nH 0.744956 1.171540 0.936259 0 -0.280000 -0.040000 0.050000\nH 1.391989 -1.077036 0.632630 0 0.390000 -0.340000 -0.160000\n8\nfrq = 1490.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.000000 0.000000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.000000 0.000000 0.000000\nC 0.604812 0.587634 0.021326 0 0.010000 0.070000 0.010000\nO 1.512227 -0.467818 -0.096242 0 0.000000 0.010000 0.000000\nN -1.757172 -0.535337 -0.016105 0 0.010000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.090000 -0.529997 -0.470000\nH 0.744956 1.171540 0.936259 0 -0.120000 -0.560002 0.400000\nH 1.391989 -1.077036 0.632630 0 -0.010000 0.020000 0.010000\n8\nfrq = 2265.00 cm-1 \nH -1.493598 1.869746 0.069157 0 -0.100000 0.260000 0.010000\nC -0.806409 0.124404 -0.009840 0 0.649999 0.380000 0.000000\nC 0.604812 0.587634 0.021326 0 -0.080000 -0.030000 0.000000\nO 1.512227 -0.467818 -0.096242 0 -0.010000 0.000000 0.000000\nN -1.757172 -0.535337 -0.016105 0 -0.470000 -0.320000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.060000 -0.040000 -0.040000\nH 0.744956 1.171540 0.936259 0 -0.060000 -0.050000 0.040000\nH 1.391989 -1.077036 0.632630 0 0.010000 0.010000 0.010000\n8\nfrq = 3051.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.000000 0.000000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.000000 0.000000 0.000000\nC 0.604812 0.587634 0.021326 0 -0.020000 -0.050000 -0.050000\nO 1.512227 -0.467818 -0.096242 0 0.000000 0.000000 0.000000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 0.040000 0.160000 -0.230000\nH 0.744956 1.171540 0.936259 0 0.140000 0.490000 0.810001\nH 1.391989 -1.077036 0.632630 0 0.000000 0.000000 0.000000\n8\nfrq = 3136.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.000000 0.000000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.000000 0.000000 0.000000\nC 0.604812 0.587634 0.021326 0 0.010000 0.040000 -0.080000\nO 1.512227 -0.467818 -0.096242 0 0.000000 0.000000 0.000000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 -0.160000 -0.579999 0.749998\nH 0.744956 1.171540 0.936259 0 0.040000 0.140000 0.210000\nH 1.391989 -1.077036 0.632630 0 0.010000 0.000000 -0.010000\n8\nfrq = 3908.00 cm-1 \nH -1.493598 1.869746 0.069157 0 0.000000 0.000000 0.000000\nC -0.806409 0.124404 -0.009840 0 0.000000 0.000000 0.000000\nC 0.604812 0.587634 0.021326 0 0.000000 0.000000 0.000000\nO 1.512227 -0.467818 -0.096242 0 -0.010000 -0.040000 0.050000\nN -1.757172 -0.535337 -0.016105 0 0.000000 0.000000 0.000000\nH 0.768620 1.253427 -0.824292 0 0.000000 0.010000 -0.010000\nH 0.744956 1.171540 0.936259 0 0.000000 0.000000 0.000000\nH 1.391989 -1.077036 0.632630 0 0.110000 0.639998 -0.749998\nend 'model FRQS'"],"zpe":[35.19391,33.42497,null,32.77792,34.80997,34.91567,35.76276,33.09431]},"selected":{"id":"1152"},"selection_policy":{"id":"1327"}},"id":"1039","type":"ColumnDataSource"},{"attributes":{"source":{"id":"1229"}},"id":"1232","type":"CDSView"},{"attributes":{"high":44.98843404115178,"low":0.0,"palette":["#440154","#440255","#440357","#450558","#45065A","#45085B","#46095C","#460B5E","#460C5F","#460E61","#470F62","#471163","#471265","#471466","#471567","#471669","#47186A","#48196B","#481A6C","#481C6E","#481D6F","#481E70","#482071","#482172","#482273","#482374","#472575","#472676","#472777","#472878","#472A79","#472B7A","#472C7B","#462D7C","#462F7C","#46307D","#46317E","#45327F","#45347F","#453580","#453681","#443781","#443982","#433A83","#433B83","#433C84","#423D84","#423E85","#424085","#414186","#414286","#404387","#404487","#3F4587","#3F4788","#3E4888","#3E4989","#3D4A89","#3D4B89","#3D4C89","#3C4D8A","#3C4E8A","#3B508A","#3B518A","#3A528B","#3A538B","#39548B","#39558B","#38568B","#38578C","#37588C","#37598C","#365A8C","#365B8C","#355C8C","#355D8C","#345E8D","#345F8D","#33608D","#33618D","#32628D","#32638D","#31648D","#31658D","#31668D","#30678D","#30688D","#2F698D","#2F6A8D","#2E6B8E","#2E6C8E","#2E6D8E","#2D6E8E","#2D6F8E","#2C708E","#2C718E","#2C728E","#2B738E","#2B748E","#2A758E","#2A768E","#2A778E","#29788E","#29798E","#287A8E","#287A8E","#287B8E","#277C8E","#277D8E","#277E8E","#267F8E","#26808E","#26818E","#25828E","#25838D","#24848D","#24858D","#24868D","#23878D","#23888D","#23898D","#22898D","#228A8D","#228B8D","#218C8D","#218D8C","#218E8C","#208F8C","#20908C","#20918C","#1F928C","#1F938B","#1F948B","#1F958B","#1F968B","#1E978A","#1E988A","#1E998A","#1E998A","#1E9A89","#1E9B89","#1E9C89","#1E9D88","#1E9E88","#1E9F88","#1EA087","#1FA187","#1FA286","#1FA386","#20A485","#20A585","#21A685","#21A784","#22A784","#23A883","#23A982","#24AA82","#25AB81","#26AC81","#27AD80","#28AE7F","#29AF7F","#2AB07E","#2BB17D","#2CB17D","#2EB27C","#2FB37B","#30B47A","#32B57A","#33B679","#35B778","#36B877","#38B976","#39B976","#3BBA75","#3DBB74","#3EBC73","#40BD72","#42BE71","#44BE70","#45BF6F","#47C06E","#49C16D","#4BC26C","#4DC26B","#4FC369","#51C468","#53C567","#55C666","#57C665","#59C764","#5BC862","#5EC961","#60C960","#62CA5F","#64CB5D","#67CC5C","#69CC5B","#6BCD59","#6DCE58","#70CE56","#72CF55","#74D054","#77D052","#79D151","#7CD24F","#7ED24E","#81D34C","#83D34B","#86D449","#88D547","#8BD546","#8DD644","#90D643","#92D741","#95D73F","#97D83E","#9AD83C","#9DD93A","#9FD938","#A2DA37","#A5DA35","#A7DB33","#AADB32","#ADDC30","#AFDC2E","#B2DD2C","#B5DD2B","#B7DD29","#BADE27","#BDDE26","#BFDF24","#C2DF22","#C5DF21","#C7E01F","#CAE01E","#CDE01D","#CFE11C","#D2E11B","#D4E11A","#D7E219","#DAE218","#DCE218","#DFE318","#E1E318","#E4E318","#E7E419","#E9E419","#ECE41A","#EEE51B","#F1E51C","#F3E51E","#F6E61F","#F8E621","#FAE622","#FDE724"]},"id":"1051","type":"LinearColorMapper"},{"attributes":{"graph_layout":{"MIN29":[-0.3937632395229011,0.5901506441388663],"MIN39":[-0.0008795435540519421,0.25469441670862697],"MIN50":[-0.2150059703365059,-0.23607041747445476],"MIN82":[0.4350392259576192,-0.26611508314312504],"PR156":[1.0,-0.6132480197828973],"PR9":[-0.8253904725441603,0.27058845955298383]}},"id":"1046","type":"StaticLayoutProvider"},{"attributes":{"data":{"elab":["45.0","37.2","85.0","13.2","29.7","0.0","34.5","28.9"],"lab":["PR156","MIN82","TS233","MIN50","TS68","MIN29","TS85","PR9"],"x":{"__ndarray__":"AAAAAAAA4D8AAAAAAAAEQAAAAAAAABJAAAAAAAAAGkAAAAAAAAAhQAAAAAAAACVAAAAAAAAAKUAAAAAAAAAtQA==","dtype":"float64","order":"little","shape":[8]},"y":[44.98843404115178,37.192227805178845,85.04921675512742,13.205727827706141,29.66137923800852,0.0,34.50326257312554,28.89100169511221]},"selected":{"id":"1304"},"selection_policy":{"id":"1303"}},"id":"1233","type":"ColumnDataSource"},{"attributes":{"line_alpha":0.1,"line_color":"#1f77b4","x":{"field":"x"},"y":{"field":"y"}},"id":"1196","type":"Line"}],"root_ids":["1159"]},"title":"Bokeh Application","version":"2.3.3"}}
 +
        </script>
 +
        <script type="text/javascript">
 +
          (function() {
 +
            var fn = function() {
 +
              Bokeh.safely(function() {
 +
                (function(root) {
 +
                  function embed_document(root) {
 +
                   
 +
                  var docs_json = document.getElementById('1879').textContent;
 +
                  var render_items = [{"docid":"0813be0d-b8ed-4696-9f83-a00f8b4b1d1b","root_ids":["1159"],"roots":{"1159":"b332ad9a-2bcf-4e95-827a-4ae6ec305b24"}}];
 +
                  root.Bokeh.embed.embed_items(docs_json, render_items);
 +
               
 +
                  }
 +
                  if (root.Bokeh !== undefined) {
 +
                    embed_document(root);
 +
                  } else {
 +
                    var attempts = 0;
 +
                    var timer = setInterval(function(root) {
 +
                      if (root.Bokeh !== undefined) {
 +
                        clearInterval(timer);
 +
                        embed_document(root);
 +
                      } else {
 +
                        attempts++;
 +
                        if (attempts > 100) {
 +
                          clearInterval(timer);
 +
                          console.log("Bokeh: ERROR: Unable to run BokehJS code because BokehJS library is missing");
 +
                        }
 +
                      }
 +
                    }, 10, root)
 +
                  }
 +
                })(window);
 +
              });
 +
            };
 +
            if (document.readyState != "loading") fn();
 +
            else document.addEventListener("DOMContentLoaded", fn);
 +
          })();
 +
        </script>
 +
   
 +
  </body>
 +
 
 +
</html>
 +
 +
 +
 +
 +
  
  
 
Return to [[Main_Page]]
 
Return to [[Main_Page]]

Revision as of 09:20, 29 May 2023

Phase diagram of an ideal solution at fixed temperature

The following plot shows the vapor-liquid phase diagram for a binary ideal mixture (components: A and B). The vapor pressures of the pure substances are [math]p_A^*[/math] and [math]p_B^*[/math], respectively.

The blue curve shows the vapor pressure [math]p[/math] of the mixture as a function of the mole fraction of A in the liquid [math]x_A^l[/math]:

[math]p=p_B^*+(p_A^*-p_B^*)x_A^l[/math]

The red curve shows the vapor pressure [math]p[/math] of the mixture as a function of the mole fraction of A in the vapor [math]x_A^v[/math]:

[math]p=\dfrac{p_A^*p_B^*}{p_A^*-(p_A^*-p_B^*)x_A^v}[/math]

In the example below [math]p_A^*=1[/math] (a.u.) and the value of [math]p_B^*[/math] can be changed moving the slider below.


slider.py example


The number of moles in each phase (liquid or vapor) can be obtained from the lever rule:

[math]n^l\overline{\text{BK}}=n^v\overline{\text{KR}}[/math]


slider.py example






Reaction network visualization




Return to Main_Page