├── .github └── FUNDING.yml ├── .gitignore ├── .htaccess ├── COPYING ├── ChemDoodle ├── ChemDoodleWeb-libs.js ├── install │ ├── ChemDoodleWeb.css │ ├── ChemDoodleWeb.js │ └── uis │ │ ├── ChemDoodleWeb-uis.js │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ ├── ui-icons_3383bb_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_70b2e1_256x240.png │ │ ├── ui-icons_999999_256x240.png │ │ └── ui-icons_fbc856_256x240.png │ │ └── jquery-ui-1.11.4.css ├── jsp │ └── sketcher.jsp ├── php │ └── sketcher.php └── sketcher │ ├── ChemDoodleWeb-sketcher.js │ ├── icons │ ├── AmbiguousDoubleBond.png │ ├── Benzene.png │ ├── Bromine.png │ ├── Carbon.png │ ├── Chlorine.png │ ├── Cyclobutane.png │ ├── Cycloheptane.png │ ├── Cyclohexane.png │ ├── Cyclooctane.png │ ├── Cyclopentane.png │ ├── Cyclopropane.png │ ├── DecreaseCharge.png │ ├── DoubleBond.png │ ├── Fluorine.png │ ├── Hydrogen.png │ ├── IncreaseCharge.png │ ├── Iodine.png │ ├── Nitrogen.png │ ├── Oxygen.png │ ├── Phosphorus.png │ ├── ProtrudingBond.png │ ├── RecessedBond.png │ ├── SingleBond.png │ ├── Sulfur.png │ ├── TripleBond.png │ ├── arrowDown.png │ ├── calculate20.png │ ├── clear20.png │ ├── erase20.png │ ├── move20.png │ ├── open20.png │ ├── optimize20.png │ ├── periodicTable20.png │ ├── redo20.png │ ├── save20.png │ ├── search20.png │ ├── undo20.png │ ├── zoomIn20.png │ └── zoomOut20.png │ ├── images │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_0_eeeeee_40x100.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_flat_55_c0402a_40x100.png │ ├── ui-bg_flat_55_eeeeee_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_35_dddddd_1x400.png │ ├── ui-bg_glass_60_eeeeee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-bg_inset-hard_75_999999_1x100.png │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_3383bb_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_70b2e1_256x240.png │ ├── ui-icons_999999_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_fbc856_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.8.7.custom.css │ ├── jquery-ui-1.8.7.custom.min.js │ └── smallIcons │ ├── AmbiguousDoubleBond.png │ ├── Benzene.png │ ├── Bromine.png │ ├── Carbon.png │ ├── Chlorine.png │ ├── Cyclobutane.png │ ├── Cycloheptane.png │ ├── Cyclohexane.png │ ├── Cyclooctane.png │ ├── Cyclopentane.png │ ├── Cyclopropane.png │ ├── DecreaseCharge.png │ ├── DoubleBond.png │ ├── Fluorine.png │ ├── Hydrogen.png │ ├── IncreaseCharge.png │ ├── Iodine.png │ ├── Nitrogen.png │ ├── Oxygen.png │ ├── Phosphorus.png │ ├── ProtrudingBond.png │ ├── RecessedBond.png │ ├── SingleBond.png │ ├── Sulfur.png │ ├── TripleBond.png │ ├── arrowDown.png │ ├── calculate20.png │ ├── clear20.png │ ├── erase20.png │ ├── move20.png │ ├── open20.png │ ├── optimize20.png │ ├── periodicTable20.png │ ├── redo20.png │ ├── save20.png │ ├── search20.png │ ├── undo20.png │ ├── zoomIn20.png │ └── zoomOut20.png ├── FPDF ├── font │ ├── courier.php │ ├── courierb.php │ ├── courierbi.php │ ├── courieri.php │ ├── helvetica.php │ ├── helveticab.php │ ├── helveticabi.php │ ├── helveticai.php │ ├── symbol.php │ ├── times.php │ ├── timesb.php │ ├── timesbi.php │ ├── timesi.php │ └── zapfdingbats.php ├── fpdf.css ├── fpdf.php ├── html_table.php ├── htmlparser.inc ├── license.txt ├── makefont │ ├── cp1250.map │ ├── cp1251.map │ ├── cp1252.map │ ├── cp1253.map │ ├── cp1254.map │ ├── cp1255.map │ ├── cp1257.map │ ├── cp1258.map │ ├── cp874.map │ ├── iso-8859-1.map │ ├── iso-8859-11.map │ ├── iso-8859-15.map │ ├── iso-8859-16.map │ ├── iso-8859-2.map │ ├── iso-8859-4.map │ ├── iso-8859-5.map │ ├── iso-8859-7.map │ ├── iso-8859-9.map │ ├── koi8-r.map │ ├── koi8-u.map │ ├── makefont.php │ └── ttfparser.php └── mem_image.php ├── File ├── Archive.php └── Archive │ ├── Predicate.php │ ├── Predicate │ ├── And.php │ ├── Current.php │ ├── Custom.php │ ├── Duplicate.php │ ├── Ereg.php │ ├── Eregi.php │ ├── Extension.php │ ├── False.php │ ├── Index.php │ ├── MIME.php │ ├── MaxDepth.php │ ├── MinSize.php │ ├── MinTime.php │ ├── Not.php │ ├── Or.php │ ├── Preg.php │ └── True.php │ ├── Reader.php │ ├── Reader │ ├── Ar.php │ ├── Archive.php │ ├── Bzip2.php │ ├── Cab.php │ ├── Cache.php │ ├── ChangeName.php │ ├── ChangeName │ │ ├── AddDirectory.php │ │ ├── Callback.php │ │ └── Directory.php │ ├── Concat.php │ ├── Directory.php │ ├── File.php │ ├── Filter.php │ ├── Gzip.php │ ├── Memory.php │ ├── MimeList.php │ ├── Multi.php │ ├── Rar.php │ ├── Relay.php │ ├── Select.php │ ├── Tar.php │ ├── Uncompress.php │ └── Zip.php │ ├── Writer.php │ └── Writer │ ├── AddBaseName.php │ ├── Ar.php │ ├── Archive.php │ ├── Bzip2.php │ ├── Files.php │ ├── Gzip.php │ ├── Mail.php │ ├── Memory.php │ ├── MemoryArchive.php │ ├── Multi.php │ ├── Output.php │ ├── Tar.php │ ├── UniqueAppender.php │ └── Zip.php ├── HTTP ├── Request2.php └── Request2 │ ├── Adapter.php │ ├── Adapter │ ├── Curl.php │ ├── Mock.php │ └── Socket.php │ ├── ConnectionException.php │ ├── CookieJar.php │ ├── Exception.php │ ├── LogicException.php │ ├── MessageException.php │ ├── MultipartBody.php │ ├── NotImplementedException.php │ ├── Observer │ ├── Log.php │ └── UncompressingDownload.php │ ├── Response.php │ ├── SOCKS5.php │ └── SocketWrapper.php ├── INSTALL ├── INSTALL.html ├── install.css ├── install.js ├── install_open_enventory.sh └── jquery-1.8.3.min.js ├── JChemPaint ├── jchempaint-applet-Jama.jar ├── jchempaint-applet-com_ozten.jar ├── jchempaint-applet-core.jar ├── jchempaint-applet-editor-opts.jar ├── jchempaint-applet-editor.jar ├── jchempaint-applet-jas.jar ├── jchempaint-applet-javax_vecmath.jar ├── jchempaint-applet-nu.jar ├── jchempaint-applet-org.jar ├── jchempaint-applet-org_3pq.jar ├── jchempaint-applet-org_apache.jar ├── jchempaint-applet-org_jaxen.jar ├── jchempaint-applet-org_openscience.jar ├── jchempaint-applet-org_openscience_cdk.jar ├── jchempaint-applet-org_openscience_cdk_config.jar ├── jchempaint-applet-org_openscience_cdk_controller.jar ├── jchempaint-applet-org_openscience_cdk_io.jar ├── jchempaint-applet-org_openscience_cdk_io_cml.jar ├── jchempaint-applet-org_openscience_cdk_math.jar ├── jchempaint-applet-org_openscience_cdk_tools.jar ├── jchempaint-applet-org_w3c.jar ├── jchempaint-applet-org_xmlcml.jar ├── jchempaint-applet-others.jar ├── jchempaint-applet-resources.jar ├── jchempaint-applet-templates.jar ├── jchempaint-applet-viewer-opts.jar ├── lgpl.license └── lib-licenses.txt ├── LICENSE ├── MIME ├── Type.php └── Type │ ├── Extension.php │ └── Parameter.php ├── Net └── URL2.php ├── OLE.php ├── OLE ├── ChainedBlockStream.php ├── PPS.php └── PPS │ ├── File.php │ └── Root.php ├── QDBS.zip ├── README.md ├── SimpleXLS.php ├── SimpleXLSX.php ├── SketchEl.jar ├── Spreadsheet └── Excel │ ├── Writer.php │ └── Writer │ ├── BIFFwriter.php │ ├── Format.php │ ├── Parser.php │ ├── Validator.php │ ├── Workbook.php │ └── Worksheet.php ├── Test.cdx ├── UPDATE ├── UPDATE.txt ├── VERSION.md ├── VERSION.txt ├── VecMol ├── 1x1.png ├── constants.js ├── help.css ├── help.html ├── help.js ├── icons │ ├── 3d_rotate.png │ ├── 3d_rotate.svg │ ├── any.png │ ├── any.svg │ ├── aromatic.png │ ├── aromatic.svg │ ├── arrow.png │ ├── arrow.svg │ ├── bond_rotate.png │ ├── bond_rotate.svg │ ├── chain.png │ ├── chain.svg │ ├── clean2d.png │ ├── clean2d.svg │ ├── clean3d.png │ ├── clean3d.svg │ ├── close.png │ ├── close.svg │ ├── collapse.png │ ├── collapse.svg │ ├── del.png │ ├── del.svg │ ├── document-new.png │ ├── document-new.svg │ ├── document-open.png │ ├── document-open.svg │ ├── document-save-svg.png │ ├── document-save-svg.svg │ ├── document-save.png │ ├── document-save.svg │ ├── double.png │ ├── double.svg │ ├── edit-clear.png │ ├── edit-clear.svg │ ├── edit-copy.png │ ├── edit-copy.svg │ ├── edit-cut.png │ ├── edit-cut.svg │ ├── edit-paste.png │ ├── edit-paste.svg │ ├── edit-redo.png │ ├── edit-redo.svg │ ├── edit-undo.png │ ├── edit-undo.svg │ ├── expand.png │ ├── expand.svg │ ├── flip-x.png │ ├── flip-x.svg │ ├── flip-y.png │ ├── flip-y.svg │ ├── format-text-bold.png │ ├── format-text-bold.svg │ ├── group.png │ ├── group.svg │ ├── help.png │ ├── help.svg │ ├── hotspot.png │ ├── hotspot.svg │ ├── info.png │ ├── info.svg │ ├── molecule.svg │ ├── plus.png │ ├── plus.svg │ ├── rotate.png │ ├── rotate.svg │ ├── sel-lasso.png │ ├── sel-lasso.svg │ ├── sel-rect.png │ ├── sel-rect.svg │ ├── single.png │ ├── single.svg │ ├── stereo-down.png │ ├── stereo-down.svg │ ├── stereo-undef.png │ ├── stereo-undef.svg │ ├── stereo-up.png │ ├── stereo-up.svg │ ├── system-search.svg │ ├── triple.png │ ├── triple.svg │ ├── ungroup.png │ ├── ungroup.svg │ ├── view-refresh.png │ ├── view-refresh.svg │ ├── zoom-in.png │ ├── zoom-in.svg │ ├── zoom-out.png │ └── zoom-out.svg ├── index.html ├── info.html ├── lang.js ├── lang_de.js ├── lang_en.js ├── lib.js ├── mit_lic │ ├── LICENSE.txt │ ├── jquery-1.8.3.min.js │ ├── jquery.mousewheel.min.js │ ├── jquery.rule-min.js │ ├── jquery.watermark.min.js │ ├── pako_inflate.min.js │ ├── raphael-min.js │ └── tinycolor-min.js ├── style.css ├── svg-mol-full.min.min.js ├── templates │ ├── 0.mol │ ├── 1.mol │ ├── 2.mol │ ├── 3.mol │ ├── 4.mol │ ├── 5.mol │ ├── 6.mol │ └── 7.mol └── vecmol.css ├── analytics ├── converter.php ├── converter.template ├── cv │ └── cyclovoltammetry.php ├── gc-ms │ ├── chemstation.php │ └── varian_sms.php ├── gc │ ├── agilent.php │ ├── perkin_elmer.php │ └── shimadzu_txt.php ├── generic │ └── generic.php ├── graph.php ├── hplc │ ├── lachrom.php │ └── shimadzu.php ├── ic │ └── metrohm.php ├── ir │ ├── IRconverter.php │ ├── ascii.php │ ├── irf.php │ ├── jcampIR.php │ ├── sp.php │ └── spc.php ├── ms │ └── nist_ascii.php ├── nmr │ ├── bruker.php │ ├── bruker2d.php │ ├── bruker_xwin.php │ └── jcampNMR.php ├── parr_autoclave │ └── parr_rec.php ├── photolum │ └── hamamatsu.php ├── tnr.ttf ├── unknown │ └── unknown.php ├── uv-vis │ └── thermo_scientific.php ├── x-ray_spec │ └── emsa.php └── xray_powder │ ├── bruker_raw.php │ └── stoe_raw.php ├── analyzeFP.php ├── applet_interchange.php ├── applet_test.php ├── applet_test_async.php ├── autoini.ahk ├── autoini.exe ├── backup_v2.bat ├── backup_v2.sh ├── backup_v3.bat ├── balance.ahk ├── balance.exe ├── balance.ini ├── barcodeTerminal.php ├── barcodeTerminalAsync.php ├── barcodeTerminalAsyncQuick.php ├── barcode_autogeneration.php ├── blank.php ├── change_pw.php ├── checkBarcodeAsync.php ├── check_double.php ├── check_literature.php ├── check_reaction_mapping.php ├── check_scraping.php ├── check_substruct.php ├── chemdraw ├── chemdraw.php ├── config-sample.json ├── config-small.json ├── config.json └── images │ └── chemdraw.png ├── chooseAsync.php ├── clipAsync.php ├── copyReaction.php ├── credits.php ├── data └── public-suffix-list.php ├── delete_multiple.php ├── docs ├── Borrow_Return_chemicals_via_Terminal.pdf ├── Changing_User_Password.pdf ├── Changing_chemicals_location_using_terminal.pdf ├── Choosing-External_borrow-for-guests-account.png ├── Open_Enventory_Centos7_installation_20190517.pdf ├── Open_Enventory_Mac_installation_20180713.pdf ├── Open_Enventory_Manual.pdf ├── Open_Enventory_Win_installation_20150303.pdf ├── customized-search-box-for-criteria-filter.png ├── interface_laptop_20190718.png ├── new_login_laptop_20190718.png ├── new_login_mobile_20190718.png ├── popup-window-during-checkout-by-guest.png └── sciflection_short_v.1.pdf ├── dynamic.js.php ├── edit.php ├── editAsync.php ├── editWin.php ├── export.php ├── export_setup.php ├── extras └── searchCritArray.php ├── favicon.ico ├── favicon.png ├── fixDensity.php ├── fixFields.php ├── flame.swf ├── forms ├── analytics │ ├── default.txt │ └── hrms.txt └── dymo │ ├── chemical_storage.label │ └── reaction.label ├── fr.cdx ├── fr2.cdx ├── g_settings.php ├── getBarcode.php ├── getBarcode128.php ├── getBarcodePage.php ├── getDateRangeCMRReport.php ├── getGif.php ├── getInstructions.php ├── getLiterature.php ├── getMolfile.php ├── getPDF.php ├── getPersonCMRReport.php ├── getPrice.php ├── getResultList.php ├── getSafetySheet.php ├── getSpz.php ├── getSrc.php ├── graphViewer.php ├── imes-v0-r540.jar ├── imes_de.pdf ├── imes_en.pdf ├── imes_es.pdf ├── imes_fr.pdf ├── img ├── aqua_dayDown.gif ├── aqua_dayNormal.gif ├── aqua_dayOver.gif ├── armygreen_dayDown.gif ├── armygreen_dayNormal.gif ├── armygreen_dayOver.gif ├── bananasplit_dayDown.gif ├── bananasplit_dayNormal.gif ├── bananasplit_dayOver.gif ├── beige_dayDown.gif ├── beige_dayNormal.gif ├── beige_dayOver.gif ├── deepblue_dayDown.gif ├── deepblue_dayNormal.gif ├── deepblue_dayOver.gif ├── greenish_dayDown.gif ├── greenish_dayNormal.gif ├── greenish_dayOver.gif ├── lightgreen_dayDown.gif ├── lightgreen_dayNormal.gif ├── lightgreen_dayOver.gif ├── ocean_blue_dayDown.gif ├── ocean_blue_dayNormal.gif ├── ocean_blue_dayOver.gif ├── orange_dayDown.gif ├── orange_dayNormal.gif ├── orange_dayOver.gif ├── peppermint_dayDown.gif ├── peppermint_dayNormal.gif ├── peppermint_dayOver.gif ├── pink_dayDown.gif ├── pink_dayNormal.gif ├── pink_dayOver.gif ├── purple_dayDown.gif ├── purple_dayNormal.gif ├── purple_dayOver.gif ├── torqoise_dayDown.gif ├── torqoise_dayNormal.gif └── torqoise_dayOver.gif ├── import.php ├── importLJ.php ├── import_ausgabe.php ├── import_bessi.php ├── import_edit.php ├── import_iciq.php ├── import_only.php ├── import_sial.php ├── index.php ├── install_open_enventory.sh ├── jakarta-commons-net.jar ├── jakarta-commons-oro.jar ├── jodconverter-2.2.2 ├── ChangeLog.txt ├── LICENSE.txt ├── README.txt ├── docs │ ├── jodconverter-2.2.2-javadoc.jar │ └── third-party-licenses │ │ ├── license-commons-io.txt │ │ ├── license-openoffice.org.txt │ │ ├── license-slf4j.txt │ │ └── license-xstream.txt ├── document-formats.xml ├── lib │ ├── DEPENDENCIES.txt │ ├── commons-cli-1.2.jar │ ├── commons-io-1.4.jar │ ├── jodconverter-2.2.2.jar │ ├── jodconverter-cli-2.2.2.jar │ ├── juh-3.0.1.jar │ ├── jurt-3.0.1.jar │ ├── ridl-3.0.1.jar │ ├── slf4j-api-1.5.6.jar │ ├── slf4j-jdk14-1.5.6.jar │ ├── unoil-3.0.1.jar │ └── xstream-1.3.1.jar └── src │ ├── jodconverter-2.2.2-sources.jar │ └── jodconverter-cli-2.2.2-sources.jar ├── ketcher ├── LICENSE.GPL ├── base64.js ├── chem │ ├── cis_trans.js │ ├── dfs.js │ ├── element.js │ ├── inchi.js │ ├── molfile.js │ ├── sgroup.js │ ├── smiles.js │ ├── stereocenters.js │ ├── struct.js │ └── struct_valence.js ├── demo.html ├── favicon.ico ├── icons │ ├── logo_small01.jpg │ ├── mol │ │ ├── bond_any.mol │ │ ├── bond_aromatic.mol │ │ ├── bond_crossed.mol │ │ ├── bond_double.mol │ │ ├── bond_doublearomatic.mol │ │ ├── bond_down.mol │ │ ├── bond_single.mol │ │ ├── bond_singlearomatic.mol │ │ ├── bond_singledouble.mol │ │ ├── bond_triple.mol │ │ ├── bond_up.mol │ │ ├── bond_updown.mol │ │ ├── chain.mol │ │ ├── charge_minus.mol │ │ ├── charge_plus.mol │ │ ├── template0.mol │ │ ├── template1.mol │ │ ├── template10.mol │ │ ├── template11.mol │ │ ├── template2.mol │ │ ├── template3.mol │ │ ├── template4.mol │ │ ├── template5.mol │ │ ├── template6.mol │ │ ├── template7.mol │ │ ├── template8.mol │ │ └── template9.mol │ ├── png │ │ ├── bond │ │ │ ├── bond_any.dropdown.png │ │ │ ├── bond_any.sidebar.png │ │ │ ├── bond_aromatic.dropdown.png │ │ │ ├── bond_aromatic.sidebar.png │ │ │ ├── bond_crossed.dropdown.png │ │ │ ├── bond_crossed.sidebar.png │ │ │ ├── bond_double.dropdown.png │ │ │ ├── bond_double.sidebar.png │ │ │ ├── bond_doublearomatic.dropdown.png │ │ │ ├── bond_doublearomatic.sidebar.png │ │ │ ├── bond_down.dropdown.png │ │ │ ├── bond_down.sidebar.png │ │ │ ├── bond_single.dropdown.png │ │ │ ├── bond_single.sidebar.png │ │ │ ├── bond_singlearomatic.dropdown.png │ │ │ ├── bond_singlearomatic.sidebar.png │ │ │ ├── bond_singledouble.dropdown.png │ │ │ ├── bond_singledouble.sidebar.png │ │ │ ├── bond_triple.dropdown.png │ │ │ ├── bond_triple.sidebar.png │ │ │ ├── bond_up.dropdown.png │ │ │ ├── bond_up.sidebar.png │ │ │ ├── bond_updown.dropdown.png │ │ │ └── bond_updown.sidebar.png │ │ ├── customtemplate │ │ │ ├── customtemplate0.dropdown.png │ │ │ ├── customtemplate0.sidebar.png │ │ │ ├── customtemplate1.dropdown.png │ │ │ ├── customtemplate1.sidebar.png │ │ │ ├── customtemplate2.dropdown.png │ │ │ ├── customtemplate2.sidebar.png │ │ │ ├── customtemplate3.dropdown.png │ │ │ ├── customtemplate3.sidebar.png │ │ │ ├── customtemplate4.dropdown.png │ │ │ ├── customtemplate4.sidebar.png │ │ │ ├── customtemplate5.dropdown.png │ │ │ ├── customtemplate5.sidebar.png │ │ │ ├── customtemplate6.dropdown.png │ │ │ ├── customtemplate6.sidebar.png │ │ │ ├── customtemplate7.dropdown.png │ │ │ └── customtemplate7.sidebar.png │ │ ├── main │ │ │ ├── arom.png │ │ │ ├── arrow.png │ │ │ ├── chain.png │ │ │ ├── charge_minus.png │ │ │ ├── charge_plus.png │ │ │ ├── dearom.png │ │ │ ├── document-new.png │ │ │ ├── document-open.png │ │ │ ├── document-save-as.png │ │ │ ├── dropdown.png │ │ │ ├── edit-clear.png │ │ │ ├── edit-copy.png │ │ │ ├── edit-cut.png │ │ │ ├── edit-paste.png │ │ │ ├── edit-redo.png │ │ │ ├── edit-undo.png │ │ │ ├── layout.png │ │ │ ├── logo.png │ │ │ ├── sgroup.png │ │ │ ├── view-zoom-in.png │ │ │ └── view-zoom-out.png │ │ ├── reaction │ │ │ ├── reaction-arrow.dropdown.png │ │ │ ├── reaction-arrow.sidebar.png │ │ │ ├── reaction-automap.dropdown.png │ │ │ ├── reaction-automap.sidebar.png │ │ │ ├── reaction-map.dropdown.png │ │ │ ├── reaction-map.sidebar.png │ │ │ ├── reaction-plus.dropdown.png │ │ │ ├── reaction-plus.sidebar.png │ │ │ ├── reaction-unmap.dropdown.png │ │ │ └── reaction-unmap.sidebar.png │ │ ├── rgroup │ │ │ ├── rgroup-attpoints.dropdown.png │ │ │ ├── rgroup-attpoints.sidebar.png │ │ │ ├── rgroup-fragment.dropdown.png │ │ │ ├── rgroup-fragment.sidebar.png │ │ │ ├── rgroup-label.dropdown.png │ │ │ └── rgroup-label.sidebar.png │ │ ├── selection │ │ │ ├── lasso.dropdown.png │ │ │ ├── lasso.sidebar.png │ │ │ ├── rectangle.dropdown.png │ │ │ ├── rectangle.sidebar.png │ │ │ ├── structure.dropdown.png │ │ │ └── structure.sidebar.png │ │ ├── template │ │ │ ├── template0.dropdown.png │ │ │ ├── template0.sidebar.png │ │ │ ├── template1.dropdown.png │ │ │ ├── template1.sidebar.png │ │ │ ├── template10.dropdown.png │ │ │ ├── template10.sidebar.png │ │ │ ├── template11.dropdown.png │ │ │ ├── template11.sidebar.png │ │ │ ├── template12.24.png │ │ │ ├── template12.png │ │ │ ├── template13.24.png │ │ │ ├── template13.png │ │ │ ├── template14.24.png │ │ │ ├── template14.png │ │ │ ├── template15.24.png │ │ │ ├── template15.png │ │ │ ├── template2.dropdown.png │ │ │ ├── template2.sidebar.png │ │ │ ├── template3.dropdown.png │ │ │ ├── template3.sidebar.png │ │ │ ├── template4.dropdown.png │ │ │ ├── template4.sidebar.png │ │ │ ├── template5.dropdown.png │ │ │ ├── template5.sidebar.png │ │ │ ├── template6.dropdown.png │ │ │ ├── template6.sidebar.png │ │ │ ├── template7.dropdown.png │ │ │ ├── template7.sidebar.png │ │ │ ├── template8.dropdown.png │ │ │ ├── template8.sidebar.png │ │ │ ├── template9.dropdown.png │ │ │ └── template9.sidebar.png │ │ └── transform │ │ │ ├── transform-flip-h.dropdown.png │ │ │ ├── transform-flip-h.sidebar.png │ │ │ ├── transform-flip-v.dropdown.png │ │ │ ├── transform-flip-v.sidebar.png │ │ │ ├── transform-rotate.dropdown.png │ │ │ └── transform-rotate.sidebar.png │ └── svg │ │ ├── bond_any.svg │ │ ├── bond_aromatic.svg │ │ ├── bond_crossed.svg │ │ ├── bond_double.svg │ │ ├── bond_doublearomatic.svg │ │ ├── bond_down.svg │ │ ├── bond_single.svg │ │ ├── bond_singlearomatic.svg │ │ ├── bond_singledouble.svg │ │ ├── bond_triple.svg │ │ ├── bond_up.svg │ │ ├── bond_updown.svg │ │ ├── chain.svg │ │ ├── charge_minus.svg │ │ ├── charge_plus.svg │ │ ├── template0.svg │ │ ├── template1.svg │ │ ├── template2.svg │ │ ├── template3.svg │ │ ├── template4.svg │ │ ├── template5.svg │ │ ├── template6.svg │ │ └── template7.svg ├── ketcher-server-wsgi.py ├── ketcher-server.py ├── ketcher.css ├── ketcher.html ├── ketcher.js ├── ketcher.py ├── layout_patterns.sh ├── loading.gif ├── mol │ ├── action │ │ ├── layout.mol │ │ └── sgroup.mol │ ├── charge_minus.mol │ ├── charge_plus.mol │ ├── crossed.mol │ ├── doublearomatic.mol │ ├── down.mol │ ├── pattern │ │ ├── hexa1.mol │ │ ├── hexa2.mol │ │ ├── hexaa.mol │ │ ├── naphthalene.mol │ │ └── penta.mol │ ├── singlearomatic.mol │ ├── singledouble.mol │ ├── up.mol │ └── updown.mol ├── nbproject │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml ├── oe_mod.js ├── pack-zip.sh ├── pack.sh ├── png │ ├── action │ │ ├── arrow.png │ │ ├── charge_minus.png │ │ ├── charge_plus.png │ │ ├── document-new.png │ │ ├── document-open.png │ │ ├── document-save-as.png │ │ ├── edit-clear.png │ │ ├── edit-copy.png │ │ ├── edit-cut.png │ │ ├── edit-paste.png │ │ ├── edit-redo.png │ │ ├── edit-undo.png │ │ ├── lasso.png │ │ ├── layout.png │ │ ├── reaction-arrow.png │ │ ├── reaction-automap.png │ │ ├── reaction-map.png │ │ ├── reaction-plus.png │ │ ├── reaction-unmap.png │ │ ├── rectangle.png │ │ ├── sgroup.png │ │ ├── view-zoom-in.png │ │ └── view-zoom-out.png │ ├── atom │ │ ├── anyatom.png │ │ ├── br.png │ │ ├── c.png │ │ ├── cl.png │ │ ├── f.png │ │ ├── h.png │ │ ├── i.png │ │ ├── n.png │ │ ├── o.png │ │ ├── p.png │ │ └── s.png │ ├── bond │ │ ├── anybond.png │ │ ├── aromatic.png │ │ ├── crossed.png │ │ ├── double.png │ │ ├── doublearomatic.png │ │ ├── down.png │ │ ├── single.png │ │ ├── singlearomatic.png │ │ ├── singledouble.png │ │ ├── triple.png │ │ ├── up.png │ │ └── updown.png │ ├── dropdown.png │ ├── logo.png │ └── pattern │ │ ├── hexa1.png │ │ ├── hexa2.png │ │ ├── hexaa.png │ │ ├── naphthalene.png │ │ └── penta.png ├── prototype-min.js ├── raphael-group-plugin.js ├── raphael-min.js ├── raphael.js ├── reaxys │ └── reaxys.js ├── render_buttons.sh ├── render_sdf.sh ├── render_templates.sh ├── rnd │ ├── editor.js │ ├── elem_table.js │ ├── events.js │ ├── render.js │ ├── restruct.js │ ├── restruct_rendering.js │ ├── rgroup_table.js │ ├── templates.js │ └── visel.js ├── server │ ├── CMakeLists.txt │ ├── java │ │ ├── jar │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── ggasoftware │ │ │ │ │ └── ketcher │ │ │ │ │ ├── KetcherServer.java │ │ │ │ │ └── KetcherServerLib.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── ggasoftware │ │ │ │ └── ketcher │ │ │ │ └── KetcherServerTest.java │ │ └── war │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── ggasoftware │ │ │ │ │ └── ketcher │ │ │ │ │ ├── ContextListener.java │ │ │ │ │ └── KetcherServerMapping.java │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── conf │ │ │ │ └── log4j.xml │ │ │ │ └── web.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── ggasoftware │ │ │ └── ketcher │ │ │ └── KetcherServerMappingTest.java │ ├── ketcher-server-release.py │ ├── ketcher_server.explist │ ├── ketcher_server.so.map │ ├── src │ │ ├── gcc_preinclude.h │ │ ├── ketcher_server.cpp │ │ ├── ketcher_server.h │ │ └── memcpy.c │ └── test │ │ └── ks_test.cpp ├── templates.sdf ├── third_party │ ├── keymaster.js │ └── prototype.js ├── ui │ ├── actions.js │ └── ui.js └── util │ ├── common.js │ ├── map.js │ ├── pool.js │ ├── set.js │ └── vec2.js ├── ketcher2 ├── LICENSE ├── demo.html ├── doc │ ├── analyse.png │ ├── atom-dialog.png │ ├── attpoints-dialog.png │ ├── bond-dialog.png │ ├── bond-types.png │ ├── bond.png │ ├── bonds.png │ ├── chain.png │ ├── charge.png │ ├── check.png │ ├── collapsed.png │ ├── expanded.png │ ├── generic-groups.png │ ├── help.html │ ├── inline-edit.png │ ├── main.png │ ├── miew-menu.png │ ├── miew.png │ ├── open.png │ ├── periodic-dialog-ext.png │ ├── periodic-dialog.png │ ├── periodic-table.png │ ├── reaction-types.png │ ├── reaction.png │ ├── rgroup-dialog.png │ ├── rgroup-example1.png │ ├── rgroup-example2.png │ ├── rgroup-example3.png │ ├── rgroup-example4.png │ ├── rgroup-types.png │ ├── rgroup.png │ ├── rlogic-dialog.png │ ├── rotate.png │ ├── save.png │ ├── sdata-dialog.png │ ├── sdata.png │ ├── settings.png │ ├── sgroup-data-dialog.png │ ├── sgroup-dialog.png │ ├── sgroup.png │ ├── template-dialog.png │ ├── template-example1.png │ ├── template-example2.png │ ├── template-example3.png │ ├── template-lib.png │ ├── template.png │ ├── toolbar.png │ ├── transform-types.png │ └── transform.png ├── ketcher.css ├── ketcher.css.map ├── ketcher.html ├── ketcher.js ├── ketcher.js.map ├── ketcher.svg ├── library.sdf ├── library.svg ├── logo │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ └── ketcher-logo.svg ├── oe_mod.js └── raphael.min.js ├── labels.php ├── labels.php.old ├── lib ├── 1st.png ├── 1st_deac.png ├── 1x1.gif ├── 1x1.png ├── 1x1.svg ├── BLD_logo.png ├── ChEBI.gif ├── DYMO.Label.Framework.2.0.2.js ├── DYMO.Label.Framework.3.0.js ├── DYMO.js ├── E003.png ├── E004.png ├── E009.png ├── E011.png ├── E012.png ├── F006.png ├── GHS-pictogram-acid.png ├── GHS-pictogram-bottle.png ├── GHS-pictogram-exclam.png ├── GHS-pictogram-explos.png ├── GHS-pictogram-flamme.png ├── GHS-pictogram-pollu.png ├── GHS-pictogram-rondflam.png ├── GHS-pictogram-silhouete.png ├── GHS-pictogram-skull.png ├── LogoAcros.jpg ├── M001.png ├── M002.png ├── M004.png ├── M005.png ├── M008.png ├── M009.png ├── M010.png ├── M011.png ├── M013.png ├── M016.png ├── M017.png ├── M022.png ├── M026.png ├── P003.png ├── P011.png ├── accepted_order_sm.png ├── active_rent_sm.png ├── add_chemical_to_molecule_sm.png ├── add_line_sm.png ├── add_line_vsm.png ├── add_standard_sm.png ├── agplv3-155x51.png ├── agplv3-88x31.png ├── all.png ├── analytical_data_sm.png ├── analytics_device_sm.png ├── analytics_method_sm.png ├── analytics_type_sm.png ├── applichem.jpg ├── arial.ttf ├── array.js ├── aslogo.png ├── ausleihen.wav ├── auto_gc_sm.png ├── auto_gc_sm_deac.png ├── auto_trans_sm.png ├── barcode.js ├── barcode_terminal.js ├── blueline_bg.png ├── borrow_sm.png ├── brackets.png ├── bring_back_sm.png ├── cancel_sm.png ├── carl_roth.jpg ├── cas_sm.png ├── central_chemical_order_sm.png ├── chem.js ├── chem_order.js ├── chembook.gif ├── chemical_order_sm.png ├── chemical_storage.png ├── chemical_storage_old.png ├── chemical_storage_sm.png ├── chemical_storage_sm_old.png ├── chemical_storage_type_sm.png ├── chemielogo.gif ├── chn_sm.png ├── chn_vsm.png ├── client_cache.js ├── close_lab_journal_sm.png ├── collapse.png ├── compare_rxn.js ├── compare_rxn_sm.png ├── completed_chemical_order_sm.png ├── confirm_chemical_order_sm.png ├── controls.js ├── copy_reaction_sm.png ├── copy_rxn.js ├── copy_sm.png ├── corrosive.gif ├── cost_centre_sm.png ├── customer_delivered_sm.png ├── danger.gif ├── data_publication_sm.png ├── del.png ├── del_sm.png ├── del_sm_old.png ├── del_vsm.png ├── details_sm.png ├── details_sm_old.png ├── discount_sm.png ├── dispose_sm.png ├── disposed_chemical_storage_sm.png ├── doi_sm.png ├── down.png ├── down_sel.png ├── down_sm.png ├── down_vsm.png ├── dropdown.png ├── drugbank.jpg ├── dygraph-combined-dev.js ├── dygraph-combined.js ├── edit.js ├── edit_col_sm.png ├── edit_rc_sm.png ├── edit_sm.png ├── emolecules-simple-300x56.gif ├── error.wav ├── eurisotop.gif ├── exit_sm.png ├── expand.png ├── export_sm.png ├── export_sm_old.png ├── exposive.gif ├── external.png ├── fb_basel.gif ├── fb_venezia.gif ├── fci.jpg ├── fermentas.gif ├── filter.png ├── filter_off_sm.png ├── flamm.gif ├── folder_browser.js ├── formatting.js ├── forms.js ├── gc_cross.js ├── gc_cross_sm.png ├── gc_sm.png ├── giffile_sm.png ├── goto_chemical_storage_sm.png ├── goto_mol_sm.png ├── goto_settlement_sm.png ├── goto_vendor_sm.png ├── harmful.gif ├── help_sm.png ├── hide_column.png ├── iciq.jpg ├── iciq_logo.jpg ├── img │ ├── boxBottomLeftCorner.png │ ├── boxBottomRightCorner.png │ ├── boxSideWallPx.gif │ ├── boxSideWallPx.png │ ├── boxTopLeftCorner.png │ ├── boxTopPx.gif │ ├── boxTopPx.png │ ├── boxTopRightCorner.png │ ├── closeButton_down.gif │ ├── closeButton_normal.gif │ ├── closeButton_over.gif │ ├── monthBackward_down.gif │ ├── monthBackward_normal.gif │ ├── monthBackward_over.gif │ ├── monthForward_down.gif │ ├── monthForward_normal.gif │ ├── monthForward_over.gif │ ├── yearBackward_down.gif │ ├── yearBackward_normal.gif │ ├── yearBackward_over.gif │ ├── yearForward_down.gif │ ├── yearForward_normal.gif │ └── yearForward_over.gif ├── info-icon-33.png ├── inquire_price_sm.png ├── institution_sm.png ├── instructions_sm.png ├── ioc.jpg ├── jquery-1.12.4.min.js ├── jquery.easing.min.js ├── jquery.scombobox.min.css ├── jquery.scombobox.min.js ├── jsDatePick.full.1.3.js ├── jsDatePick.min.1.3.js ├── jsDatePick_ltr.min.css ├── json.js ├── json2.js ├── lab_journal.png ├── lab_journal_sm.png ├── label.png ├── labels1x4_bar_sm.png ├── labels1x4_sm.png ├── labels2x5_bar_sm.png ├── labels2x5_sm.png ├── labels2x7_bar_sm.png ├── labels3x7_sm.png ├── last.png ├── last_deac.png ├── latinize.js ├── laws_sm.png ├── left.png ├── link.gif ├── link_act.gif ├── list.js ├── list_options_sm.png ├── list_sm.png ├── literature.js ├── literature.png ├── literature_sm.png ├── lmu-logo.png ├── lock_stoich.png ├── login.wav ├── logo_SigmaAldrich.gif ├── logo_abcr.gif ├── logo_alfa_aesar.jpg ├── logo_apollo.png ├── logo_barcelona_60.jpg ├── logo_biosolve.gif ├── logo_carbolution.png ├── logo_cayman.png ├── logo_chemfinder.gif ├── logo_fisher.gif ├── logo_flumroc.png ├── logo_fluorochem.png ├── logo_itw.png ├── logo_merck.gif ├── logo_nist.gif ├── logo_rockwool.jpg ├── logo_strem.gif ├── logo_ubarcelona.jpg ├── merge_sm.png ├── message.js ├── message_in_sm.png ├── message_in_sm_2.png ├── message_in_sm_old.png ├── message_out_sm.png ├── message_out_sm_2.png ├── message_out_sm_old.png ├── message_sm.png ├── minerva_kofo.jpg ├── minus.gif ├── minus.png ├── minus_gray.gif ├── minus_gray.png ├── misc.js ├── missed.js ├── mit_chem_logo.png ├── mit_logo.png ├── molecule.png ├── molecule_edit.js ├── molecule_sm.png ├── molecule_type_sm.png ├── molfile_sm.png ├── moment.min.js ├── mpi_order_sm.png ├── my_chemical_order_sm.png ├── nci_logo2.gif ├── negativ.png ├── new.png ├── new_win_lab_journal_sm.png ├── next.png ├── next_deac.png ├── nok_sm.png ├── oakwood.jpg ├── ok_sm.png ├── open_chemical_order_sm.png ├── open_env_logo.png ├── open_env_logo_final.png ├── order_comp_sm.png ├── other_db_sm.png ├── oxidizing.gif ├── paste_sm.png ├── person_barcode_sm.png ├── person_barcode_sm_old.png ├── person_sm.png ├── person_sm_old.png ├── plus.gif ├── plus.png ├── positiv.png ├── pred_nmr_sm.png ├── prepare_order_sm.png ├── prev.png ├── prev_deac.png ├── print_label_sm.png ├── print_sm.png ├── project_sm.png ├── pubchemlogo_2015.gif ├── rc_to_storage_sm.png ├── rc_to_storage_vsm.png ├── reaction.js ├── reaction_ana.js ├── reaction_calc.js ├── reaction_sm.png ├── reaction_structure experimentell.js ├── reaction_structure.js ├── reaction_structure.js.bak ├── reaction_type_sm.png ├── recover_sm.png ├── redline_bg.png ├── refresh_sm.png ├── rent_sm.png ├── report_archive.png ├── report_download.png ├── reset_button.png ├── reset_sm.png ├── response_factor_sm.png ├── right.png ├── rwth-ac.jpg ├── rxnfile.js ├── safe_dom.js ├── safety.js ├── safety_de.js ├── safety_en.js ├── safety_es.js ├── safety_fr.js ├── safety_it.js ├── safety_pt.js ├── sap_sm.png ├── save_disabled_sm.png ├── save_mini.png ├── save_sm.png ├── scale_rxn_sm.png ├── sci_journal_sm.png ├── sciflection_sm.png ├── sciformation_eln.png ├── sdb_sm.png ├── sds.js ├── search.png ├── search_old.png ├── search_sm.png ├── searchicon.png ├── searchpk.js ├── searchrxn.js ├── select_sm.png ├── settings.js ├── settlement.js ├── settlement_sm.png ├── share_sm.png ├── side.gif ├── side.jpg ├── side.png ├── side35.png ├── side_red_line.png ├── side_red_line35.png ├── side_without_top.png ├── side_without_top35.png ├── sidenav.css ├── sidenav.js ├── sidenav_new.png ├── sidenav_new_down.png ├── sidenav_new_lj.png ├── sidenav_new_lj_down.png ├── sidenav_new_search.png ├── sidenav_new_search_down.png ├── spacer_blue.gif ├── spacer_orange.gif ├── specnav.png ├── split_chemical_sm.png ├── status_1_sm.png ├── status_2_sm.png ├── status_3_sm.png ├── status_4_sm.png ├── status_5_sm.png ├── storage_barcode_sm.png ├── storage_import_template.xlsx ├── storage_sm.png ├── storage_sm_old.png ├── stusti_logo.gif ├── style.css ├── subitemlist.js ├── subitemlist_get.js ├── subitemlist_helper.js ├── supplier.png ├── supplier_delivered_sm.png ├── supplier_offer.png ├── supplier_offer_sm.png ├── supplier_sm.png ├── svgfile_sm.png ├── tab_blue.png ├── tab_blue_over.png ├── tab_blue_over_right.png ├── tab_blue_right.png ├── tab_blue_selected.png ├── tab_blue_selected_right.png ├── tab_red.png ├── tab_red_over.png ├── tab_red_over_right.png ├── tab_red_right.png ├── tab_red_selected.png ├── tab_red_selected_right.png ├── tci.gif ├── this_as_educt_sm.png ├── this_as_prod_sm.png ├── top_blue.png ├── top_left_orange.gif ├── top_left_orange_logo.gif ├── top_orange.gif ├── toxic.gif ├── undelete_sm.png ├── uni-logo.gif ├── uni-logo.png ├── uni_basel.gif ├── uni_dresden.png ├── uni_venezia.jpg ├── units.js ├── univie_logo.png ├── univie_maulide_logo.png ├── unlink_sm.png ├── up.png ├── up_sel.png ├── up_sm.png ├── up_vsm.png ├── user_import_template.xlsx ├── variables.js ├── vendor_sm.png ├── vendor_with_open_sm.png ├── version_list_sm.png ├── version_sm.png ├── vwr_intl_logo2.gif ├── withdrawal_sm.png └── zurueckgeben.wav ├── lib_analytics.php ├── lib_analytics.php.new ├── lib_analytics_common.php ├── lib_analytics_common.php.new ├── lib_applet.php ├── lib_array.php ├── lib_atom_data.php ├── lib_bit_op.php ├── lib_borrow.php ├── lib_browser_caps.php ├── lib_brute_block.php ├── lib_chem_lang.php ├── lib_chooseAsync.php ├── lib_constants.php ├── lib_constants_barcode.php ├── lib_constants_columns.php ├── lib_constants_default_dataset.php ├── lib_constants_default_settings.php ├── lib_constants_form.php ├── lib_constants_order_by.php ├── lib_constants_paper.php ├── lib_constants_permissions.php ├── lib_constants_queries.php ├── lib_constants_queries_admin.php ├── lib_constants_queries_analytics.php ├── lib_constants_queries_inventory.php ├── lib_constants_queries_lab_journal.php ├── lib_constants_queries_literature.php ├── lib_constants_queries_order_system.php ├── lib_constants_root_funcs.php ├── lib_constants_tables.php ├── lib_constants_tables_admin.php ├── lib_constants_tables_analytics.php ├── lib_constants_tables_inventory.php ├── lib_constants_tables_lab_journal.php ├── lib_constants_tables_literature.php ├── lib_constants_tables_order_system.php ├── lib_constants_view.php ├── lib_convert.php ├── lib_customization.mit.php ├── lib_customization.sample.php ├── lib_customization.ukjena.php ├── lib_customization.univie.php ├── lib_db_filter.php ├── lib_db_manip.php ├── lib_db_manip_del.php ├── lib_db_manip_edit.php ├── lib_db_manip_helper.php ├── lib_db_manip_version.php ├── lib_db_order_by.php ├── lib_db_query.php ├── lib_db_query_helper.php ├── lib_db_wrapper.php ├── lib_draw_analytics.php ├── lib_draw_molecule.php ├── lib_edit.php ├── lib_edit_accepted_order.php ├── lib_edit_analytical_data.php ├── lib_edit_analytics_device.php ├── lib_edit_analytics_method.php ├── lib_edit_analytics_type.php ├── lib_edit_chemical_order.php ├── lib_edit_chemical_storage.php ├── lib_edit_chemical_storage_type.php ├── lib_edit_cost_centre.php ├── lib_edit_data_publication.php ├── lib_edit_forms.php ├── lib_edit_institution.php ├── lib_edit_lab_journal.php ├── lib_edit_literature.php ├── lib_edit_message.php ├── lib_edit_molecule.php ├── lib_edit_molecule_type.php ├── lib_edit_mpi_order.php ├── lib_edit_order_comp.php ├── lib_edit_other_db.php ├── lib_edit_person.php ├── lib_edit_project.php ├── lib_edit_reaction.php ├── lib_edit_reaction_subitemlist.php ├── lib_edit_reaction_type.php ├── lib_edit_rent.php ├── lib_edit_sci_journal.php ├── lib_edit_settlement.php ├── lib_edit_storage.php ├── lib_edit_supplier_offer.php ├── lib_fingerprint.php ├── lib_form_elements.php ├── lib_form_elements_helper.php ├── lib_form_elements_subitemlist.php ├── lib_formatting.php ├── lib_gd_common.php ├── lib_global_funcs.php ├── lib_global_settings.USD.php ├── lib_global_settings.php ├── lib_hack_bin.php ├── lib_http.php ├── lib_import.php ├── lib_instructions_pdf.php ├── lib_io (Kopie).php ├── lib_io.php ├── lib_jcamp.php ├── lib_language.php ├── lib_language_de.php ├── lib_language_en.php ├── lib_language_es.php ├── lib_language_fr.php ├── lib_language_it.php ├── lib_language_pt.php ├── lib_literature.php ├── lib_locking.php ├── lib_molecule_geometry.php ├── lib_molecule_metalorg.php ├── lib_molecule_ranks.php ├── lib_molecule_substructure.php ├── lib_molecule_substructure_experimental.php ├── lib_molfile.php ├── lib_molfile_rings.php ├── lib_navigation.php ├── lib_output.php ├── lib_permissions_check.php ├── lib_person.php ├── lib_reaction_mapping.php ├── lib_root_funcs.php ├── lib_root_funcs_helper.php ├── lib_rxn_pdf.php ├── lib_safety.php ├── lib_save_molfile.php ├── lib_searchRxn.php ├── lib_selection.php ├── lib_server_cache.php ├── lib_settings.php ├── lib_sidenav_funcs.php ├── lib_simpleExtSearch.php ├── lib_simple_forms.php ├── lib_smiles.php ├── lib_smiles_chiral.php ├── lib_smiles_ez.php ├── lib_supplier_scraping.php ├── lib_tabs.php ├── lib_units.php ├── lib_update.php ├── lib_upload_sciflection.php ├── lib_url.php ├── list.php ├── listAsync.php ├── lit_main.php ├── literature ├── acs.php ├── elsevier.php └── meta.php ├── lj_main.php ├── macro.ahk ├── macro.exe ├── macro_installer.exe ├── main.php ├── makro.ini ├── manageSelect.php ├── perm_settings.php ├── phpinfo.php ├── print.php ├── printBarcodeList.php ├── readExtAsync.php ├── readhplc.php ├── refresh_user.php ├── reset_blocked.php ├── reset_locks.php ├── robots.txt ├── root_db_man.php ├── sap_split.php ├── sciflectionSignup.php ├── searchAnalyticsFrame.php ├── searchExt.php ├── searchExtAsync.php ├── searchRxn.php ├── searchWin.php ├── searchWinInfo.php ├── settings.php ├── sidenav.php ├── spz-macro.wxs ├── spz_macro.php ├── spz_macro.tcl ├── static.js.php ├── style.css.php ├── suppliers ├── Acros.php ├── Activate.php ├── Alfa.php ├── ChemicalBook.php ├── Fisher.php ├── Merck.php ├── NIST.php ├── Sial.php ├── Strem.php ├── TCI.php.bak ├── VWR.php ├── abcr.php ├── apollo.php ├── biosolve.php ├── cactus.php ├── carbolution.php ├── carlroth.php ├── cayman.php ├── emol.php ├── fluorochem.php ├── itw.php ├── lib │ └── chemexper.php ├── oakwood.php ├── own.php └── pubchem.php ├── temp_form.php ├── temp_form2.php ├── test.php ├── topnav.php ├── trans_helper.php ├── update.php ├── uploadSpz.php ├── upload_sciflection.php ├── user-guides.html ├── vectorgraphics-2.1.1 ├── LGPL.txt ├── LICENSE.txt ├── README.txt ├── examples │ ├── ExportDialogExample.java │ ├── HeadlessExample.java │ └── pom.xml └── lib │ ├── freehep-export-2.1.1.jar │ ├── freehep-graphics2d-2.1.1.jar │ ├── freehep-graphicsio-2.1.1.jar │ ├── freehep-graphicsio-2.1.1.jar.orig │ ├── freehep-graphicsio-emf-2.1.1.jar │ ├── freehep-graphicsio-emf-2.1.1.jar.orig │ ├── freehep-graphicsio-emf-2.1.1 │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── MANIFEST.MF.old │ │ ├── maven │ │ │ └── org.freehep │ │ │ │ └── freehep-graphicsio-emf │ │ │ │ ├── pom.properties │ │ │ │ └── pom.xml │ │ └── services │ │ │ └── org.freehep.util.export.ExportFileType │ └── org │ │ └── freehep │ │ └── graphicsio │ │ └── emf │ │ ├── EMF2SVG.class │ │ ├── EMFApplet.class │ │ ├── EMFConstants.class │ │ ├── EMFConverter.class │ │ ├── EMFDisplay.class │ │ ├── EMFExportFileType.class │ │ ├── EMFGraphics2D.class │ │ ├── EMFHandleManager.class │ │ ├── EMFHeader.class │ │ ├── EMFImageLoader.class │ │ ├── EMFInputStream.class │ │ ├── EMFOutputStream.class │ │ ├── EMFPanel.class │ │ ├── EMFPathConstructor.class │ │ ├── EMFRenderer$1.class │ │ ├── EMFRenderer$DC.class │ │ ├── EMFRenderer.class │ │ ├── EMFTag.class │ │ ├── EMFTagSet.class │ │ ├── EMFViewer$1.class │ │ ├── EMFViewer$OpenFileAction.class │ │ ├── EMFViewer$ZoomInAction.class │ │ ├── EMFViewer$ZoomOutAction.class │ │ ├── EMFViewer.class │ │ └── gdi │ │ ├── AbortPath.class │ │ ├── AbstractArc.class │ │ ├── AbstractClipPath.class │ │ ├── AbstractExtTextOut.class │ │ ├── AbstractPen$InsideFrameStroke.class │ │ ├── AbstractPen.class │ │ ├── AbstractPolyPolygon.class │ │ ├── AbstractPolyPolyline.class │ │ ├── AbstractPolygon.class │ │ ├── AlphaBlend.class │ │ ├── AngleArc.class │ │ ├── Arc.class │ │ ├── ArcTo.class │ │ ├── BeginPath.class │ │ ├── BitBlt.class │ │ ├── BitmapInfo.class │ │ ├── BitmapInfoHeader.class │ │ ├── BlendFunction.class │ │ ├── Chord.class │ │ ├── CloseFigure.class │ │ ├── CreateBrushIndirect.class │ │ ├── CreateDIBPatternBrushPt$1.class │ │ ├── CreateDIBPatternBrushPt.class │ │ ├── CreatePen.class │ │ ├── DeleteObject.class │ │ ├── EMFPolygon.class │ │ ├── EMFRectangle.class │ │ ├── EOF.class │ │ ├── Ellipse.class │ │ ├── EndPath.class │ │ ├── ExcludeClipRect.class │ │ ├── ExtCreateFontIndirectW.class │ │ ├── ExtCreatePen.class │ │ ├── ExtFloodFill.class │ │ ├── ExtLogFontW.class │ │ ├── ExtLogPen.class │ │ ├── ExtSelectClipRgn.class │ │ ├── ExtTextOutA.class │ │ ├── ExtTextOutW.class │ │ ├── FillPath.class │ │ ├── FlattenPath.class │ │ ├── GDIComment.class │ │ ├── GDIObject.class │ │ ├── Gradient.class │ │ ├── GradientFill.class │ │ ├── GradientRectangle.class │ │ ├── GradientTriangle.class │ │ ├── IntersectClipRect.class │ │ ├── LineTo.class │ │ ├── LogBrush32.class │ │ ├── LogFontW.class │ │ ├── LogPen.class │ │ ├── ModifyWorldTransform.class │ │ ├── MoveToEx.class │ │ ├── OffsetClipRgn.class │ │ ├── Panose.class │ │ ├── Pie.class │ │ ├── PolyBezier.class │ │ ├── PolyBezier16.class │ │ ├── PolyBezierTo.class │ │ ├── PolyBezierTo16.class │ │ ├── PolyDraw.class │ │ ├── PolyDraw16.class │ │ ├── PolyPolygon.class │ │ ├── PolyPolygon16.class │ │ ├── PolyPolyline.class │ │ ├── PolyPolyline16.class │ │ ├── Polygon16.class │ │ ├── Polyline.class │ │ ├── Polyline16.class │ │ ├── PolylineTo.class │ │ ├── PolylineTo16.class │ │ ├── RealizePalette.class │ │ ├── Region.class │ │ ├── ResizePalette.class │ │ ├── RestoreDC.class │ │ ├── RoundRect.class │ │ ├── SaveDC.class │ │ ├── ScaleViewportExtEx.class │ │ ├── ScaleWindowExtEx.class │ │ ├── SelectClipPath.class │ │ ├── SelectObject.class │ │ ├── SelectPalette.class │ │ ├── SetArcDirection.class │ │ ├── SetBkColor.class │ │ ├── SetBkMode.class │ │ ├── SetBrushOrgEx.class │ │ ├── SetICMMode.class │ │ ├── SetMapMode.class │ │ ├── SetMapperFlags.class │ │ ├── SetMetaRgn.class │ │ ├── SetMiterLimit.class │ │ ├── SetPixelV.class │ │ ├── SetPolyFillMode.class │ │ ├── SetROP2.class │ │ ├── SetStretchBltMode.class │ │ ├── SetTextAlign.class │ │ ├── SetTextColor.class │ │ ├── SetViewportExtEx.class │ │ ├── SetViewportOrgEx.class │ │ ├── SetWindowExtEx.class │ │ ├── SetWindowOrgEx.class │ │ ├── SetWorldTransform.class │ │ ├── StockObjects.class │ │ ├── StretchDIBits.class │ │ ├── StrokeAndFillPath.class │ │ ├── StrokePath.class │ │ ├── Text.class │ │ ├── TextA.class │ │ ├── TextW.class │ │ ├── TriVertex.class │ │ └── WidenPath.class │ ├── freehep-graphicsio-java-2.1.1.jar │ ├── freehep-graphicsio-pdf-2.1.1.jar │ ├── freehep-graphicsio-ps-2.1.1.jar │ ├── freehep-graphicsio-svg-2.1.1.jar │ ├── freehep-graphicsio-swf-2.1.1.jar │ ├── freehep-graphicsio-tests-2.1.1.jar │ ├── freehep-io-2.0.2.jar │ ├── freehep-swing-2.0.3.jar │ ├── freehep-util-2.0.2.jar │ ├── freehep-xml-2.1.1.jar │ ├── jas-plotter-2.2.jar │ ├── jdom-1.0.jar │ ├── junit-3.8.2.jar │ └── openide-lookup-1.9-patched-1.0.jar ├── welcome.php ├── wjhk.jupload.jar ├── wyzz.js ├── wyzz.working.js ├── wyzz_README.TXT ├── wyzz_license.html ├── wyzzicons ├── backcolor.gif ├── bold.gif ├── close.gif ├── copy.gif ├── cut.gif ├── downsize.gif ├── font.gif ├── forecolor.gif ├── headers.gif ├── help.gif ├── htmlmode.gif ├── indent.gif ├── inserthorizontalrule.gif ├── insertimage.gif ├── insertorderedlist.gif ├── inserttable.gif ├── insertunorderedlist.gif ├── italic.gif ├── justifycenter.gif ├── justifyfull.gif ├── justifyleft.gif ├── justifyright.gif ├── link.gif ├── makechem.gif ├── makegreek.gif ├── outdent.gif ├── paste.gif ├── redo.gif ├── removeformat.gif ├── specialchar.gif ├── strikethrough.gif ├── subscript.gif ├── superscript.gif ├── underline.gif ├── undo.gif └── upsize.gif └── wyzzstyles ├── editarea.css └── style.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/.htaccess -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/COPYING -------------------------------------------------------------------------------- /FPDF/font/courier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/courier.php -------------------------------------------------------------------------------- /FPDF/font/courierb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/courierb.php -------------------------------------------------------------------------------- /FPDF/font/courierbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/courierbi.php -------------------------------------------------------------------------------- /FPDF/font/courieri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/courieri.php -------------------------------------------------------------------------------- /FPDF/font/helvetica.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/helvetica.php -------------------------------------------------------------------------------- /FPDF/font/helveticab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/helveticab.php -------------------------------------------------------------------------------- /FPDF/font/helveticabi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/helveticabi.php -------------------------------------------------------------------------------- /FPDF/font/helveticai.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/helveticai.php -------------------------------------------------------------------------------- /FPDF/font/symbol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/symbol.php -------------------------------------------------------------------------------- /FPDF/font/times.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/times.php -------------------------------------------------------------------------------- /FPDF/font/timesb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/timesb.php -------------------------------------------------------------------------------- /FPDF/font/timesbi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/timesbi.php -------------------------------------------------------------------------------- /FPDF/font/timesi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/timesi.php -------------------------------------------------------------------------------- /FPDF/font/zapfdingbats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/font/zapfdingbats.php -------------------------------------------------------------------------------- /FPDF/fpdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/fpdf.css -------------------------------------------------------------------------------- /FPDF/fpdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/fpdf.php -------------------------------------------------------------------------------- /FPDF/html_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/html_table.php -------------------------------------------------------------------------------- /FPDF/htmlparser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/htmlparser.inc -------------------------------------------------------------------------------- /FPDF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/license.txt -------------------------------------------------------------------------------- /FPDF/makefont/cp1250.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1250.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1251.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1251.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1252.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1252.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1253.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1253.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1254.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1254.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1255.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1255.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1257.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1257.map -------------------------------------------------------------------------------- /FPDF/makefont/cp1258.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp1258.map -------------------------------------------------------------------------------- /FPDF/makefont/cp874.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/cp874.map -------------------------------------------------------------------------------- /FPDF/makefont/koi8-r.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/koi8-r.map -------------------------------------------------------------------------------- /FPDF/makefont/koi8-u.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/koi8-u.map -------------------------------------------------------------------------------- /FPDF/makefont/makefont.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/makefont/makefont.php -------------------------------------------------------------------------------- /FPDF/mem_image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/FPDF/mem_image.php -------------------------------------------------------------------------------- /File/Archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive.php -------------------------------------------------------------------------------- /File/Archive/Predicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive/Predicate.php -------------------------------------------------------------------------------- /File/Archive/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive/Reader.php -------------------------------------------------------------------------------- /File/Archive/Reader/Ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive/Reader/Ar.php -------------------------------------------------------------------------------- /File/Archive/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive/Writer.php -------------------------------------------------------------------------------- /File/Archive/Writer/Ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/File/Archive/Writer/Ar.php -------------------------------------------------------------------------------- /HTTP/Request2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/HTTP/Request2.php -------------------------------------------------------------------------------- /HTTP/Request2/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/HTTP/Request2/Adapter.php -------------------------------------------------------------------------------- /HTTP/Request2/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/HTTP/Request2/Response.php -------------------------------------------------------------------------------- /HTTP/Request2/SOCKS5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/HTTP/Request2/SOCKS5.php -------------------------------------------------------------------------------- /INSTALL/INSTALL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/INSTALL/INSTALL.html -------------------------------------------------------------------------------- /INSTALL/install.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /INSTALL/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/INSTALL/install.js -------------------------------------------------------------------------------- /JChemPaint/lgpl.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/JChemPaint/lgpl.license -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/LICENSE -------------------------------------------------------------------------------- /MIME/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/MIME/Type.php -------------------------------------------------------------------------------- /MIME/Type/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/MIME/Type/Extension.php -------------------------------------------------------------------------------- /MIME/Type/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/MIME/Type/Parameter.php -------------------------------------------------------------------------------- /Net/URL2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/Net/URL2.php -------------------------------------------------------------------------------- /OLE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/OLE.php -------------------------------------------------------------------------------- /OLE/ChainedBlockStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/OLE/ChainedBlockStream.php -------------------------------------------------------------------------------- /OLE/PPS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/OLE/PPS.php -------------------------------------------------------------------------------- /OLE/PPS/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/OLE/PPS/File.php -------------------------------------------------------------------------------- /OLE/PPS/Root.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/OLE/PPS/Root.php -------------------------------------------------------------------------------- /QDBS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/QDBS.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/README.md -------------------------------------------------------------------------------- /SimpleXLS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/SimpleXLS.php -------------------------------------------------------------------------------- /SimpleXLSX.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/SimpleXLSX.php -------------------------------------------------------------------------------- /SketchEl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/SketchEl.jar -------------------------------------------------------------------------------- /Test.cdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/Test.cdx -------------------------------------------------------------------------------- /UPDATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/UPDATE -------------------------------------------------------------------------------- /UPDATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/UPDATE.txt -------------------------------------------------------------------------------- /VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VERSION.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 2021-05-06 2 | -------------------------------------------------------------------------------- /VecMol/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/1x1.png -------------------------------------------------------------------------------- /VecMol/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/constants.js -------------------------------------------------------------------------------- /VecMol/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/help.css -------------------------------------------------------------------------------- /VecMol/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/help.html -------------------------------------------------------------------------------- /VecMol/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/help.js -------------------------------------------------------------------------------- /VecMol/icons/3d_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/3d_rotate.png -------------------------------------------------------------------------------- /VecMol/icons/3d_rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/3d_rotate.svg -------------------------------------------------------------------------------- /VecMol/icons/any.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/any.png -------------------------------------------------------------------------------- /VecMol/icons/any.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/any.svg -------------------------------------------------------------------------------- /VecMol/icons/aromatic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/aromatic.png -------------------------------------------------------------------------------- /VecMol/icons/aromatic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/aromatic.svg -------------------------------------------------------------------------------- /VecMol/icons/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/arrow.png -------------------------------------------------------------------------------- /VecMol/icons/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/arrow.svg -------------------------------------------------------------------------------- /VecMol/icons/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/chain.png -------------------------------------------------------------------------------- /VecMol/icons/chain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/chain.svg -------------------------------------------------------------------------------- /VecMol/icons/clean2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/clean2d.png -------------------------------------------------------------------------------- /VecMol/icons/clean2d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/clean2d.svg -------------------------------------------------------------------------------- /VecMol/icons/clean3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/clean3d.png -------------------------------------------------------------------------------- /VecMol/icons/clean3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/clean3d.svg -------------------------------------------------------------------------------- /VecMol/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/close.png -------------------------------------------------------------------------------- /VecMol/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/close.svg -------------------------------------------------------------------------------- /VecMol/icons/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/collapse.png -------------------------------------------------------------------------------- /VecMol/icons/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/collapse.svg -------------------------------------------------------------------------------- /VecMol/icons/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/del.png -------------------------------------------------------------------------------- /VecMol/icons/del.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/del.svg -------------------------------------------------------------------------------- /VecMol/icons/double.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/double.png -------------------------------------------------------------------------------- /VecMol/icons/double.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/double.svg -------------------------------------------------------------------------------- /VecMol/icons/edit-copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-copy.png -------------------------------------------------------------------------------- /VecMol/icons/edit-copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-copy.svg -------------------------------------------------------------------------------- /VecMol/icons/edit-cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-cut.png -------------------------------------------------------------------------------- /VecMol/icons/edit-cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-cut.svg -------------------------------------------------------------------------------- /VecMol/icons/edit-redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-redo.png -------------------------------------------------------------------------------- /VecMol/icons/edit-redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-redo.svg -------------------------------------------------------------------------------- /VecMol/icons/edit-undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-undo.png -------------------------------------------------------------------------------- /VecMol/icons/edit-undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/edit-undo.svg -------------------------------------------------------------------------------- /VecMol/icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/expand.png -------------------------------------------------------------------------------- /VecMol/icons/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/expand.svg -------------------------------------------------------------------------------- /VecMol/icons/flip-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/flip-x.png -------------------------------------------------------------------------------- /VecMol/icons/flip-x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/flip-x.svg -------------------------------------------------------------------------------- /VecMol/icons/flip-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/flip-y.png -------------------------------------------------------------------------------- /VecMol/icons/flip-y.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/flip-y.svg -------------------------------------------------------------------------------- /VecMol/icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/group.png -------------------------------------------------------------------------------- /VecMol/icons/group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/group.svg -------------------------------------------------------------------------------- /VecMol/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/help.png -------------------------------------------------------------------------------- /VecMol/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/help.svg -------------------------------------------------------------------------------- /VecMol/icons/hotspot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/hotspot.png -------------------------------------------------------------------------------- /VecMol/icons/hotspot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/hotspot.svg -------------------------------------------------------------------------------- /VecMol/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/info.png -------------------------------------------------------------------------------- /VecMol/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/info.svg -------------------------------------------------------------------------------- /VecMol/icons/molecule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/molecule.svg -------------------------------------------------------------------------------- /VecMol/icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/plus.png -------------------------------------------------------------------------------- /VecMol/icons/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/plus.svg -------------------------------------------------------------------------------- /VecMol/icons/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/rotate.png -------------------------------------------------------------------------------- /VecMol/icons/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/rotate.svg -------------------------------------------------------------------------------- /VecMol/icons/sel-lasso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/sel-lasso.png -------------------------------------------------------------------------------- /VecMol/icons/sel-lasso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/sel-lasso.svg -------------------------------------------------------------------------------- /VecMol/icons/sel-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/sel-rect.png -------------------------------------------------------------------------------- /VecMol/icons/sel-rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/sel-rect.svg -------------------------------------------------------------------------------- /VecMol/icons/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/single.png -------------------------------------------------------------------------------- /VecMol/icons/single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/single.svg -------------------------------------------------------------------------------- /VecMol/icons/stereo-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/stereo-up.png -------------------------------------------------------------------------------- /VecMol/icons/stereo-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/stereo-up.svg -------------------------------------------------------------------------------- /VecMol/icons/triple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/triple.png -------------------------------------------------------------------------------- /VecMol/icons/triple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/triple.svg -------------------------------------------------------------------------------- /VecMol/icons/ungroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/ungroup.png -------------------------------------------------------------------------------- /VecMol/icons/ungroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/ungroup.svg -------------------------------------------------------------------------------- /VecMol/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/zoom-in.png -------------------------------------------------------------------------------- /VecMol/icons/zoom-in.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/zoom-in.svg -------------------------------------------------------------------------------- /VecMol/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/zoom-out.png -------------------------------------------------------------------------------- /VecMol/icons/zoom-out.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/icons/zoom-out.svg -------------------------------------------------------------------------------- /VecMol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/index.html -------------------------------------------------------------------------------- /VecMol/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/info.html -------------------------------------------------------------------------------- /VecMol/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/lang.js -------------------------------------------------------------------------------- /VecMol/lang_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/lang_de.js -------------------------------------------------------------------------------- /VecMol/lang_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/lang_en.js -------------------------------------------------------------------------------- /VecMol/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/lib.js -------------------------------------------------------------------------------- /VecMol/mit_lic/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/mit_lic/LICENSE.txt -------------------------------------------------------------------------------- /VecMol/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/style.css -------------------------------------------------------------------------------- /VecMol/templates/0.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/0.mol -------------------------------------------------------------------------------- /VecMol/templates/1.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/1.mol -------------------------------------------------------------------------------- /VecMol/templates/2.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/2.mol -------------------------------------------------------------------------------- /VecMol/templates/3.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/3.mol -------------------------------------------------------------------------------- /VecMol/templates/4.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/4.mol -------------------------------------------------------------------------------- /VecMol/templates/5.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/5.mol -------------------------------------------------------------------------------- /VecMol/templates/6.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/6.mol -------------------------------------------------------------------------------- /VecMol/templates/7.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/templates/7.mol -------------------------------------------------------------------------------- /VecMol/vecmol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/VecMol/vecmol.css -------------------------------------------------------------------------------- /analytics/converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/converter.php -------------------------------------------------------------------------------- /analytics/gc/agilent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/gc/agilent.php -------------------------------------------------------------------------------- /analytics/graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/graph.php -------------------------------------------------------------------------------- /analytics/hplc/lachrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/hplc/lachrom.php -------------------------------------------------------------------------------- /analytics/ic/metrohm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ic/metrohm.php -------------------------------------------------------------------------------- /analytics/ir/ascii.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ir/ascii.php -------------------------------------------------------------------------------- /analytics/ir/irf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ir/irf.php -------------------------------------------------------------------------------- /analytics/ir/jcampIR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ir/jcampIR.php -------------------------------------------------------------------------------- /analytics/ir/sp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ir/sp.php -------------------------------------------------------------------------------- /analytics/ir/spc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/ir/spc.php -------------------------------------------------------------------------------- /analytics/nmr/bruker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/nmr/bruker.php -------------------------------------------------------------------------------- /analytics/nmr/bruker2d.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/nmr/bruker2d.php -------------------------------------------------------------------------------- /analytics/nmr/jcampNMR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/nmr/jcampNMR.php -------------------------------------------------------------------------------- /analytics/tnr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analytics/tnr.ttf -------------------------------------------------------------------------------- /analyzeFP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/analyzeFP.php -------------------------------------------------------------------------------- /applet_interchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/applet_interchange.php -------------------------------------------------------------------------------- /applet_test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/applet_test.php -------------------------------------------------------------------------------- /applet_test_async.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/applet_test_async.php -------------------------------------------------------------------------------- /autoini.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/autoini.ahk -------------------------------------------------------------------------------- /autoini.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/autoini.exe -------------------------------------------------------------------------------- /backup_v2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/backup_v2.bat -------------------------------------------------------------------------------- /backup_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/backup_v2.sh -------------------------------------------------------------------------------- /backup_v3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/backup_v3.bat -------------------------------------------------------------------------------- /balance.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/balance.ahk -------------------------------------------------------------------------------- /balance.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/balance.exe -------------------------------------------------------------------------------- /balance.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/balance.ini -------------------------------------------------------------------------------- /barcodeTerminal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/barcodeTerminal.php -------------------------------------------------------------------------------- /barcodeTerminalAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/barcodeTerminalAsync.php -------------------------------------------------------------------------------- /barcode_autogeneration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/barcode_autogeneration.php -------------------------------------------------------------------------------- /blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/blank.php -------------------------------------------------------------------------------- /change_pw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/change_pw.php -------------------------------------------------------------------------------- /checkBarcodeAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/checkBarcodeAsync.php -------------------------------------------------------------------------------- /check_double.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/check_double.php -------------------------------------------------------------------------------- /check_literature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/check_literature.php -------------------------------------------------------------------------------- /check_reaction_mapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/check_reaction_mapping.php -------------------------------------------------------------------------------- /check_scraping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/check_scraping.php -------------------------------------------------------------------------------- /check_substruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/check_substruct.php -------------------------------------------------------------------------------- /chemdraw/chemdraw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/chemdraw/chemdraw.php -------------------------------------------------------------------------------- /chemdraw/config-small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/chemdraw/config-small.json -------------------------------------------------------------------------------- /chemdraw/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/chemdraw/config.json -------------------------------------------------------------------------------- /chooseAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/chooseAsync.php -------------------------------------------------------------------------------- /clipAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/clipAsync.php -------------------------------------------------------------------------------- /copyReaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/copyReaction.php -------------------------------------------------------------------------------- /credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/credits.php -------------------------------------------------------------------------------- /delete_multiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/delete_multiple.php -------------------------------------------------------------------------------- /dynamic.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/dynamic.js.php -------------------------------------------------------------------------------- /edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/edit.php -------------------------------------------------------------------------------- /editAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/editAsync.php -------------------------------------------------------------------------------- /editWin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/editWin.php -------------------------------------------------------------------------------- /export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/export.php -------------------------------------------------------------------------------- /export_setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/export_setup.php -------------------------------------------------------------------------------- /extras/searchCritArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/extras/searchCritArray.php -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/favicon.ico -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/favicon.png -------------------------------------------------------------------------------- /fixDensity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/fixDensity.php -------------------------------------------------------------------------------- /fixFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/fixFields.php -------------------------------------------------------------------------------- /flame.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/flame.swf -------------------------------------------------------------------------------- /forms/analytics/hrms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/forms/analytics/hrms.txt -------------------------------------------------------------------------------- /forms/dymo/reaction.label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/forms/dymo/reaction.label -------------------------------------------------------------------------------- /fr.cdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/fr.cdx -------------------------------------------------------------------------------- /fr2.cdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/fr2.cdx -------------------------------------------------------------------------------- /g_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/g_settings.php -------------------------------------------------------------------------------- /getBarcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getBarcode.php -------------------------------------------------------------------------------- /getBarcode128.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getBarcode128.php -------------------------------------------------------------------------------- /getBarcodePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getBarcodePage.php -------------------------------------------------------------------------------- /getDateRangeCMRReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getDateRangeCMRReport.php -------------------------------------------------------------------------------- /getGif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getGif.php -------------------------------------------------------------------------------- /getInstructions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getInstructions.php -------------------------------------------------------------------------------- /getLiterature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getLiterature.php -------------------------------------------------------------------------------- /getMolfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getMolfile.php -------------------------------------------------------------------------------- /getPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getPDF.php -------------------------------------------------------------------------------- /getPersonCMRReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getPersonCMRReport.php -------------------------------------------------------------------------------- /getPrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getPrice.php -------------------------------------------------------------------------------- /getResultList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getResultList.php -------------------------------------------------------------------------------- /getSafetySheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getSafetySheet.php -------------------------------------------------------------------------------- /getSpz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getSpz.php -------------------------------------------------------------------------------- /getSrc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/getSrc.php -------------------------------------------------------------------------------- /graphViewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/graphViewer.php -------------------------------------------------------------------------------- /imes-v0-r540.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/imes-v0-r540.jar -------------------------------------------------------------------------------- /imes_de.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/imes_de.pdf -------------------------------------------------------------------------------- /imes_en.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/imes_en.pdf -------------------------------------------------------------------------------- /imes_es.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/imes_es.pdf -------------------------------------------------------------------------------- /imes_fr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/imes_fr.pdf -------------------------------------------------------------------------------- /img/aqua_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/aqua_dayDown.gif -------------------------------------------------------------------------------- /img/aqua_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/aqua_dayNormal.gif -------------------------------------------------------------------------------- /img/aqua_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/aqua_dayOver.gif -------------------------------------------------------------------------------- /img/armygreen_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/armygreen_dayDown.gif -------------------------------------------------------------------------------- /img/armygreen_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/armygreen_dayOver.gif -------------------------------------------------------------------------------- /img/beige_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/beige_dayDown.gif -------------------------------------------------------------------------------- /img/beige_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/beige_dayNormal.gif -------------------------------------------------------------------------------- /img/beige_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/beige_dayOver.gif -------------------------------------------------------------------------------- /img/deepblue_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/deepblue_dayDown.gif -------------------------------------------------------------------------------- /img/deepblue_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/deepblue_dayNormal.gif -------------------------------------------------------------------------------- /img/deepblue_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/deepblue_dayOver.gif -------------------------------------------------------------------------------- /img/greenish_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/greenish_dayDown.gif -------------------------------------------------------------------------------- /img/greenish_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/greenish_dayNormal.gif -------------------------------------------------------------------------------- /img/greenish_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/greenish_dayOver.gif -------------------------------------------------------------------------------- /img/lightgreen_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/lightgreen_dayDown.gif -------------------------------------------------------------------------------- /img/lightgreen_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/lightgreen_dayOver.gif -------------------------------------------------------------------------------- /img/ocean_blue_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/ocean_blue_dayDown.gif -------------------------------------------------------------------------------- /img/ocean_blue_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/ocean_blue_dayOver.gif -------------------------------------------------------------------------------- /img/orange_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/orange_dayDown.gif -------------------------------------------------------------------------------- /img/orange_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/orange_dayNormal.gif -------------------------------------------------------------------------------- /img/orange_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/orange_dayOver.gif -------------------------------------------------------------------------------- /img/peppermint_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/peppermint_dayDown.gif -------------------------------------------------------------------------------- /img/peppermint_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/peppermint_dayOver.gif -------------------------------------------------------------------------------- /img/pink_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/pink_dayDown.gif -------------------------------------------------------------------------------- /img/pink_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/pink_dayNormal.gif -------------------------------------------------------------------------------- /img/pink_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/pink_dayOver.gif -------------------------------------------------------------------------------- /img/purple_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/purple_dayDown.gif -------------------------------------------------------------------------------- /img/purple_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/purple_dayNormal.gif -------------------------------------------------------------------------------- /img/purple_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/purple_dayOver.gif -------------------------------------------------------------------------------- /img/torqoise_dayDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/torqoise_dayDown.gif -------------------------------------------------------------------------------- /img/torqoise_dayNormal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/torqoise_dayNormal.gif -------------------------------------------------------------------------------- /img/torqoise_dayOver.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/img/torqoise_dayOver.gif -------------------------------------------------------------------------------- /import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import.php -------------------------------------------------------------------------------- /importLJ.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/importLJ.php -------------------------------------------------------------------------------- /import_ausgabe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_ausgabe.php -------------------------------------------------------------------------------- /import_bessi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_bessi.php -------------------------------------------------------------------------------- /import_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_edit.php -------------------------------------------------------------------------------- /import_iciq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_iciq.php -------------------------------------------------------------------------------- /import_only.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_only.php -------------------------------------------------------------------------------- /import_sial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/import_sial.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/index.php -------------------------------------------------------------------------------- /install_open_enventory.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/install_open_enventory.sh -------------------------------------------------------------------------------- /jakarta-commons-net.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/jakarta-commons-net.jar -------------------------------------------------------------------------------- /jakarta-commons-oro.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/jakarta-commons-oro.jar -------------------------------------------------------------------------------- /ketcher/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/LICENSE.GPL -------------------------------------------------------------------------------- /ketcher/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/base64.js -------------------------------------------------------------------------------- /ketcher/chem/cis_trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/cis_trans.js -------------------------------------------------------------------------------- /ketcher/chem/dfs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/dfs.js -------------------------------------------------------------------------------- /ketcher/chem/element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/element.js -------------------------------------------------------------------------------- /ketcher/chem/inchi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/inchi.js -------------------------------------------------------------------------------- /ketcher/chem/molfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/molfile.js -------------------------------------------------------------------------------- /ketcher/chem/sgroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/sgroup.js -------------------------------------------------------------------------------- /ketcher/chem/smiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/smiles.js -------------------------------------------------------------------------------- /ketcher/chem/struct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/chem/struct.js -------------------------------------------------------------------------------- /ketcher/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/demo.html -------------------------------------------------------------------------------- /ketcher/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/favicon.ico -------------------------------------------------------------------------------- /ketcher/ketcher-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ketcher-server.py -------------------------------------------------------------------------------- /ketcher/ketcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ketcher.css -------------------------------------------------------------------------------- /ketcher/ketcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ketcher.html -------------------------------------------------------------------------------- /ketcher/ketcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ketcher.js -------------------------------------------------------------------------------- /ketcher/ketcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ketcher.py -------------------------------------------------------------------------------- /ketcher/layout_patterns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/layout_patterns.sh -------------------------------------------------------------------------------- /ketcher/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/loading.gif -------------------------------------------------------------------------------- /ketcher/mol/crossed.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/mol/crossed.mol -------------------------------------------------------------------------------- /ketcher/mol/down.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/mol/down.mol -------------------------------------------------------------------------------- /ketcher/mol/up.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/mol/up.mol -------------------------------------------------------------------------------- /ketcher/mol/updown.mol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/mol/updown.mol -------------------------------------------------------------------------------- /ketcher/oe_mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/oe_mod.js -------------------------------------------------------------------------------- /ketcher/pack-zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/pack-zip.sh -------------------------------------------------------------------------------- /ketcher/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/pack.sh -------------------------------------------------------------------------------- /ketcher/png/atom/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/br.png -------------------------------------------------------------------------------- /ketcher/png/atom/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/c.png -------------------------------------------------------------------------------- /ketcher/png/atom/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/cl.png -------------------------------------------------------------------------------- /ketcher/png/atom/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/f.png -------------------------------------------------------------------------------- /ketcher/png/atom/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/h.png -------------------------------------------------------------------------------- /ketcher/png/atom/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/i.png -------------------------------------------------------------------------------- /ketcher/png/atom/n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/n.png -------------------------------------------------------------------------------- /ketcher/png/atom/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/o.png -------------------------------------------------------------------------------- /ketcher/png/atom/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/p.png -------------------------------------------------------------------------------- /ketcher/png/atom/s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/atom/s.png -------------------------------------------------------------------------------- /ketcher/png/bond/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/bond/down.png -------------------------------------------------------------------------------- /ketcher/png/bond/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/bond/up.png -------------------------------------------------------------------------------- /ketcher/png/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/dropdown.png -------------------------------------------------------------------------------- /ketcher/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/png/logo.png -------------------------------------------------------------------------------- /ketcher/prototype-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/prototype-min.js -------------------------------------------------------------------------------- /ketcher/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/raphael-min.js -------------------------------------------------------------------------------- /ketcher/raphael.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/raphael.js -------------------------------------------------------------------------------- /ketcher/reaxys/reaxys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/reaxys/reaxys.js -------------------------------------------------------------------------------- /ketcher/render_buttons.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/render_buttons.sh -------------------------------------------------------------------------------- /ketcher/render_sdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/render_sdf.sh -------------------------------------------------------------------------------- /ketcher/rnd/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/editor.js -------------------------------------------------------------------------------- /ketcher/rnd/elem_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/elem_table.js -------------------------------------------------------------------------------- /ketcher/rnd/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/events.js -------------------------------------------------------------------------------- /ketcher/rnd/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/render.js -------------------------------------------------------------------------------- /ketcher/rnd/restruct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/restruct.js -------------------------------------------------------------------------------- /ketcher/rnd/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/templates.js -------------------------------------------------------------------------------- /ketcher/rnd/visel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/rnd/visel.js -------------------------------------------------------------------------------- /ketcher/server/ketcher_server.explist: -------------------------------------------------------------------------------- 1 | _ketcherServer* 2 | -------------------------------------------------------------------------------- /ketcher/templates.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/templates.sdf -------------------------------------------------------------------------------- /ketcher/ui/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ui/actions.js -------------------------------------------------------------------------------- /ketcher/ui/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/ui/ui.js -------------------------------------------------------------------------------- /ketcher/util/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/util/common.js -------------------------------------------------------------------------------- /ketcher/util/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/util/map.js -------------------------------------------------------------------------------- /ketcher/util/pool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/util/pool.js -------------------------------------------------------------------------------- /ketcher/util/set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/util/set.js -------------------------------------------------------------------------------- /ketcher/util/vec2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher/util/vec2.js -------------------------------------------------------------------------------- /ketcher2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/LICENSE -------------------------------------------------------------------------------- /ketcher2/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/demo.html -------------------------------------------------------------------------------- /ketcher2/doc/analyse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/analyse.png -------------------------------------------------------------------------------- /ketcher2/doc/bond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/bond.png -------------------------------------------------------------------------------- /ketcher2/doc/bonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/bonds.png -------------------------------------------------------------------------------- /ketcher2/doc/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/chain.png -------------------------------------------------------------------------------- /ketcher2/doc/charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/charge.png -------------------------------------------------------------------------------- /ketcher2/doc/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/check.png -------------------------------------------------------------------------------- /ketcher2/doc/collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/collapsed.png -------------------------------------------------------------------------------- /ketcher2/doc/expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/expanded.png -------------------------------------------------------------------------------- /ketcher2/doc/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/help.html -------------------------------------------------------------------------------- /ketcher2/doc/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/main.png -------------------------------------------------------------------------------- /ketcher2/doc/miew-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/miew-menu.png -------------------------------------------------------------------------------- /ketcher2/doc/miew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/miew.png -------------------------------------------------------------------------------- /ketcher2/doc/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/open.png -------------------------------------------------------------------------------- /ketcher2/doc/reaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/reaction.png -------------------------------------------------------------------------------- /ketcher2/doc/rgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/rgroup.png -------------------------------------------------------------------------------- /ketcher2/doc/rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/rotate.png -------------------------------------------------------------------------------- /ketcher2/doc/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/save.png -------------------------------------------------------------------------------- /ketcher2/doc/sdata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/sdata.png -------------------------------------------------------------------------------- /ketcher2/doc/sgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/doc/sgroup.png -------------------------------------------------------------------------------- /ketcher2/ketcher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/ketcher.css -------------------------------------------------------------------------------- /ketcher2/ketcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/ketcher.html -------------------------------------------------------------------------------- /ketcher2/ketcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/ketcher.js -------------------------------------------------------------------------------- /ketcher2/ketcher.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/ketcher.js.map -------------------------------------------------------------------------------- /ketcher2/ketcher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/ketcher.svg -------------------------------------------------------------------------------- /ketcher2/library.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/library.sdf -------------------------------------------------------------------------------- /ketcher2/library.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/library.svg -------------------------------------------------------------------------------- /ketcher2/oe_mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/oe_mod.js -------------------------------------------------------------------------------- /ketcher2/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/ketcher2/raphael.min.js -------------------------------------------------------------------------------- /labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/labels.php -------------------------------------------------------------------------------- /labels.php.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/labels.php.old -------------------------------------------------------------------------------- /lib/1st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/1st.png -------------------------------------------------------------------------------- /lib/1st_deac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/1st_deac.png -------------------------------------------------------------------------------- /lib/1x1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/1x1.gif -------------------------------------------------------------------------------- /lib/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/1x1.png -------------------------------------------------------------------------------- /lib/1x1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/1x1.svg -------------------------------------------------------------------------------- /lib/BLD_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/BLD_logo.png -------------------------------------------------------------------------------- /lib/ChEBI.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/ChEBI.gif -------------------------------------------------------------------------------- /lib/DYMO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/DYMO.js -------------------------------------------------------------------------------- /lib/E003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/E003.png -------------------------------------------------------------------------------- /lib/E004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/E004.png -------------------------------------------------------------------------------- /lib/E009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/E009.png -------------------------------------------------------------------------------- /lib/E011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/E011.png -------------------------------------------------------------------------------- /lib/E012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/E012.png -------------------------------------------------------------------------------- /lib/F006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/F006.png -------------------------------------------------------------------------------- /lib/LogoAcros.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/LogoAcros.jpg -------------------------------------------------------------------------------- /lib/M001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M001.png -------------------------------------------------------------------------------- /lib/M002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M002.png -------------------------------------------------------------------------------- /lib/M004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M004.png -------------------------------------------------------------------------------- /lib/M005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M005.png -------------------------------------------------------------------------------- /lib/M008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M008.png -------------------------------------------------------------------------------- /lib/M009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M009.png -------------------------------------------------------------------------------- /lib/M010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M010.png -------------------------------------------------------------------------------- /lib/M011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M011.png -------------------------------------------------------------------------------- /lib/M013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M013.png -------------------------------------------------------------------------------- /lib/M016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M016.png -------------------------------------------------------------------------------- /lib/M017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M017.png -------------------------------------------------------------------------------- /lib/M022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M022.png -------------------------------------------------------------------------------- /lib/M026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/M026.png -------------------------------------------------------------------------------- /lib/P003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/P003.png -------------------------------------------------------------------------------- /lib/P011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/P011.png -------------------------------------------------------------------------------- /lib/active_rent_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/active_rent_sm.png -------------------------------------------------------------------------------- /lib/add_line_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/add_line_sm.png -------------------------------------------------------------------------------- /lib/add_line_vsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/add_line_vsm.png -------------------------------------------------------------------------------- /lib/add_standard_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/add_standard_sm.png -------------------------------------------------------------------------------- /lib/agplv3-155x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/agplv3-155x51.png -------------------------------------------------------------------------------- /lib/agplv3-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/agplv3-88x31.png -------------------------------------------------------------------------------- /lib/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/all.png -------------------------------------------------------------------------------- /lib/applichem.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/applichem.jpg -------------------------------------------------------------------------------- /lib/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/arial.ttf -------------------------------------------------------------------------------- /lib/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/array.js -------------------------------------------------------------------------------- /lib/aslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/aslogo.png -------------------------------------------------------------------------------- /lib/ausleihen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/ausleihen.wav -------------------------------------------------------------------------------- /lib/auto_gc_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/auto_gc_sm.png -------------------------------------------------------------------------------- /lib/auto_gc_sm_deac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/auto_gc_sm_deac.png -------------------------------------------------------------------------------- /lib/auto_trans_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/auto_trans_sm.png -------------------------------------------------------------------------------- /lib/barcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/barcode.js -------------------------------------------------------------------------------- /lib/barcode_terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/barcode_terminal.js -------------------------------------------------------------------------------- /lib/blueline_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/blueline_bg.png -------------------------------------------------------------------------------- /lib/borrow_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/borrow_sm.png -------------------------------------------------------------------------------- /lib/brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/brackets.png -------------------------------------------------------------------------------- /lib/bring_back_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/bring_back_sm.png -------------------------------------------------------------------------------- /lib/cancel_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/cancel_sm.png -------------------------------------------------------------------------------- /lib/carl_roth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/carl_roth.jpg -------------------------------------------------------------------------------- /lib/cas_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/cas_sm.png -------------------------------------------------------------------------------- /lib/chem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chem.js -------------------------------------------------------------------------------- /lib/chem_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chem_order.js -------------------------------------------------------------------------------- /lib/chembook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chembook.gif -------------------------------------------------------------------------------- /lib/chemielogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chemielogo.gif -------------------------------------------------------------------------------- /lib/chn_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chn_sm.png -------------------------------------------------------------------------------- /lib/chn_vsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/chn_vsm.png -------------------------------------------------------------------------------- /lib/client_cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/client_cache.js -------------------------------------------------------------------------------- /lib/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/collapse.png -------------------------------------------------------------------------------- /lib/compare_rxn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/compare_rxn.js -------------------------------------------------------------------------------- /lib/compare_rxn_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/compare_rxn_sm.png -------------------------------------------------------------------------------- /lib/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/controls.js -------------------------------------------------------------------------------- /lib/copy_rxn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/copy_rxn.js -------------------------------------------------------------------------------- /lib/copy_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/copy_sm.png -------------------------------------------------------------------------------- /lib/corrosive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/corrosive.gif -------------------------------------------------------------------------------- /lib/cost_centre_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/cost_centre_sm.png -------------------------------------------------------------------------------- /lib/danger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/danger.gif -------------------------------------------------------------------------------- /lib/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/del.png -------------------------------------------------------------------------------- /lib/del_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/del_sm.png -------------------------------------------------------------------------------- /lib/del_sm_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/del_sm_old.png -------------------------------------------------------------------------------- /lib/del_vsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/del_vsm.png -------------------------------------------------------------------------------- /lib/details_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/details_sm.png -------------------------------------------------------------------------------- /lib/details_sm_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/details_sm_old.png -------------------------------------------------------------------------------- /lib/discount_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/discount_sm.png -------------------------------------------------------------------------------- /lib/dispose_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/dispose_sm.png -------------------------------------------------------------------------------- /lib/doi_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/doi_sm.png -------------------------------------------------------------------------------- /lib/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/down.png -------------------------------------------------------------------------------- /lib/down_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/down_sel.png -------------------------------------------------------------------------------- /lib/down_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/down_sm.png -------------------------------------------------------------------------------- /lib/down_vsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/down_vsm.png -------------------------------------------------------------------------------- /lib/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/dropdown.png -------------------------------------------------------------------------------- /lib/drugbank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/drugbank.jpg -------------------------------------------------------------------------------- /lib/dygraph-combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/dygraph-combined.js -------------------------------------------------------------------------------- /lib/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/edit.js -------------------------------------------------------------------------------- /lib/edit_col_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/edit_col_sm.png -------------------------------------------------------------------------------- /lib/edit_rc_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/edit_rc_sm.png -------------------------------------------------------------------------------- /lib/edit_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/edit_sm.png -------------------------------------------------------------------------------- /lib/error.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/error.wav -------------------------------------------------------------------------------- /lib/eurisotop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/eurisotop.gif -------------------------------------------------------------------------------- /lib/exit_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/exit_sm.png -------------------------------------------------------------------------------- /lib/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/expand.png -------------------------------------------------------------------------------- /lib/export_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/export_sm.png -------------------------------------------------------------------------------- /lib/export_sm_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/export_sm_old.png -------------------------------------------------------------------------------- /lib/exposive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/exposive.gif -------------------------------------------------------------------------------- /lib/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/external.png -------------------------------------------------------------------------------- /lib/fb_basel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/fb_basel.gif -------------------------------------------------------------------------------- /lib/fb_venezia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/fb_venezia.gif -------------------------------------------------------------------------------- /lib/fci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/fci.jpg -------------------------------------------------------------------------------- /lib/fermentas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/fermentas.gif -------------------------------------------------------------------------------- /lib/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/filter.png -------------------------------------------------------------------------------- /lib/filter_off_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/filter_off_sm.png -------------------------------------------------------------------------------- /lib/flamm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/flamm.gif -------------------------------------------------------------------------------- /lib/folder_browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/folder_browser.js -------------------------------------------------------------------------------- /lib/formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/formatting.js -------------------------------------------------------------------------------- /lib/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/forms.js -------------------------------------------------------------------------------- /lib/gc_cross.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/gc_cross.js -------------------------------------------------------------------------------- /lib/gc_cross_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/gc_cross_sm.png -------------------------------------------------------------------------------- /lib/gc_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/gc_sm.png -------------------------------------------------------------------------------- /lib/giffile_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/giffile_sm.png -------------------------------------------------------------------------------- /lib/goto_mol_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/goto_mol_sm.png -------------------------------------------------------------------------------- /lib/goto_vendor_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/goto_vendor_sm.png -------------------------------------------------------------------------------- /lib/harmful.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/harmful.gif -------------------------------------------------------------------------------- /lib/help_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/help_sm.png -------------------------------------------------------------------------------- /lib/hide_column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/hide_column.png -------------------------------------------------------------------------------- /lib/iciq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/iciq.jpg -------------------------------------------------------------------------------- /lib/iciq_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/iciq_logo.jpg -------------------------------------------------------------------------------- /lib/img/boxTopPx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/img/boxTopPx.gif -------------------------------------------------------------------------------- /lib/img/boxTopPx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/img/boxTopPx.png -------------------------------------------------------------------------------- /lib/info-icon-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/info-icon-33.png -------------------------------------------------------------------------------- /lib/institution_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/institution_sm.png -------------------------------------------------------------------------------- /lib/instructions_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/instructions_sm.png -------------------------------------------------------------------------------- /lib/ioc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/ioc.jpg -------------------------------------------------------------------------------- /lib/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/json.js -------------------------------------------------------------------------------- /lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/json2.js -------------------------------------------------------------------------------- /lib/lab_journal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/lab_journal.png -------------------------------------------------------------------------------- /lib/lab_journal_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/lab_journal_sm.png -------------------------------------------------------------------------------- /lib/label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/label.png -------------------------------------------------------------------------------- /lib/labels1x4_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/labels1x4_sm.png -------------------------------------------------------------------------------- /lib/labels2x5_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/labels2x5_sm.png -------------------------------------------------------------------------------- /lib/labels3x7_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/labels3x7_sm.png -------------------------------------------------------------------------------- /lib/last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/last.png -------------------------------------------------------------------------------- /lib/last_deac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/last_deac.png -------------------------------------------------------------------------------- /lib/latinize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/latinize.js -------------------------------------------------------------------------------- /lib/laws_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/laws_sm.png -------------------------------------------------------------------------------- /lib/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/left.png -------------------------------------------------------------------------------- /lib/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/link.gif -------------------------------------------------------------------------------- /lib/link_act.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/link_act.gif -------------------------------------------------------------------------------- /lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/list.js -------------------------------------------------------------------------------- /lib/list_options_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/list_options_sm.png -------------------------------------------------------------------------------- /lib/list_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/list_sm.png -------------------------------------------------------------------------------- /lib/literature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/literature.js -------------------------------------------------------------------------------- /lib/literature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/literature.png -------------------------------------------------------------------------------- /lib/literature_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/literature_sm.png -------------------------------------------------------------------------------- /lib/lmu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/lmu-logo.png -------------------------------------------------------------------------------- /lib/lock_stoich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/lock_stoich.png -------------------------------------------------------------------------------- /lib/login.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/login.wav -------------------------------------------------------------------------------- /lib/logo_abcr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_abcr.gif -------------------------------------------------------------------------------- /lib/logo_alfa_aesar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_alfa_aesar.jpg -------------------------------------------------------------------------------- /lib/logo_apollo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_apollo.png -------------------------------------------------------------------------------- /lib/logo_biosolve.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_biosolve.gif -------------------------------------------------------------------------------- /lib/logo_cayman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_cayman.png -------------------------------------------------------------------------------- /lib/logo_chemfinder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_chemfinder.gif -------------------------------------------------------------------------------- /lib/logo_fisher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_fisher.gif -------------------------------------------------------------------------------- /lib/logo_flumroc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_flumroc.png -------------------------------------------------------------------------------- /lib/logo_fluorochem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_fluorochem.png -------------------------------------------------------------------------------- /lib/logo_itw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_itw.png -------------------------------------------------------------------------------- /lib/logo_merck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_merck.gif -------------------------------------------------------------------------------- /lib/logo_nist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_nist.gif -------------------------------------------------------------------------------- /lib/logo_rockwool.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_rockwool.jpg -------------------------------------------------------------------------------- /lib/logo_strem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_strem.gif -------------------------------------------------------------------------------- /lib/logo_ubarcelona.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/logo_ubarcelona.jpg -------------------------------------------------------------------------------- /lib/merge_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/merge_sm.png -------------------------------------------------------------------------------- /lib/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/message.js -------------------------------------------------------------------------------- /lib/message_in_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/message_in_sm.png -------------------------------------------------------------------------------- /lib/message_in_sm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/message_in_sm_2.png -------------------------------------------------------------------------------- /lib/message_out_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/message_out_sm.png -------------------------------------------------------------------------------- /lib/message_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/message_sm.png -------------------------------------------------------------------------------- /lib/minerva_kofo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/minerva_kofo.jpg -------------------------------------------------------------------------------- /lib/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/minus.gif -------------------------------------------------------------------------------- /lib/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/minus.png -------------------------------------------------------------------------------- /lib/minus_gray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/minus_gray.gif -------------------------------------------------------------------------------- /lib/minus_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/minus_gray.png -------------------------------------------------------------------------------- /lib/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/misc.js -------------------------------------------------------------------------------- /lib/missed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/missed.js -------------------------------------------------------------------------------- /lib/mit_chem_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/mit_chem_logo.png -------------------------------------------------------------------------------- /lib/mit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/mit_logo.png -------------------------------------------------------------------------------- /lib/molecule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/molecule.png -------------------------------------------------------------------------------- /lib/molecule_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/molecule_edit.js -------------------------------------------------------------------------------- /lib/molecule_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/molecule_sm.png -------------------------------------------------------------------------------- /lib/molfile_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/molfile_sm.png -------------------------------------------------------------------------------- /lib/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/moment.min.js -------------------------------------------------------------------------------- /lib/mpi_order_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/mpi_order_sm.png -------------------------------------------------------------------------------- /lib/nci_logo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/nci_logo2.gif -------------------------------------------------------------------------------- /lib/negativ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/negativ.png -------------------------------------------------------------------------------- /lib/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/new.png -------------------------------------------------------------------------------- /lib/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/next.png -------------------------------------------------------------------------------- /lib/next_deac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/next_deac.png -------------------------------------------------------------------------------- /lib/nok_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/nok_sm.png -------------------------------------------------------------------------------- /lib/oakwood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/oakwood.jpg -------------------------------------------------------------------------------- /lib/ok_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/ok_sm.png -------------------------------------------------------------------------------- /lib/open_env_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/open_env_logo.png -------------------------------------------------------------------------------- /lib/order_comp_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/order_comp_sm.png -------------------------------------------------------------------------------- /lib/other_db_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/other_db_sm.png -------------------------------------------------------------------------------- /lib/oxidizing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/oxidizing.gif -------------------------------------------------------------------------------- /lib/paste_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/paste_sm.png -------------------------------------------------------------------------------- /lib/person_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/person_sm.png -------------------------------------------------------------------------------- /lib/person_sm_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/person_sm_old.png -------------------------------------------------------------------------------- /lib/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/plus.gif -------------------------------------------------------------------------------- /lib/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/plus.png -------------------------------------------------------------------------------- /lib/positiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/positiv.png -------------------------------------------------------------------------------- /lib/pred_nmr_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/pred_nmr_sm.png -------------------------------------------------------------------------------- /lib/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/prev.png -------------------------------------------------------------------------------- /lib/prev_deac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/prev_deac.png -------------------------------------------------------------------------------- /lib/print_label_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/print_label_sm.png -------------------------------------------------------------------------------- /lib/print_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/print_sm.png -------------------------------------------------------------------------------- /lib/project_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/project_sm.png -------------------------------------------------------------------------------- /lib/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reaction.js -------------------------------------------------------------------------------- /lib/reaction_ana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reaction_ana.js -------------------------------------------------------------------------------- /lib/reaction_calc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reaction_calc.js -------------------------------------------------------------------------------- /lib/reaction_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reaction_sm.png -------------------------------------------------------------------------------- /lib/recover_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/recover_sm.png -------------------------------------------------------------------------------- /lib/redline_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/redline_bg.png -------------------------------------------------------------------------------- /lib/refresh_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/refresh_sm.png -------------------------------------------------------------------------------- /lib/rent_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/rent_sm.png -------------------------------------------------------------------------------- /lib/report_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/report_archive.png -------------------------------------------------------------------------------- /lib/report_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/report_download.png -------------------------------------------------------------------------------- /lib/reset_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reset_button.png -------------------------------------------------------------------------------- /lib/reset_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/reset_sm.png -------------------------------------------------------------------------------- /lib/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/right.png -------------------------------------------------------------------------------- /lib/rwth-ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/rwth-ac.jpg -------------------------------------------------------------------------------- /lib/rxnfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/rxnfile.js -------------------------------------------------------------------------------- /lib/safe_dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safe_dom.js -------------------------------------------------------------------------------- /lib/safety.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety.js -------------------------------------------------------------------------------- /lib/safety_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_de.js -------------------------------------------------------------------------------- /lib/safety_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_en.js -------------------------------------------------------------------------------- /lib/safety_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_es.js -------------------------------------------------------------------------------- /lib/safety_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_fr.js -------------------------------------------------------------------------------- /lib/safety_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_it.js -------------------------------------------------------------------------------- /lib/safety_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/safety_pt.js -------------------------------------------------------------------------------- /lib/sap_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sap_sm.png -------------------------------------------------------------------------------- /lib/save_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/save_mini.png -------------------------------------------------------------------------------- /lib/save_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/save_sm.png -------------------------------------------------------------------------------- /lib/scale_rxn_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/scale_rxn_sm.png -------------------------------------------------------------------------------- /lib/sci_journal_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sci_journal_sm.png -------------------------------------------------------------------------------- /lib/sciflection_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sciflection_sm.png -------------------------------------------------------------------------------- /lib/sdb_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sdb_sm.png -------------------------------------------------------------------------------- /lib/sds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sds.js -------------------------------------------------------------------------------- /lib/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/search.png -------------------------------------------------------------------------------- /lib/search_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/search_old.png -------------------------------------------------------------------------------- /lib/search_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/search_sm.png -------------------------------------------------------------------------------- /lib/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/searchicon.png -------------------------------------------------------------------------------- /lib/searchpk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/searchpk.js -------------------------------------------------------------------------------- /lib/searchrxn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/searchrxn.js -------------------------------------------------------------------------------- /lib/select_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/select_sm.png -------------------------------------------------------------------------------- /lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/settings.js -------------------------------------------------------------------------------- /lib/settlement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/settlement.js -------------------------------------------------------------------------------- /lib/settlement_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/settlement_sm.png -------------------------------------------------------------------------------- /lib/share_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/share_sm.png -------------------------------------------------------------------------------- /lib/side.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side.gif -------------------------------------------------------------------------------- /lib/side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side.jpg -------------------------------------------------------------------------------- /lib/side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side.png -------------------------------------------------------------------------------- /lib/side35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side35.png -------------------------------------------------------------------------------- /lib/side_red_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side_red_line.png -------------------------------------------------------------------------------- /lib/side_red_line35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/side_red_line35.png -------------------------------------------------------------------------------- /lib/sidenav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sidenav.css -------------------------------------------------------------------------------- /lib/sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sidenav.js -------------------------------------------------------------------------------- /lib/sidenav_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sidenav_new.png -------------------------------------------------------------------------------- /lib/sidenav_new_lj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/sidenav_new_lj.png -------------------------------------------------------------------------------- /lib/spacer_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/spacer_blue.gif -------------------------------------------------------------------------------- /lib/spacer_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/spacer_orange.gif -------------------------------------------------------------------------------- /lib/specnav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/specnav.png -------------------------------------------------------------------------------- /lib/status_1_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/status_1_sm.png -------------------------------------------------------------------------------- /lib/status_2_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/status_2_sm.png -------------------------------------------------------------------------------- /lib/status_3_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/status_3_sm.png -------------------------------------------------------------------------------- /lib/status_4_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/status_4_sm.png -------------------------------------------------------------------------------- /lib/status_5_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/status_5_sm.png -------------------------------------------------------------------------------- /lib/storage_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/storage_sm.png -------------------------------------------------------------------------------- /lib/storage_sm_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/storage_sm_old.png -------------------------------------------------------------------------------- /lib/stusti_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/stusti_logo.gif -------------------------------------------------------------------------------- /lib/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/style.css -------------------------------------------------------------------------------- /lib/subitemlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/subitemlist.js -------------------------------------------------------------------------------- /lib/subitemlist_get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/subitemlist_get.js -------------------------------------------------------------------------------- /lib/supplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/supplier.png -------------------------------------------------------------------------------- /lib/supplier_offer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/supplier_offer.png -------------------------------------------------------------------------------- /lib/supplier_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/supplier_sm.png -------------------------------------------------------------------------------- /lib/svgfile_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/svgfile_sm.png -------------------------------------------------------------------------------- /lib/tab_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_blue.png -------------------------------------------------------------------------------- /lib/tab_blue_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_blue_over.png -------------------------------------------------------------------------------- /lib/tab_blue_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_blue_right.png -------------------------------------------------------------------------------- /lib/tab_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_red.png -------------------------------------------------------------------------------- /lib/tab_red_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_red_over.png -------------------------------------------------------------------------------- /lib/tab_red_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tab_red_right.png -------------------------------------------------------------------------------- /lib/tci.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/tci.gif -------------------------------------------------------------------------------- /lib/this_as_prod_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/this_as_prod_sm.png -------------------------------------------------------------------------------- /lib/top_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/top_blue.png -------------------------------------------------------------------------------- /lib/top_left_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/top_left_orange.gif -------------------------------------------------------------------------------- /lib/top_orange.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/top_orange.gif -------------------------------------------------------------------------------- /lib/toxic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/toxic.gif -------------------------------------------------------------------------------- /lib/undelete_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/undelete_sm.png -------------------------------------------------------------------------------- /lib/uni-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/uni-logo.gif -------------------------------------------------------------------------------- /lib/uni-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/uni-logo.png -------------------------------------------------------------------------------- /lib/uni_basel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/uni_basel.gif -------------------------------------------------------------------------------- /lib/uni_dresden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/uni_dresden.png -------------------------------------------------------------------------------- /lib/uni_venezia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/uni_venezia.jpg -------------------------------------------------------------------------------- /lib/units.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/units.js -------------------------------------------------------------------------------- /lib/univie_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/univie_logo.png -------------------------------------------------------------------------------- /lib/unlink_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/unlink_sm.png -------------------------------------------------------------------------------- /lib/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/up.png -------------------------------------------------------------------------------- /lib/up_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/up_sel.png -------------------------------------------------------------------------------- /lib/up_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/up_sm.png -------------------------------------------------------------------------------- /lib/up_vsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/up_vsm.png -------------------------------------------------------------------------------- /lib/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/variables.js -------------------------------------------------------------------------------- /lib/vendor_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/vendor_sm.png -------------------------------------------------------------------------------- /lib/version_list_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/version_list_sm.png -------------------------------------------------------------------------------- /lib/version_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/version_sm.png -------------------------------------------------------------------------------- /lib/vwr_intl_logo2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/vwr_intl_logo2.gif -------------------------------------------------------------------------------- /lib/withdrawal_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/withdrawal_sm.png -------------------------------------------------------------------------------- /lib/zurueckgeben.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib/zurueckgeben.wav -------------------------------------------------------------------------------- /lib_analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_analytics.php -------------------------------------------------------------------------------- /lib_analytics.php.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_analytics.php.new -------------------------------------------------------------------------------- /lib_applet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_applet.php -------------------------------------------------------------------------------- /lib_array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_array.php -------------------------------------------------------------------------------- /lib_atom_data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_atom_data.php -------------------------------------------------------------------------------- /lib_bit_op.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_bit_op.php -------------------------------------------------------------------------------- /lib_borrow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_borrow.php -------------------------------------------------------------------------------- /lib_browser_caps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_browser_caps.php -------------------------------------------------------------------------------- /lib_brute_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_brute_block.php -------------------------------------------------------------------------------- /lib_chem_lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_chem_lang.php -------------------------------------------------------------------------------- /lib_chooseAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_chooseAsync.php -------------------------------------------------------------------------------- /lib_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_constants.php -------------------------------------------------------------------------------- /lib_constants_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_constants_form.php -------------------------------------------------------------------------------- /lib_constants_paper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_constants_paper.php -------------------------------------------------------------------------------- /lib_constants_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_constants_view.php -------------------------------------------------------------------------------- /lib_convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_convert.php -------------------------------------------------------------------------------- /lib_db_filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_filter.php -------------------------------------------------------------------------------- /lib_db_manip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_manip.php -------------------------------------------------------------------------------- /lib_db_manip_del.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_manip_del.php -------------------------------------------------------------------------------- /lib_db_manip_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_manip_edit.php -------------------------------------------------------------------------------- /lib_db_manip_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_manip_helper.php -------------------------------------------------------------------------------- /lib_db_order_by.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_order_by.php -------------------------------------------------------------------------------- /lib_db_query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_query.php -------------------------------------------------------------------------------- /lib_db_query_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_query_helper.php -------------------------------------------------------------------------------- /lib_db_wrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_db_wrapper.php -------------------------------------------------------------------------------- /lib_draw_analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_draw_analytics.php -------------------------------------------------------------------------------- /lib_draw_molecule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_draw_molecule.php -------------------------------------------------------------------------------- /lib_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit.php -------------------------------------------------------------------------------- /lib_edit_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_forms.php -------------------------------------------------------------------------------- /lib_edit_literature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_literature.php -------------------------------------------------------------------------------- /lib_edit_message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_message.php -------------------------------------------------------------------------------- /lib_edit_molecule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_molecule.php -------------------------------------------------------------------------------- /lib_edit_mpi_order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_mpi_order.php -------------------------------------------------------------------------------- /lib_edit_order_comp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_order_comp.php -------------------------------------------------------------------------------- /lib_edit_other_db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_other_db.php -------------------------------------------------------------------------------- /lib_edit_person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_person.php -------------------------------------------------------------------------------- /lib_edit_project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_project.php -------------------------------------------------------------------------------- /lib_edit_reaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_reaction.php -------------------------------------------------------------------------------- /lib_edit_rent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_rent.php -------------------------------------------------------------------------------- /lib_edit_settlement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_settlement.php -------------------------------------------------------------------------------- /lib_edit_storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_edit_storage.php -------------------------------------------------------------------------------- /lib_fingerprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_fingerprint.php -------------------------------------------------------------------------------- /lib_form_elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_form_elements.php -------------------------------------------------------------------------------- /lib_formatting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_formatting.php -------------------------------------------------------------------------------- /lib_gd_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_gd_common.php -------------------------------------------------------------------------------- /lib_global_funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_global_funcs.php -------------------------------------------------------------------------------- /lib_global_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_global_settings.php -------------------------------------------------------------------------------- /lib_hack_bin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_hack_bin.php -------------------------------------------------------------------------------- /lib_http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_http.php -------------------------------------------------------------------------------- /lib_import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_import.php -------------------------------------------------------------------------------- /lib_io (Kopie).php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_io (Kopie).php -------------------------------------------------------------------------------- /lib_io.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_io.php -------------------------------------------------------------------------------- /lib_jcamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_jcamp.php -------------------------------------------------------------------------------- /lib_language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language.php -------------------------------------------------------------------------------- /lib_language_de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_de.php -------------------------------------------------------------------------------- /lib_language_en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_en.php -------------------------------------------------------------------------------- /lib_language_es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_es.php -------------------------------------------------------------------------------- /lib_language_fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_fr.php -------------------------------------------------------------------------------- /lib_language_it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_it.php -------------------------------------------------------------------------------- /lib_language_pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_language_pt.php -------------------------------------------------------------------------------- /lib_literature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_literature.php -------------------------------------------------------------------------------- /lib_locking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_locking.php -------------------------------------------------------------------------------- /lib_molecule_ranks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_molecule_ranks.php -------------------------------------------------------------------------------- /lib_molfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_molfile.php -------------------------------------------------------------------------------- /lib_molfile_rings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_molfile_rings.php -------------------------------------------------------------------------------- /lib_navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_navigation.php -------------------------------------------------------------------------------- /lib_output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_output.php -------------------------------------------------------------------------------- /lib_person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_person.php -------------------------------------------------------------------------------- /lib_root_funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_root_funcs.php -------------------------------------------------------------------------------- /lib_rxn_pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_rxn_pdf.php -------------------------------------------------------------------------------- /lib_safety.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_safety.php -------------------------------------------------------------------------------- /lib_save_molfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_save_molfile.php -------------------------------------------------------------------------------- /lib_searchRxn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_searchRxn.php -------------------------------------------------------------------------------- /lib_selection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_selection.php -------------------------------------------------------------------------------- /lib_server_cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_server_cache.php -------------------------------------------------------------------------------- /lib_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_settings.php -------------------------------------------------------------------------------- /lib_sidenav_funcs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_sidenav_funcs.php -------------------------------------------------------------------------------- /lib_simpleExtSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_simpleExtSearch.php -------------------------------------------------------------------------------- /lib_simple_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_simple_forms.php -------------------------------------------------------------------------------- /lib_smiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_smiles.php -------------------------------------------------------------------------------- /lib_smiles_chiral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_smiles_chiral.php -------------------------------------------------------------------------------- /lib_smiles_ez.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_smiles_ez.php -------------------------------------------------------------------------------- /lib_tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_tabs.php -------------------------------------------------------------------------------- /lib_units.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_units.php -------------------------------------------------------------------------------- /lib_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_update.php -------------------------------------------------------------------------------- /lib_url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lib_url.php -------------------------------------------------------------------------------- /list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/list.php -------------------------------------------------------------------------------- /listAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/listAsync.php -------------------------------------------------------------------------------- /lit_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lit_main.php -------------------------------------------------------------------------------- /literature/acs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/literature/acs.php -------------------------------------------------------------------------------- /literature/elsevier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/literature/elsevier.php -------------------------------------------------------------------------------- /literature/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/literature/meta.php -------------------------------------------------------------------------------- /lj_main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/lj_main.php -------------------------------------------------------------------------------- /macro.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/macro.ahk -------------------------------------------------------------------------------- /macro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/macro.exe -------------------------------------------------------------------------------- /macro_installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/macro_installer.exe -------------------------------------------------------------------------------- /main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/main.php -------------------------------------------------------------------------------- /makro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/makro.ini -------------------------------------------------------------------------------- /manageSelect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/manageSelect.php -------------------------------------------------------------------------------- /perm_settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/perm_settings.php -------------------------------------------------------------------------------- /phpinfo.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/print.php -------------------------------------------------------------------------------- /printBarcodeList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/printBarcodeList.php -------------------------------------------------------------------------------- /readExtAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/readExtAsync.php -------------------------------------------------------------------------------- /readhplc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/readhplc.php -------------------------------------------------------------------------------- /refresh_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/refresh_user.php -------------------------------------------------------------------------------- /reset_blocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/reset_blocked.php -------------------------------------------------------------------------------- /reset_locks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/reset_locks.php -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | 4 | -------------------------------------------------------------------------------- /root_db_man.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/root_db_man.php -------------------------------------------------------------------------------- /sap_split.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/sap_split.php -------------------------------------------------------------------------------- /sciflectionSignup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/sciflectionSignup.php -------------------------------------------------------------------------------- /searchExt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/searchExt.php -------------------------------------------------------------------------------- /searchExtAsync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/searchExtAsync.php -------------------------------------------------------------------------------- /searchRxn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/searchRxn.php -------------------------------------------------------------------------------- /searchWin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/searchWin.php -------------------------------------------------------------------------------- /searchWinInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/searchWinInfo.php -------------------------------------------------------------------------------- /settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/settings.php -------------------------------------------------------------------------------- /sidenav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/sidenav.php -------------------------------------------------------------------------------- /spz-macro.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/spz-macro.wxs -------------------------------------------------------------------------------- /spz_macro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/spz_macro.php -------------------------------------------------------------------------------- /spz_macro.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/spz_macro.tcl -------------------------------------------------------------------------------- /static.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/static.js.php -------------------------------------------------------------------------------- /style.css.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/style.css.php -------------------------------------------------------------------------------- /suppliers/Acros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Acros.php -------------------------------------------------------------------------------- /suppliers/Activate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Activate.php -------------------------------------------------------------------------------- /suppliers/Alfa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Alfa.php -------------------------------------------------------------------------------- /suppliers/Fisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Fisher.php -------------------------------------------------------------------------------- /suppliers/Merck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Merck.php -------------------------------------------------------------------------------- /suppliers/NIST.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/NIST.php -------------------------------------------------------------------------------- /suppliers/Sial.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Sial.php -------------------------------------------------------------------------------- /suppliers/Strem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/Strem.php -------------------------------------------------------------------------------- /suppliers/TCI.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/TCI.php.bak -------------------------------------------------------------------------------- /suppliers/VWR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/VWR.php -------------------------------------------------------------------------------- /suppliers/abcr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/abcr.php -------------------------------------------------------------------------------- /suppliers/apollo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/apollo.php -------------------------------------------------------------------------------- /suppliers/biosolve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/biosolve.php -------------------------------------------------------------------------------- /suppliers/cactus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/cactus.php -------------------------------------------------------------------------------- /suppliers/carlroth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/carlroth.php -------------------------------------------------------------------------------- /suppliers/cayman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/cayman.php -------------------------------------------------------------------------------- /suppliers/emol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/emol.php -------------------------------------------------------------------------------- /suppliers/itw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/itw.php -------------------------------------------------------------------------------- /suppliers/oakwood.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/oakwood.php -------------------------------------------------------------------------------- /suppliers/own.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/own.php -------------------------------------------------------------------------------- /suppliers/pubchem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/suppliers/pubchem.php -------------------------------------------------------------------------------- /temp_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/temp_form.php -------------------------------------------------------------------------------- /temp_form2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/temp_form2.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/test.php -------------------------------------------------------------------------------- /topnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/topnav.php -------------------------------------------------------------------------------- /trans_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/trans_helper.php -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/update.php -------------------------------------------------------------------------------- /uploadSpz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/uploadSpz.php -------------------------------------------------------------------------------- /upload_sciflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/upload_sciflection.php -------------------------------------------------------------------------------- /user-guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/user-guides.html -------------------------------------------------------------------------------- /welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/welcome.php -------------------------------------------------------------------------------- /wjhk.jupload.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wjhk.jupload.jar -------------------------------------------------------------------------------- /wyzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzz.js -------------------------------------------------------------------------------- /wyzz.working.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzz.working.js -------------------------------------------------------------------------------- /wyzz_README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzz_README.TXT -------------------------------------------------------------------------------- /wyzz_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzz_license.html -------------------------------------------------------------------------------- /wyzzicons/backcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/backcolor.gif -------------------------------------------------------------------------------- /wyzzicons/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/bold.gif -------------------------------------------------------------------------------- /wyzzicons/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/close.gif -------------------------------------------------------------------------------- /wyzzicons/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/copy.gif -------------------------------------------------------------------------------- /wyzzicons/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/cut.gif -------------------------------------------------------------------------------- /wyzzicons/downsize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/downsize.gif -------------------------------------------------------------------------------- /wyzzicons/font.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/font.gif -------------------------------------------------------------------------------- /wyzzicons/forecolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/forecolor.gif -------------------------------------------------------------------------------- /wyzzicons/headers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/headers.gif -------------------------------------------------------------------------------- /wyzzicons/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/help.gif -------------------------------------------------------------------------------- /wyzzicons/htmlmode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/htmlmode.gif -------------------------------------------------------------------------------- /wyzzicons/indent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/indent.gif -------------------------------------------------------------------------------- /wyzzicons/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/italic.gif -------------------------------------------------------------------------------- /wyzzicons/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/link.gif -------------------------------------------------------------------------------- /wyzzicons/makechem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/makechem.gif -------------------------------------------------------------------------------- /wyzzicons/makegreek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/makegreek.gif -------------------------------------------------------------------------------- /wyzzicons/outdent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/outdent.gif -------------------------------------------------------------------------------- /wyzzicons/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/paste.gif -------------------------------------------------------------------------------- /wyzzicons/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/redo.gif -------------------------------------------------------------------------------- /wyzzicons/subscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/subscript.gif -------------------------------------------------------------------------------- /wyzzicons/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/underline.gif -------------------------------------------------------------------------------- /wyzzicons/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/undo.gif -------------------------------------------------------------------------------- /wyzzicons/upsize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzicons/upsize.gif -------------------------------------------------------------------------------- /wyzzstyles/editarea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzstyles/editarea.css -------------------------------------------------------------------------------- /wyzzstyles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khoivan88/open_enventory-modified_for_US/HEAD/wyzzstyles/style.css --------------------------------------------------------------------------------