summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2010-11-23 16:44:01 +0100
committerChristoph Helma <helma@in-silico.ch>2010-11-23 16:44:01 +0100
commit3f73837d5f7eaca5e58844c8151d8387d1fab016 (patch)
treeab48563dc366e0f3228b31d2decc504c9d659b28
parent2824a2fdb2aa308ad77ead17ee6c7cba9c69ab46 (diff)
global setup/teardown, cucumber tests removed
-rw-r--r--Rakefile23
-rw-r--r--algorithm.rb10
-rw-r--r--dataset.rb30
-rw-r--r--feature.rb2
-rw-r--r--features/compound.feature18
-rw-r--r--features/data/hamster_carcinogenicity.csv85
-rw-r--r--features/data/hamster_carcinogenicity.owl3591
-rw-r--r--features/data/hamster_carcinogenicity_with_errors.csv87
-rw-r--r--features/data/kazius.csv4069
-rw-r--r--features/data/kazius.rdf12207
-rw-r--r--features/dataset.feature11
-rw-r--r--features/fminer.feature16
-rw-r--r--features/lazar_single_prediction.feature19
-rw-r--r--features/step_definitions/common_steps.rb66
-rw-r--r--features/step_definitions/fminer_step.rb8
-rw-r--r--features/step_definitions/lazar_steps.rb37
-rw-r--r--features/step_definitions/task_steps.rb21
-rw-r--r--features/support/env.rb5
-rw-r--r--features/support/hooks.rb14
-rw-r--r--features/task_complete.feature13
-rw-r--r--features/task_create.feature12
-rw-r--r--fminer.rb45
-rw-r--r--lazar.rb97
-rw-r--r--model.rb6
-rw-r--r--parser.rb4
-rw-r--r--task.rb3
26 files changed, 92 insertions, 20407 deletions
diff --git a/Rakefile b/Rakefile
index 134c078..140af29 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,11 +1,22 @@
require 'rubygems'
-require 'cucumber'
-require 'cucumber/rake/task'
-require 'tasks/opentox'
+require 'opentox-ruby-api-wrapper'
-task :default => :features
+task ARGV[0] do
+ puts ARGV[0]+".rb"
+ require "./"+ARGV[0]+".rb"
+end
+
+task :setup do
+ @@classification_training_dataset = OpenTox::Dataset.create_from_csv_file("data/hamster_carcinogenicity.csv")
+ @@regression_training_dataset = OpenTox::Dataset.create_from_csv_file("data/EPAFHM.csv")
+end
-Cucumber::Rake::Task.new(:features) do |t|
- t.cucumber_opts = "features --format pretty"
+task :teardown do
+ @@classification_training_dataset.delete
+ @@regression_training_dataset.delete
end
+[:all, :feature, :dataset, :fminer, :lazar].each do |t|
+ task :teardown => t
+ task t => :setup
+end
diff --git a/algorithm.rb b/algorithm.rb
index a3eaa91..ec64768 100644
--- a/algorithm.rb
+++ b/algorithm.rb
@@ -7,9 +7,9 @@ class AlgorithmTest < Test::Unit::TestCase
def setup
@algorithms = [
- "http://localhost/algorithm/fminer/bbrc",
- "http://localhost/algorithm/fminer/last",
- "http://localhost/algorithm/lazar",
+ File.join(CONFIG[:services]["opentox-algorithm"],"fminer","bbrc"),
+ File.join(CONFIG[:services]["opentox-algorithm"],"fminer","last"),
+ File.join(CONFIG[:services]["opentox-algorithm"],"lazar")
#"http://apps.ideaconsult.net:8080/ambit2/algorithm/J48",
]
end
@@ -17,15 +17,14 @@ class AlgorithmTest < Test::Unit::TestCase
def teardown
end
-=begin
def test_metadata
@algorithms.each do |algorithm|
puts algorithm
validate_owl(algorithm)
end
end
-=end
+=begin
def test_run_external
{
#"http://opentox.informatik.tu-muenchen.de:8080/OpenTox-dev/algorithm/J48" => {:dataset_uri => "http://apps.ideaconsult.net:8080/ambit2/dataset/10", :prediction_feature => "http://apps.ideaconsult.net:8080/ambit2/feature/21595"},
@@ -40,5 +39,6 @@ class AlgorithmTest < Test::Unit::TestCase
puts dataset.to_yaml
end
end
+=end
end
diff --git a/dataset.rb b/dataset.rb
index 1d52b09..af15b59 100644
--- a/dataset.rb
+++ b/dataset.rb
@@ -11,7 +11,7 @@ class DatasetTest < Test::Unit::TestCase
#@new_dataset.save
@datasets = {
#@new_dataset.uri => {
- "http://localhost/dataset/1" => {
+ @@classification_training_dataset.uri => {
:nr_compounds => 85,
:nr_features => 1,
:nr_dataset_features => 1,
@@ -31,7 +31,6 @@ class DatasetTest < Test::Unit::TestCase
end
=begin
-=end
def test_save_external
@dataset = OpenTox::Dataset.find "http://apps.ideaconsult.net:8080/ambit2/dataset/2698"
@@ -42,13 +41,13 @@ class DatasetTest < Test::Unit::TestCase
#@dataset.load_csv(File.open("data/hamster_carcinogenicity.csv").read)
#@dataset.save
end
+=end
def test_create
dataset = OpenTox::Dataset.create
dataset.save
- puts dataset.uri
assert_kind_of URI::HTTP, URI.parse(dataset.uri)
- #dataset.delete
+ dataset.delete
end
def test_all
@@ -57,56 +56,51 @@ class DatasetTest < Test::Unit::TestCase
end
def test_owl
- validate_owl "http://localhost/dataset/1"
+ validate_owl @@classification_training_dataset.uri
+ validate_owl @@regression_training_dataset.uri
# ambit datasets do ot validate
#@datasets.keys.each {|d| validate_owl d }
end
def test_from_yaml
- # TODO: fix uri
@dataset = OpenTox::Dataset.new
@dataset.load_yaml(File.open("data/hamster_carcinogenicity.yaml").read)
hamster_carc?
end
def test_rest_csv
- uri = OpenTox::RestClientWrapper.post('http://localhost/dataset',{:accept => "text/uri-list"}, {:file => File.new("data/hamster_carcinogenicity.csv")}).to_s.chomp
+ uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"],{:accept => "text/uri-list"}, {:file => File.new("data/hamster_carcinogenicity.csv")}).to_s.chomp
@dataset = OpenTox::Dataset.new uri
@dataset.load_all
hamster_carc?
- #puts @dataset.to_yaml
- #@dataset.delete
end
def test_multicolumn_csv
- uri = OpenTox::RestClientWrapper.post('http://localhost/dataset',{:accept => "text/uri-list"}, {:file => File.new("data/multicolumn.csv")}).to_s.chomp
- puts uri
+ uri = OpenTox::RestClientWrapper.post(CONFIG[:services]["opentox-dataset"],{:accept => "text/uri-list"}, {:file => File.new("data/multicolumn.csv")}).to_s.chomp
@dataset = OpenTox::Dataset.new uri
@dataset.load_all
- #puts @dataset.to_yaml
assert_equal 5, @dataset.features.size
assert_equal 4, @dataset.compounds.size
- @dataset.delete
end
def test_from_csv
@dataset = OpenTox::Dataset.new
@dataset.load_csv(File.open("data/hamster_carcinogenicity.csv").read)
hamster_carc?
+ @dataset.delete
end
def test_from_excel
@dataset = OpenTox::Dataset.new
@dataset.load_spreadsheet(Excel.new("data/hamster_carcinogenicity.xls"))
hamster_carc?
- #@dataset.delete
+ @dataset.delete
end
def test_load_metadata
@datasets.each do |uri,data|
@dataset = OpenTox::Dataset.find(uri)
- #puts @dataset.inspect
- assert_not_nil @dataset.metadata[DC.title]
+ assert @dataset.metadata.size != 0
end
end
@@ -122,7 +116,6 @@ class DatasetTest < Test::Unit::TestCase
@datasets.each do |uri,data|
@dataset = OpenTox::Dataset.new(uri)
@dataset.load_features
- #puts @dataset.features.to_yaml
assert_equal @dataset.features.keys.size,data[:nr_dataset_features]
end
end
@@ -168,7 +161,6 @@ class DatasetTest < Test::Unit::TestCase
@datasets.each do |uri,data|
@dataset = OpenTox::Dataset.new(uri)
@dataset.load_all
- #puts @dataset.to_ntriples
assert_kind_of String, @dataset.to_ntriples
end
end
@@ -177,14 +169,12 @@ class DatasetTest < Test::Unit::TestCase
@datasets.each do |uri,data|
@dataset = OpenTox::Dataset.new(uri)
@dataset.load_all
- #puts @dataset.to_rdfxml
assert_kind_of String, @dataset.to_rdfxml
end
end
=begin
=end
def validate(data)
- #puts @dataset.yaml
assert_kind_of OpenTox::Dataset, @dataset
assert_equal @dataset.data_entries.size, data[:nr_data_entries]
assert_equal @dataset.compounds.size, data[:nr_compounds]
diff --git a/feature.rb b/feature.rb
index 3b39fa9..15ae4c9 100644
--- a/feature.rb
+++ b/feature.rb
@@ -7,7 +7,7 @@ class FeatureTest < Test::Unit::TestCase
def setup
@features = [
- "http://localhost/dataset/1/feature/Hamster%20Carcinogenicity",
+ @@classification_training_dataset.features.keys.first,
"http://apps.ideaconsult.net:8080/ambit2/feature/35796"
]
end
diff --git a/features/compound.feature b/features/compound.feature
deleted file mode 100644
index f628f4b..0000000
--- a/features/compound.feature
+++ /dev/null
@@ -1,18 +0,0 @@
-@rest
-Feature: Create compound URI
-
- Scenario Outline: Create and get URIs
- Given Content-Type is <mime-type>
- When I post <descriptor> to the compound webservice
- Then I should receive a valid URI
- And the URI should contain <inchi>
- And the URI response should be <cansmi>
-
- Examples:
- |descriptor |mime-type |inchi |cansmi |
- |F[B-](F)(F)F.[Na+] |chemical/x-daylight-smiles|InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1 |[Na+].F[B-](F)(F)F |
- |CC(=O)CC(C)C#N |chemical/x-daylight-smiles|InChI=1S/C6H9NO/c1-5(4-7)3-6(2)8/h5H,3H2,1-2H3 |CC(CC(=O)C)C#N |
- |Benzene |text/plain |InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H |c1ccccc1 |
- |N#[N+]C1=CC=CC=C1.F[B-](F)(F)F |chemical/x-daylight-smiles|InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1|N#[N+]c1ccccc1.F[B-](F)(F)F|
- |InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H|chemical/x-inchi |InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H |c1ccccc1 |
-
diff --git a/features/data/hamster_carcinogenicity.csv b/features/data/hamster_carcinogenicity.csv
deleted file mode 100644
index e9ca269..0000000
--- a/features/data/hamster_carcinogenicity.csv
+++ /dev/null
@@ -1,85 +0,0 @@
-CC=O,1
-C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1
-O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,1
-C1(N=CNN=1)N,0
-Br(=O)(=O)[O-].[K+],1
-[Cl-].[Cd+2].[Cl-],0
-O=S(=O)([O-])[O-].[Cd+2],0
-ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,0
-ClCOC,1
-C=C(Cl)C=C,0
-Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,0
-O=C1OC2=C(C=CC=C2)C=C1,0
-ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,1
-ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,0
-C=CCN(CC=C)N=O,1
-Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,0
-O=C(N(C)C)Cl,1
-CN(C)N,1
-N(NC)C.[H]Cl.[H]Cl,1
-CCO,0
-O=C(N(CC)N=O)NCCO,1
-O=C(N(CC)N=O)NCC(=O)C,1
-C=O,0
-[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,1
-O=CC1=CC=CO1,0
-OCC1CO1,1
-O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,0
-ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,1
-NN,1
-OS(=O)(=O)O.NN,1
-CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,1
-OCCNN,0
-O=C(C1=CC=NC=C1)NN,0
-OC(=O)C1=CC=NC=C1,0
-O=C(NC1=CC=CC(=C1)Cl)OC(C)C,0
-O=C(NC1=CC=CC=C1)OC(C)C,0
-[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],0
-CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,0
-NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,0
-CN(N)C=O,1
-O=C(C(=C)C)OC,0
-CNN,1
-O=C(C1=CC=CN=C1)CCCN(N=O)C,0
-CC1=CC(=O)NC(=S)N1,1
-CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,0
-O=N[O-].[Na+],0
-[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,1
-[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,1
-O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],0
-N(CC(CO)O)(CC(O)C)N=O,1
-N(CC(CO)O)(CC(C)=O)N=O,1
-N(CC(CO)O)(CCO)N=O,0
-O=C(C)CN(N=O)CCO,1
-C1C(N(C(CN1N=O)C)C)C,1
-N(CC(C)=O)(CC=C)N=O,1
-N(CC(CO)O)(C)N=O,1
-O=NN1CCOCC1,1
-N1C=CC=C(C=1)C2N(N=O)CCC2,1
-C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,0
-O=NN1CCCCC1,1
-O=NN1CCCC1,1
-O=C(N(CC(C)=O)N=O)NCCCl,1
-N(C(=O)N)(N=O)CC(C)=O,1
-C1(CCN=C=S)=CC=CC=C1,0
-O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,0
-C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,0
-O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,0
-C1(=CC(=C(O)C=C1)O)C(O)=O,0
-O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,0
-C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,0
-C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,0
-OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,0
-ClC(=CCl)Cl,0
-NC(=O)OCC,1
-C=CCl,1
-N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,0
-C1(CN(CC(N1N=O)C)N=O)C,1
-N(CCN(C)C)(C)N=O,1
-C1(CN(N=O)CC(O1)C)C,1
-O1C(N(CC1C)N=O)=O,1
-CCOC(=O)N(C)N=O,1
-C1N(COC1)N=O,1
-O=C(N(CCC1=CC=CC=C1)N=O)N,1
-O=NN1CCC1,1
-F[B-](F)(F)F.[Na+],0
diff --git a/features/data/hamster_carcinogenicity.owl b/features/data/hamster_carcinogenicity.owl
deleted file mode 100644
index 3e900df..0000000
--- a/features/data/hamster_carcinogenicity.owl
+++ /dev/null
@@ -1,3591 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:date xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2009-11-22</ns0:date>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:contributor xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">martin.guetlein@gmail.com</ns0:contributor>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:contributor xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">jeliazkova.nina@gmail.com</ns0:contributor>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenTox resource ontology</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenTox API</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1">
- <ns0:creator xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OpenTox</ns0:creator>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:description xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:description>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:seeAlso xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1/dataset</ns0:seeAlso>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:creator xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:creator>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/dataset/{datasetid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:date xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:date>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:source xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Original source of the dataset</ns0:source>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:publisher xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:publisher>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Provides access to chemical compounds and their features (e.g. structural, physical-chemical, biological, toxicological properties)</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Parameter">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:contributor xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:contributor>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#OpentoxResource">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Dataset">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValue">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Tuple">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValue">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Tuple"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValue">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#OpentoxResource">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic OpenTox resource</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#OpentoxResource">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">name of the resource</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#OpentoxResource">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">URI of the resource</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#OpentoxResource">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ConfusionMatrix">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ClassificationStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ConfusionMatrix">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TODO: Specify allowed values for model content</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:format xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The native format of the model content (e.g. PMML, Weka model, etc.)</ns0:format>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TODO: Introduce a link to User resource</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/model/{modelid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:creator xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The model creator (perhaps a link to User resource)</ns0:creator>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:rights xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:rights>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Model">
- <ns0:date xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The date of model creation</ns0:date>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Validation">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Validation">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A validation corresponds to the validation of a model on a test dataset. The results are stored in another dataset. Parameters with default values are optional.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Validation">
- <ns0:date xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Datetime</ns0:date>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Validation">
- <ns0:seeAlso xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1/Validation</ns0:seeAlso>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Validation">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Report">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Report">
- <ns0:seeAlso xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1/Validation#validation-report</ns0:seeAlso>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Report">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TODO: AlgorithmType, or link to Algorithm ontology</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:source xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Reference</ns0:source>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TODO: statistics supported - is it possible to reuse ValidationInfo classes?</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/algorithm/{algorithmid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:description xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:description>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:seeAlso xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1/Algorithm</ns0:seeAlso>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Name of the algorithm</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Provides access to OpenTox algorithms</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:publisher xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:publisher>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Algorithm">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#CrossValidationInfo">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ValidationInfo">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#CrossValidationInfo">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ValidationInfo">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">encapsulates validation information</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ValidationInfo">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/compound/{compoundid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:seeAlso xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/dev/apis/api-1.1/structure</ns0:seeAlso>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Compound">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">API for OpenTox compound webservices</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Conformer">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r1">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r1">
- <ns0:onProperty xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#has3Dstructure"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r1">
- <ns0:hasValue xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</ns0:hasValue>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Conformer">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="r1261216571r20401r1"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Conformer">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Conformer">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[Optional] support for multiple (e.g. 3D) structures per chemical compound (single structure by default)</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Conformer">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/compound/{compoundid}/conformer/{conformerid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ClassificationStatistics">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#FeatureValuePair">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:source xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:source>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/feature/{featureid}</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Feature">
- <ns0:description xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:description>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Parameter">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Parameter">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#YScrambling">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#YScrambling">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">/dataset/{datasetid}/compound/{compoundid}?feature_uri[]=featureuris</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.1</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Encapsulates a dataset entry - defined by a single Compound (or conformer) and multiple FeatureValues. Could be regarded as "Compound with features"</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#DataEntry">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Task">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Task">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Crossvalidation">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Crossvalidation">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#OpentoxResource"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#EmptyDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#EmptyDataset">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Tuple">
- <ns0:disjointWith xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#Tuple">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ClassValueStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ClassValueStatistics">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ConfusionMatrixCell">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#ConfusionMatrixCell">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrix"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#RegressionStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#RegressionStatistics">
- <ns0:subClassOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#conformer">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#conformer">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#conformer">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Conformer"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationDataset">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationDataset">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validation">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validation">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validation">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixPredicted">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixPredicted">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixPredicted">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrixCell"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixEntry">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixPredicted">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#confusionMatrixEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationPredictionDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationPredictionDataset">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PredictionDatasetURI</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationPredictionDataset">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationPredictionDataset">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationPredictionDataset">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTrainingDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTrainingDataset">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTrainingDataset">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTrainingDataset">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#complexValue">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#complexValue">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#complexValue">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Tuple"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#model">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#model">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#model">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dependentVariables">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dependentVariables">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A model can have one or more dependent variables, described as multiple features, specified by this relationship.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dependentVariables">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dependentVariables">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dependentVariables">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationAlgorithm">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationAlgorithm">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Algorithm"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossvalidationAlgorithm">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationCrossvalidation">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationCrossvalidation">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationCrossvalidation">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#CrossValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Algorithms and Models can have multiple parameters</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r2">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r3">
- <rdf:first rdf:resource="http://www.opentox.org/api/1.1#Algorithm"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r4">
- <rdf:first rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r3">
- <rdf:rest rdf:nodeID="r1261216571r20401r4"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r4">
- <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r2">
- <ns0:unionOf xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:nodeID="r1261216571r20401r3"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#parameters">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="r1261216571r20401r2"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTestDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTestDataset">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTestDataset">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTestDataset">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Test dataset , used in a validation exercise</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationTestDataset">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedVariables">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Variables, holding the predicted values, generated by the model</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dataEntry">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dataEntry">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dataEntry">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dataEntry">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#dataEntry">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Dataset contains multiple DataEntries. This property specifies the relationship between Dataset and DataEntry.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#YScrambling"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a link to UnscrambledDataset</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#unscrambledDatasetURI">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">UnscrambledDatasetURI</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A model can have multiple independent variables, described as multiple features, specified by this relationship.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#independentVariables">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasValidationInfo">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasValidationInfo">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasValidationInfo">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Links Validation with Validation Info. One validation exercise may have multiple types of validation informaton</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasValidationInfo">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasValidationInfo">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedFeature">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedFeature">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedFeature">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#predictedFeature">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValue">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValue">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValue">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValueStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValue">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixEntry">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrixCell"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixEntry">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrix"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrix">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixEntry">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#confusionMatrix"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#report">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#report">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Report"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#report">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#values">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#values">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#values">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A DataEntry is defined with a single compound and multiple feature values. This property sets the relationship between a DataEntry and multiple FeatureValues</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#values">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#values">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValueStatistics">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classValueStatistics">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrix">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrix">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrix"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixActual">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixActual">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrixCell"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixActual">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#confusionMatrixEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixActual">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationReport">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationReport">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationReport">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#report"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationReport">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Report"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#precision">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#precision">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#precision">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalsePositives">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalsePositives">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalsePositives">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#stratified">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#stratified">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#stratified">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFolds">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFolds">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFolds">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falsePositiveRate">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falsePositiveRate">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falsePositiveRate">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fMeasure">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fMeasure">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fMeasure">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingInfo">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingInfo">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#YScrambling"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falseNegativeRate">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falseNegativeRate">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#falseNegativeRate">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasStatus">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r5">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DataRange"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r6">
- <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cancelled</rdf:first>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r8">
- <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Running</rdf:first>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r8">
- <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r7">
- <rdf:rest rdf:nodeID="r1261216571r20401r8"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r7">
- <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Completed</rdf:first>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r6">
- <rdf:rest rdf:nodeID="r1261216571r20401r7"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r5">
- <ns0:oneOf xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:nodeID="r1261216571r20401r6"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasStatus">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="r1261216571r20401r5"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasStatus">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Task"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentUnpredicted">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentUnpredicted">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentUnpredicted">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classificationStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classificationStatistics">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#classificationStatistics">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rSquare">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#regressionStatistics">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rSquare">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#regressionStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rSquare">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#RegressionStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#truePositiveRate">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#truePositiveRate">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#truePositiveRate">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentWithoutClass">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentWithoutClass">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentWithoutClass">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numWithoutClass">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numWithoutClass">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numWithoutClass">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramValue">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramValue">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramValue">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Parameter value</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramValue">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The value of a Parameter</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#statisticsSupported">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#statisticsSupported">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Algorithm"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#statisticsSupported">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numUnpredicted">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numUnpredicted">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numUnpredicted">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossValidationInfo">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossValidationInfo">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#CrossValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#crossValidationInfo">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#regressionStatistics">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#RegressionStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#regressionStatistics">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTrueNegatives">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTrueNegatives">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTrueNegatives">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#recall">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#recall">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#recall">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numInstances">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numInstances">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numInstances">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalseNegatives">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalseNegatives">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numFalseNegatives">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#units">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#units">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Units</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#units">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Units for a feature value</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#units">
- <ns0:versionInfo xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TODO: make use of units ontology</ns0:versionInfo>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#areaUnderROC">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#areaUnderROC">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#areaUnderROC">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#randomSeed">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#randomSeed">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#randomSeed">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#long"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trueNegativeRate">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trueNegativeRate">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trueNegativeRate">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixValue">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixValue">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ConfusionMatrixCell"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#confusionMatrixValue">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTruePositives">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTruePositives">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassValueStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numTruePositives">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#isA">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#isA">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Allows to define "is a" relationships outside of particular class hierarchy</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#isA">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Model used in a validation exercise</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#validationModel">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Number incorrect</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numIncorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Percent Correct</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentCorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rootMeanSquaredError">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rootMeanSquaredError">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rootMeanSquaredError">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">RootMeanSquaredError</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rootMeanSquaredError">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#rootMeanSquaredError">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#regressionStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#yScramblingInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#YScrambling"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YScramblingEnabled</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingEnabled">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YScramblingEnabled</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#yScramblingInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YScramblingSeed</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">YScramblingSeed</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#yScramblingSeed">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#YScrambling"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fold">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fold">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#CrossValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fold">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#crossValidationInfo"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fold">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#fold">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Has 3D structure</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">True, if the compound has 3D structure</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#has3Dstructure">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#value">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#value">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#value">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Literal</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#value">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#value">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Feature value</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A model is derived by applying an Algorithm on a training Dataset.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#trainingDataset">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#realRuntime">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#realRuntime">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Validation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#realRuntime">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Crossvalidation"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#realRuntime">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#long"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#realRuntime">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The algorithm, used to create the Model</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Algorithm"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#algorithm">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Number correct</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#numCorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasSource">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasSource">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasSource">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r9">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r10">
- <rdf:first rdf:resource="http://www.opentox.org/api/1.1#Algorithm"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r11">
- <rdf:first rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r10">
- <rdf:rest rdf:nodeID="r1261216571r20401r11"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r12">
- <rdf:first rdf:resource="http://www.opentox.org/api/1.1#Model"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r11">
- <rdf:rest rdf:nodeID="r1261216571r20401r12"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r12">
- <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r9">
- <ns0:unionOf xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:nodeID="r1261216571r20401r10"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#hasSource">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="r1261216571r20401r9"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">specifies if a parameter is optional or mandatory</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Parameter"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r13">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DataRange"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r15">
- <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r15">
- <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string">optional</rdf:first>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r14">
- <rdf:rest rdf:nodeID="r1261216571r20401r15"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r14">
- <rdf:first rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mandatory</rdf:first>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r13">
- <ns0:oneOf xmlns:ns0="http://www.w3.org/2002/07/owl#" rdf:nodeID="r1261216571r20401r14"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:nodeID="r1261216571r20401r13"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#paramScope">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Parameter scope</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Task"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Percentage completed</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentageCompleted">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#compound">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A DataEntry is defined with a single compound and multiple feature values. This property sets the relationship between a DataEntry and a Compound</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#classificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Percent Incorrect</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#ClassificationStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#percentIncorrect">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#meanAbsolutError">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#meanAbsolutError">
- <ns0:subPropertyOf xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#regressionStatistics"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#meanAbsolutError">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">MeanAbsolutError</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#meanAbsolutError">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#meanAbsolutError">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <ns0:range xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <ns0:comment xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FeatureValue contains a value for specific Feature, specified by this relationship.</ns0:comment>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <ns0:domain xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:resource="http://www.opentox.org/api/1.1#FeatureValuePair"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://www.opentox.org/api/1.1#feature">
- <ns0:isDefinedBy xmlns:ns0="http://www.w3.org/2000/01/rdf-schema#" rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://opentox.org/api/1.1</ns0:isDefinedBy>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/date">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/source">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/identifier">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/title">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/rights">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/publisher">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/description">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/format">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/creator">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/contributor">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r17">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r17">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/2C2H4O2.4H2O.3Pb/c2*1-2(3)4;;;;;;;/h2*1H3,(H,3,4);4*1H2;;;/q;;;;;;3*+2/p-6</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r18">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Feature"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r18">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://www.epa.gov/NCCT/dsstox/CentralFieldDef.html#ActivityOutcome_CPDBAS_Hamster</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r18">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/">ActivityOutcome_CPDBAS_Hamster</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r18">
- <ns0:source xmlns:ns0="http://purl.org/dc/elements/1.1/">http://www.epa.gov/NCCT/dsstox/CentralFieldDef.html#ActivityOutcome_CPDBAS_Hamster</ns0:source>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r19">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r19">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r17"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r19">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r20"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r20">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r20">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r20">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r21">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r21">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r22">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r22">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r21"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r22">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r23"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r23">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r23">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r23">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r24">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r24">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C20H22N8O5/c1-28(9-11-8-23-17-15(24-11)16(21)26-20(22)27-17)12-4-2-10(3-5-12)18(31)25-13(19(32)33)6-7-14(29)30/h2-5,8,13H,6-7,9H2,1H3,(H,25,31)(H,29,30)(H,32,33)(H4,21,22,23,26,27)/t13-/m0/s1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r25">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r25">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r24"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r25">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r26"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r26">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r26">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r26">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r27">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r27">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/H4N2/c1-2/h1-2H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r28">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r28">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r27"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r28">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r29"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r29">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r29">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r29">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r30">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r30">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r31">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r31">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r30"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r31">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r32"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r32">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r32">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r32">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r33">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r33">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/BF4.Na/c2-1(3,4)5;/q-1;+1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r34">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r34">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r33"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r34">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r35"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r35">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r35">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r35">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r36">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r36">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C3H6N2O2/c6-4-5-1-2-7-3-5/h1-3H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r37">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r37">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r36"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r37">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r38"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r38">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r38">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r38">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r39">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r39">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C10H13NO2/c1-8(2)13-10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r40">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r40">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r39"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r40">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r41"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r41">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r41">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r41">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r42">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r42">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H10N2O2/c1-3-4-8(7-10)5-6(2)9/h3H,1,4-5H2,2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r43">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r43">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r42"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r43">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r44"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r44">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r44">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r44">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r45">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r45">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C19H17N3.ClH/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15;/h1-12,20H,21-22H2;1H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r46">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r46">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r45"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r46">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r47"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r47">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r47">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r47">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r48">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r48">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r49">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r49">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r48"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r49">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r50"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r50">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r50">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r50">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r51">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r51">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r52">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r52">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r51"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r52">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r53"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r53">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r53">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r53">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r54">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r54">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/Cd.H2O4S/c;1-5(2,3)4/h;(H2,1,2,3,4)/q+2;/p-2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r55">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r55">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r54"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r55">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r56"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r56">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r56">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r56">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r57">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r57">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r58">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r58">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r57"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r58">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r59"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r59">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r59">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r59">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r60">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r60">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r61">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r61">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r60"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r61">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r62"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r62">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r62">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r62">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r63">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r63">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/BrHO3.K/c2-1(3)4;/h(H,2,3,4);/q;+1/p-1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r64">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r64">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r63"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r64">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r65"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r65">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r65">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r65">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r66">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r66">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C17H17ClO3/c1-17(2,16(19)20)21-11-12-3-5-13(6-4-12)14-7-9-15(18)10-8-14/h3-10H,11H2,1-2H3,(H,19,20)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r67">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r67">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r66"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r67">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r68"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r68">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r68">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r68">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r69">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r69">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H11N3O2/c10-9(13)12(11-14)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H2,10,13)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r70">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r70">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r69"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r70">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r71"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r71">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r71">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r71">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r72">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r72">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H11N3O2/c13-10-12-6-2-4-9(12)8-3-1-5-11(14)7-8/h1,3,5,7,9H,2,4,6H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r73">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r73">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r72"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r73">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r74"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r74">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r74">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r74">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r75">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r75">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r76">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r76">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r75"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r76">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r77"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r77">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r77">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r77">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r78">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r78">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r79">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r79">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r78"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r79">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r80"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r80">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r80">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r80">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r81">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r81">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r82">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r82">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r81"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r82">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r83"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r83">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r83">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r83">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r84">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r84">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r85">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r85">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r84"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r85">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r86"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r86">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r86">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r86">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r87">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r87">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H8N2O3/c1-3-9-4(7)6(2)5-8/h3H2,1-2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r88">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r88">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r87"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r88">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r89"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r89">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r89">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r89">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r90">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r90">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H13N3O/c1-7(2)4-5-8(3)6-9/h4-5H2,1-3H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r91">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r91">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r90"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r91">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r92"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r92">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r92">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r92">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r93">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r93">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H12N2O4/c8-2-1-7(6-11)3-5(10)4-9/h5,8-10H,1-4H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r94">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r94">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r93"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r94">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r95"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r95">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r95">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r95">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r96">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r96">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r97">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r97">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r96"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r97">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r98"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r98">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r98">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r98">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r99">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r99">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H5N2.BF4/c7-8-6-4-2-1-3-5-6;2-1(3,4)5/h1-5H;/q+1;-1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r100">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r100">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r99"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r100">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r101"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r101">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r101">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r101">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r102">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r102">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H3Cl/c1-2-3/h2H,1H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r103">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r103">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r102"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r103">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r104"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r104">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r104">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r104">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r105">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r105">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C7H6O4/c8-5-2-1-4(7(10)11)3-6(5)9/h1-3,8-9H,(H,10,11)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r106">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r106">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r105"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r106">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r107"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r107">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r107">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r107">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r108">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r108">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H12N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h6,9,11H,2-4H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r109">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r109">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r108"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r109">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r110"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r110">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r110">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r110">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r111">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r111">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r112">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r112">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r111"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r112">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r113"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r113">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r113">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r113">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r114">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r114">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C27H30O16/c1-8-17(32)20(35)22(37)26(40-8)39-7-15-18(33)21(36)23(38)27(42-15)43-25-19(34)16-13(31)5-10(28)6-14(16)41-24(25)9-2-3-11(29)12(30)4-9/h2-6,8,15,17-18,20-23,26-33,35-38H,7H2,1H3/t8-,15+,17-,18+,20+,21-,22+,23+,26+,27?/m0/s1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r115">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r115">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r114"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r115">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r116"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r116">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r116">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r116">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r117">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r117">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r118">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r118">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r117"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r118">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r119"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r119">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r119">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r119">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r120">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r120">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r121">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r121">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r120"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r121">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r122"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r122">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r122">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r122">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r123">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r123">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r124">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r124">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r123"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r124">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r125"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r125">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r125">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r125">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r126">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r126">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/H4N2.H2O4S/c1-2;1-5(2,3)4/h1-2H2;(H2,1,2,3,4)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r127">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r127">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r126"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r127">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r128"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r128">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r128">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r128">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r129">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r129">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r130">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r130">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r129"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r130">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r131"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r131">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r131">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r131">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r132">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r132">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C20H19N3.ClH/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15;/h2-12,21H,22-23H2,1H3;1H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r133">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r133">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r132"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r133">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r134"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r134">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r134">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r134">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r135">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r135">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/Cd.2ClH/h;2*1H/q+2;;/p-2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r136">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r136">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r135"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r136">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r137"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r137">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r137">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r137">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r138">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r138">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r139">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r139">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r138"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r139">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r140"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r140">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r140">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r140">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r141">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r141">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C10H12ClNO2/c1-7(2)14-10(13)12-9-5-3-4-8(11)6-9/h3-7H,1-2H3,(H,12,13)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r142">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r142">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r141"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r142">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r143"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r143">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r143">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r143">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r144">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r144">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H8N2O/c3-4-1-2-5/h4-5H,1-3H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r145">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r145">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r144"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r145">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r146"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r146">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r146">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r146">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r147">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r147">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H5NO2/c8-6(9)5-1-3-7-4-2-5/h1-4H,(H,8,9)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r148">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r148">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r147"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r148">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r149"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r149">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r149">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r149">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r150">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r150">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r151">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r151">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r150"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r151">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r152"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r152">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r152">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r152">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r153">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r153">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r154">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r154">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r153"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r154">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r155"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r155">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r155">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r155">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r156">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r156">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H7N3O4S/c1-5(13)10-9-11-6(4-17-9)7-2-3-8(16-7)12(14)15/h2-4H,1H3,(H,10,11,13)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r157">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r157">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r156"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r157">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r158"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r158">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r158">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r158">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r159">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r159">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C8H6N4O4S/c13-4-9-11-8-10-5(3-17-8)6-1-2-7(16-6)12(14)15/h1-4H,(H,9,13)(H,10,11)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r160">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r160">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r159"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r160">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r161"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r161">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r161">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r161">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r162">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r162">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H7N3O3/c1-3(8)2-7(6-10)4(5)9/h2H2,1H3,(H2,5,9)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r163">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r163">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r162"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r163">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r164"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r164">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r164">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r164">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r165">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r165">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r166">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r166">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r165"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r166">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r167"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r167">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r167">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r167">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r168">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r168">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H6N2O3/c1-3-2-6(5-8)4(7)9-3/h3H,2H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r169">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r169">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r168"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r169">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r170"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r170">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r170">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r170">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r171">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r171">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H4O/c1-2-3/h2H,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r172">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r172">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r171"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r172">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r173"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r173">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r173">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r173">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r174">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r174">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r175">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r175">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r174"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r175">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r176"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r176">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r176">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r176">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r177">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r177">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H10N2O3/c1-5(9)4-7(6-10)2-3-8/h8H,2-4H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r178">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r178">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r177"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r178">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r179"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r179">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r179">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r179">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r180">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r180">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H11N3O3/c1-3-9(8-12)6(11)7-4-5(2)10/h3-4H2,1-2H3,(H,7,11)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r181">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r181">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r180"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r181">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r182"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r182">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r182">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r182">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r183">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r183">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r184">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r184">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r183"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r184">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r185"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r185">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r185">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r185">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r186">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r186">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H5Cl/c1-3-4(2)5/h3H,1-2H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r187">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r187">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r186"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r187">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r188"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r188">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r188">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r188">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r189">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r189">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2HCl3/c3-1-2(4)5/h1H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r190">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r190">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r189"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r190">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r191"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r191">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r191">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r191">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r192">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r192">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/CH6N2/c1-3-2/h3H,2H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r193">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r193">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r192"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r193">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r194"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r194">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r194">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r194">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r195">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r195">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r196">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r196">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r195"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r196">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r197"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r197">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r197">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r197">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r198">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r198">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H8N2.2ClH/c1-3-4-2;;/h3-4H,1-2H3;2*1H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r199">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r199">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r198"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r199">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r200"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r200">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r200">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r200">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r201">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r201">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r202">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r202">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r201"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r202">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r203"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r203">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r203">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r203">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r204">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r204">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C3H6N2O/c6-4-5-2-1-3-5/h1-3H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r205">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r205">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r204"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r205">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r206"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r206">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r206">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r206">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r207">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r207">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H11N3O3/c1-2-8(7-11)5(10)6-3-4-9/h9H,2-4H2,1H3,(H,6,10)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r208">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r208">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r207"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r208">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r209"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r209">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r209">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r209">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r210">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r210">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/HNO2.Na/c2-1-3;/h(H,2,3);/q;+1/p-1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r211">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r211">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r210"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r211">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r212"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r212">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r212">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r212">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r213">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r213">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r214">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r214">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r213"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r214">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r215"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r215">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r215">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r215">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r216">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r216">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/CH2O/c1-2/h1H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r217">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r217">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r216"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r217">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r218"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r218">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r218">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r218">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r219">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r219">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r220">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r220">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r219"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r220">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r221"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r221">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r221">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r221">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r222">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r222">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r223">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r223">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r222"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r223">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r224"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r224">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r224">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r224">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r225">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r225">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C7H15N3O/c1-6-4-10(8-11)5-7(2)9(6)3/h6-7H,4-5H2,1-3H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r226">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r226">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r225"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r226">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r227"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r227">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r227">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r227">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r228">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r228">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r229">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r229">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r228"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r229">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r230"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r230">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r230">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r230">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r231">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r231">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3/t8-,17?/m1/s1</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r232">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r232">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r231"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r232">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r233"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r233">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r233">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r233">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r234">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r234">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r235">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r235">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r234"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r235">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r236"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r236">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r236">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r236">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r237">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r237">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r238">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r238">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r237"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r238">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r239"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r239">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r239">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r239">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r240">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r240">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H12N4O2/c1-5-3-9(7-11)4-6(2)10(5)8-12/h5-6H,3-4H2,1-2H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r241">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r241">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r240"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r241">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r242"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r242">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r242">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r242">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r243">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r243">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r244">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r244">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r243"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r244">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r245"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r245">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r245">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r245">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r246">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r246">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C14H19N3S.ClH/c1-16(2)9-10-17(12-13-6-5-11-18-13)14-7-3-4-8-15-14;/h3-8,11H,9-10,12H2,1-2H3;1H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r247">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r247">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r246"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r247">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r248"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r248">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r248">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r248">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r249">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r249">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r250">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r250">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r249"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r250">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r251"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r251">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r251">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r251">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r252">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r252">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H10N2O/c1-3-5-8(7-9)6-4-2/h3-4H,1-2,5-6H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r253">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r253">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r252"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r253">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r254"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r254">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r254">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r254">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r255">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r255">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r256">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r256">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r255"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r256">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r257"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r257">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r257">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r257">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r258">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r258">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r259">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r259">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r258"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r259">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r260"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r260">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r260">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r260">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r261">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r261">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C15H10O7.2H2O/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6;;/h1-5,16-19,21H;2*1H2</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r262">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r262">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r261"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r262">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r263"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r263">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r263">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r263">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r264">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r264">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C6H10ClN3O3/c1-5(11)4-10(9-13)6(12)8-3-2-7/h2-4H2,1H3,(H,8,12)</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r265">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r265">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r264"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r265">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r266"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r266">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r266">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r266">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r267">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r267">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C5H8O2/c1-4(2)5(6)7-3/h1H2,2-3H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r268">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r268">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r267"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r268">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r269"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r269">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r269">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r269">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">false</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r270">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Compound"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r270">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">http://localhost:4000/InChI=1S/C2H5ClO/c1-4-2-3/h2H2,1H3</ns0:identifier>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r271">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#DataEntry"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r271">
- <ns0:compound xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r270"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r271">
- <ns0:values xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r272"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r272">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#FeatureValue"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r272">
- <ns0:feature xmlns:ns0="http://www.opentox.org/api/1.1#" rdf:nodeID="r1261216571r20401r18"/>
- </rdf:Description>
- <rdf:Description rdf:nodeID="r1261216571r20401r272">
- <ns0:value xmlns:ns0="http://www.opentox.org/api/1.1#">true</ns0:value>
- </rdf:Description>
- <rdf:Description rdf:about="/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl">
- <rdf:type rdf:resource="http://www.opentox.org/api/1.1#Dataset"/>
- </rdf:Description>
- <rdf:Description rdf:about="/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl">
- <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
- </rdf:Description>
- <rdf:Description rdf:about="/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl">
- <ns0:title xmlns:ns0="http://purl.org/dc/elements/1.1/">Hamster Carcinogenicity</ns0:title>
- </rdf:Description>
- <rdf:Description rdf:about="/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl">
- <ns0:source xmlns:ns0="http://purl.org/dc/elements/1.1/">http://www.epa.gov/NCCT/dsstox/sdf_cpdbas.html</ns0:source>
- </rdf:Description>
- <rdf:Description rdf:about="/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl">
- <ns0:identifier xmlns:ns0="http://purl.org/dc/elements/1.1/">/home/ch/opentox-test/features/data/hamster_carcinogenicity.owl</ns0:identifier>
- </rdf:Description>
-</rdf:RDF>
diff --git a/features/data/hamster_carcinogenicity_with_errors.csv b/features/data/hamster_carcinogenicity_with_errors.csv
deleted file mode 100644
index 2537ac3..0000000
--- a/features/data/hamster_carcinogenicity_with_errors.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-CC=O,1
-CC=O,1
-C12C3=C(C=CC=C3)CC1=CC(=CC=2)NC(C)=O,1
-O=C(N)\C(C2=CC=CO2)=C/C1=CC=C([N+]([O-])=O)O1,1
-C1(N#C#N#N=1)N,0
-Br(=O)(=O)[O-].[K+],1
-[Cl-].[Cd+2].[Cl-],0
-O=S(=O)([O-])[O-].[Cd+2],0
-ClC1=CC(=NC(=N1)SCC(=O)O)NC2=CC=CC(=C2C)C,0
-ClCOC,1
-C=C(Cl)C=C,0
-Clc1ccc(cc1)c2ccc(COC(C)(C)C(O)=O)cc2,0
-O=C1OC2=C(C=CC=C2)C=C1,0
-ClC(=C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)Cl,1
-ClC(C(C1=CC=C(C=C1)Cl)C2=CC=C(C=C2)Cl)(Cl)Cl,0
-C=CCN(CC=C)N=O,1
-Cl\C2=C(/Cl)C3(Cl)C1C4CC(C1C2(Cl)C3(Cl)Cl)C5OC45,
-O=C(N(C)C)Cl,1
-CN(C)N,1
-N(NC)C.[H]Cl.[H]Cl,1
-CCO,0
-O=C(N(CC)N=O)NCCO,1
-O=C(N(CC)N=O)NCC(=O)C,1
-C#O,0
-[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NNC=O,
-O=CC1=CC=CO1,0
-OCC1CO1,1
-O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,0
-O=C2C1=C(OC)C=C(OC)C(Cl)=C1O[C@]32C(OC)=CC(C[C@@](C)3[H])=O,1
-ClC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,1
-NN,1
-OS(=O)(=O)O.NN,1
-CC(=O)N(O)C1=CC2=C(C=C1)C3=CC=CC=C3C2,1
-OccNN,0
-O=C(C1=CC=NC=C1)NN,0
-OC(=O)C1=CC=NC=C1,0
-O=C(NC1=CC=CC(=C1)Cl)OC(C)C,0
-O=C(NC1=CC=CC=C1)OC(C)C,0
-[O-]C(C)=O.[O-]C(C)=O.[Pb+2].[OH-].[OH-].[Pb+2].[OH-].[OH-].[Pb+2],0
-CN(C)CCN(CC2=CC=CS2)C1=NC=CC=C1.Cl,0
-NC1=C2C(=NC(=N1)N)N=CC(=N2)CN(C3=CC=C(C=C3)C(=O)N[C@@H](CCC(=O)O)C(=O)O)C,0
-CN(N)C=O,TRUE
-O=C(C(=C)C)OC,0
-CNN,1
-O=C(C1=CC=CN=C1)CCCN(N=O)C,NA
-CC1=CC(=O)NC(=S)N1,1
-CC(C(O)=O)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C,0
-O=N[O-].[Na+],0
-[O-][N+](C1=CC=C(C2=CSC(NC(C)=O)=N2)O1)=O,1
-[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,1
-O=[N+](C1=CC=C2C3=C1C=CC=C3CC2)[O-],0
-stupid error,1
-N(CC(CO)O)(CC(C)=O)N=O,1
-N(CC(CO)O)(CCO)N=O,0
-O=C(C)CN(N=O)CCO,1
-C1C(N(C(CN1N=O)C)C)C,1
-N(CC(C)=O)(CC=C)N=O,1
-N(CC(CO)O)(C)N=O,1
-O=NN1CCOCC1,1
-N1C=CC=C(C=1)C2N(N=O)CCC2,1
-C1=CC=C(C=[N+]1[O-])C2CCCN2N=O,0
-O=NN1CCCCC1,1
-O=NN1CCCC1,1
-O=C(N(CC(C)=O)N=O)NCCCl,1
-N(C(=O)N)(N=O)CC(C)=O,1
-C1(CCN=C=S)=CC=CC=C1,0
-O=C1C(C2=CC=CC=C2)(C(=O)NC(=O)N1)CC,0
-C1=C2C(=CC=C1NC3=CC=CC=C3)C=CC=C2,0
-O=C1N2C(C3=C(C=CC=C3)CC2)CN(C1)C(=O)C4CCCCC4,0
-C1(=CC(=C(O)C=C1)O)C(O)=O,0
-O=C1C2=C(C=C(C=C2O)O)O/C(=C\1O)C3=CC(=C(C=C3)O)O.O.O,0
-C1=C(C=CC(=C1)C(C2=CC=C(N)C(=C2)C)=C3C=CC(=N)C=C3)N.[H]Cl,0
-C(C1=CC=C(C=C1)N)(C2=CC=C(C=C2)N)=C3C=CC(C=C3)=N.[H]Cl,0
-OC2=CC1=C(C(O)=C2)C(C(O[C@@H]4O[C@@H]([C@H]([C@H](O)[C@H]4O)O)CO[C@H]3[C@H](O)[C@H](O)[C@H]([C@H](C)O3)O)=C(C5=CC(O)=C(C=C5)O)O1)=O,0
-ClC(=CCl)Cl,0
-NC(=O)OCC,1
-C=CCl,1
-N#[N+]C1=CC=CC=C1.F[B-](F)(F)F,0
-C1(CN(CC(N1N=O)C)N=O)C,1
-N(CCN(C)C)(C)N=O,1
-C1(CN(N=O)CC(O1)C)C,1
-O1C(N(CC1C)N=O)=O,1
-CCOC(=O)N(C)N=O,1
-C1N(COC1)N=O,1
-O=C(N(CCC1=CC=CC=C1)N=O)N,1
-O=NN1CCC1,1
-F[B-](F)(F)F.[Na+],0
diff --git a/features/data/kazius.csv b/features/data/kazius.csv
deleted file mode 100644
index c1e8999..0000000
--- a/features/data/kazius.csv
+++ /dev/null
@@ -1,4069 +0,0 @@
-COC1=CC=C(C=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4,true
-CC1=C(C=CC=C1N=C=O)N=C=O,true
-OCCC1=C[N](N=O)C2=CC=CC=C12,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Br,true
-CN(N=O)C1=CC=CC=C1,true
-CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C5(C)CO5,true
-CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true
-OC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-C[N]2C(=NC3=C1N=CC=NC1=C(C)C(=C23)C)N,true
-CSC1=C(C(=C(C(=C1)SC)N)C)N,true
-OC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C5=CC=CC=C45,true
-CC(=O)C(Br)=C,true
-NCCNCCNCCN,true
-CN(C)C1=CC=C(C=C1)CCO,true
-COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=CN=C3C4=O,true
-N1C3C1C2=CSC=C2C4=CSC=C34,true
-CC1=C(C=C(C(=C1)N=NC2=CC=CC=C2)N)N,true
-NC3=CC2=NC1=CC(=CC=C1C=C2C=C3)N,true
-[O-][N+](=O)C3=C1CCC2=CC=CC(=C12)C=C3,true
-NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-COC(=O)C1(OC1(C)C(O)C(C)C)C(N)=O,true
-CC(I)C1OCC(CO)O1,true
-CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=NC2=CC=C3,true
-CC1=C(C=C(C=C1)N)C,true
-CC1=C3C(=CC=N1)C2=CC=CC=C2[NH]3,true
-OC1CN(CCO1)N=O,true
-[O-][N+](=O)C1=C(C=CC=C1)C(Cl)=O,true
-ClCCOP(OCCCl)OCCCl,true
-COC(=O)NC2=NC1=CC=CC=C1[NH]2,true
-CCOC(=O)N(CCCC(=O)C1=CN=CC=C1)N=O,true
-C1CSCCS1,true
-NC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,true
-NNC2=C1C=CC=CC1=C(N=N2)NN,true
-C[N]3C(=NC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34)C,true
-CC(=O)OC1=CC=C(C=C1)CCl,true
-NC1=CC=C(C=C1)OC2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-COC1=C(C=CC=C1)[N+]([O-])=O,true
-C1=CC2=C(C=C1)C4=C(C=C2)C3=NC=CC=C3C=C4,true
-OC2=C3C=CC4=CC=C(C5=C1C=CC=CC1=C(C=C2)C3=C45)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)Cl)[N+]([O-])=O,true
-[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2C(O3)=O,true
-CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CO,true
-CC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,true
-CC1=CC=C(C=C1)S(=O)(=O)OCC2=CC=C(C=C2)[N+]([O-])=O,true
-CN1CCN(CC1)C5=CC(=O)C2=C(C4=C(C(=N2)C)C3=CC=CC=C3[NH]4)C5=O,true
-CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,true
-CC2C1=C(C=CC(=C1)F)C3=C2C=C(C=C3)F,true
-O=NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-OC3C1OC1C2=C4C(=C(C=C2)O)C7=C5C(=C34)C(=CC=C5C6OC6C7=O)O,true
-OC(=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,true
-N(C1=CC=CC=C1)C2=CC=C(C=C2)NC3=CC=CC=C3,true
-C[N+]3=C2C=CC1OC1C2=CC=C3,true
-COC1=C(C=C(C=C1)N)N,true
-CC(=O)NC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true
-C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C4=CC=CC=C4)N,true
-[O-][N+]([O-])=C1CCCC1,true
-COC2=C1OC(=CC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,true
-COC3=C(C=C2N=C1C=C(C(=CC1=NC2=C3)N)OC)N,true
-C[N]2C(=NC3=NC1=CC=CC=C1C=C23)N,true
-OC5C(O)C4=C(C3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4)C6OC56,true
-NC3=C2C=C1C=CC=CC1=NC2=CC=C3,true
-[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC(=C3)[N+]([O-])=O)CC4,true
-[O-][N+](=O)C3=CC2=NC1=CC=CC=C1N=C2C=C3,true
-CCOP(=O)(OC1=CC=C(C=C1)[N+]([O-])=O)C2=CC=CC=C2,true
-[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,true
-CC(C)S(Cl)(=O)=O,true
-CC3=C2C1=CC=CC=C1[NH]C2=CC(=N3)N,true
-ClCC(Cl)CBr,true
-CC2=C(N=C1C(=C(C=CC1=N2)N)C)C,true
-CC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,true
-NC1=CC(=CC=C1)[N+]([O-])=O,true
-[O-][N+](=O)C2=C1SN=C(C1=CC=C2)Cl,true
-[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C(=C4)[N+]([O-])=O,true
-[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)Cl,true
-CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)Cl)[N+]([O-])=O,true
-COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=C(C)N=C3C4=O,true
-CC=CC=O,true
-C[N+]2=C1C=CC(=CC1=CC3=CC=CC=C23)N,true
-CC(=O)ON(C(C)=O)C1=CC=C(C=C1)SC2=CC=CC=C2,true
-CC1C=C(C=O)C(=CC2(O)CC(C)(C)CC12)C=O,true
-C1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true
-ClC2=C1C=CC=CC1=CC=C2,true
-C2C1=C(C=CC=C1)C3=C2C4=C(C=C3)C=CC5=C4C=CC=C5,true
-CC1=C(C=CC(=C1)N)N,true
-COC1=CC(=C(C=C1)OC)N=NC3=C2C=CC=CC2=CC=C3O,true
-CN(C)C1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3,true
-COP(=O)(OC)OC,true
-ClC(Cl)C#N,true
-[O-][N+](=O)C1=CC2=C(C=C1)NCC2,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)F,true
-C[N]1C(=NC=C1[N+]([O-])=O)C2NC(CO)(CO)CO2,true
-COC1=C(C=CC(=C1)O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-COC(=O)C1=C(C=CC=C1)O,true
-O1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,true
-CC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-O=C5C=C3C2=C(C=C1C=CC=CC1=C2)C4=C3C(=CC=C4)C5=O,true
-[O-][N+](=O)C1=CC=C(O1)C=CC=NN2CC(=O)NC2=O,true
-C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)N,true
-BrC(=C)C=O,true
-CC(=O)NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,true
-[O-][N+](=O)C2=C1C(=CC=CC1=CC=C2)[N+]([O-])=O,true
-COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(CC5)O,true
-CC(=C)C2=CC=C(C)C1=CC=C(C=O)C1=C2,true
-CC1=CC=C[N]2C1=NC3=CC=C(N)N=C23,true
-C1=CC2=C(C=C1)C3=CN=C4C=CC=C5C=CC(=C2)C3=C45,true
-COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)[N+]([O-])=O,true
-ClCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true
-[O-][N+](=O)C1=CC(=C(C=C1)Cl)[N+]([O-])=O,true
-COC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C#N,true
-C(N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4)C5=CC=CC=C5,true
-OC1C(O)C5=C4C2=C1C=CC=C2C3=CC=CC=C3C4=C(C=C5)[N+]([O-])=O,true
-CN(C)C1=CC=C(C=C1)C=CC2=CC(C=C(C)O2)=C(C#N)C#N,true
-CCCCOCC1CO1,true
-OC(=O)C=CC1=CC(=CC=C1)[N+]([O-])=O,true
-NC(O)=NO,true
-FCC1CO1,true
-ClC(C(=O)NCC1=CC=CC=C1)C2=CC=CC=C2,true
-CC1(C)CC(O)CC(C)(C)N1O,true
-CC(=O)NC1=CC=C(C=C1)SC2=CC=CC=C2,true
-OC1=C(C=CC=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-CCC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-O=CC1CC(=O)C(=O)CO1,true
-C(COCC1CO1)OCC2CO2,true
-C1CN1,true
-OCC(CBr)(CBr)CBr,true
-CCCCCCCCCCCCCCCCCC(=O)OCC1=CC=C2C(=CCC(C=C12)C(C)=C)C,true
-OC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-ONC1=CC=C(C=C1)SC2=CC=CC=C2,true
-CC1=CC=C[N]2C1=NC3=CC=C(NO)N=C23,true
-ClC1=NC=CC=C1,true
-FC2=CC1=NC=CC=C1C=C2,true
-CN(C)CCNC(=O)C2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true
-NC1=CC=C(C=C1)N,true
-[O-][N+](=O)C3=CC2=C(C=C1C=CC=CC1=C2C=C3)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC4=C3C(=C1[N+]([O-])=O)C2=CC=CC=C2C3=CC=C4,true
-[O-][N+](=O)C1=CC=C(C=C1)C=C,true
-CN(CS(O)(=O)=O)C1=C(C)N(C)N(C1=O)C2=CC=CC=C2,true
-N1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,true
-NC(=O)C(=CC1=CC=C(O1)[N+]([O-])=O)C2=CC=CO2,true
-NC2=CC=C1SN=C(Cl)C1=C2,true
-ClC1OC1CBr,true
-OC2=C1C=CC=NC1=CC=C2,true
-NC3=CC2=NC1=CC=CC(=C1N=C2C=C3)N,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Br,true
-C1=CN=C(C=C1)C2=CC=NC=C2,true
-CC(C)C1CCC(C)CC1=O,true
-CCOS(C)(=O)=O,true
-O=NN1CCOCC1,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,true
-CCCC=CCC=O,true
-NNC(=O)CNC(=O)C=[N+]=[N-],true
-C=CCCCCC1CO1,true
-CC(=O)NC1=CC(=CC=C1)N,true
-CC1=C(C=CC=C1N)N,true
-OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-CC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true
-[O-][N+](=O)C1=C(C=CC(=C1)N=[N+]=[N-])F,true
-COC4=CC(=O)C3=C2[NH]C1=CC=NC=C1C2=C(C)N=C3C4=O,true
-CCC=CC=CC=CC=CC=COCC(O)CO,true
-CNC(=O)ON(C(C)=O)C(=O)NC,true
-[O-][N+](=O)C1=CC(=C(C=C1)I)[N+]([O-])=O,true
-CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4,true
-C1OC1C2=CC=CC=C2,true
-[O-][N+](=O)C1=CC(=CC(=C1)CCl)[N+]([O-])=O,true
-CC(=O)OCC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-ClCC=CCl,true
-COC1=CC=C(C=C1)N=O,true
-NC1=C(C=CC=C1)C2=CC=CC=C2,true
-CNC3CC2=C1C(=CC=CC1=CC=C2)C3,true
-CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,true
-OCC[N]1C(=NC=C1[N+]([O-])=O)CO,true
-CCN1C=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,true
-CC3=C2[NH]C1=CC=CC=C1C2=C(C)C4=CN=CC=C34,true
-O=C2NC1(CCCCC1)C(=O)N2CCN3CC3,true
-NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)N,true
-CCN(N)C1=CC=CC=C1,true
-CC(=O)NC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,true
-CCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,true
-C[N]1C=CN=C1N=O,true
-[O-][N+](=O)C2=C1[NH]N=CC1=CC=C2,true
-ClCC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,true
-NC1=C(C=CC=C1)SCCSC2=C(C=CC=C2)N,true
-C1=CC4=C(C=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC4=C(C=C2CC3)CCCC4,true
-[O-][N+](=O)C2=C1N=CC=CC1=CC=C2,true
-S=C1NCCN1,true
-C2=CC1=CC3=C(C=C1C=C2)C5=C4C(=C3)C=CC=C4C=C5,true
-NC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-O=NC1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,true
-CC(C)N(C(C)C)C(=O)SCC(Cl)=CCl,true
-COC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,true
-CC1CNCC(C)O1,true
-CC(C)=C(Cl)C=O,true
-[O-][N+](=O)C3=CC2=C1C=CC(=CC1=CC=C2O3)N(CCCl)CCCl,true
-ClC(=O)CC1=CC=CC=C1,true
-NC3=CC2=NC1=CC=CC=C1C(=C2C=C3)N,true
-C1=CC5=C(C=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,true
-OC1=C4C(=CC=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,true
-NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true
-OC1=CC=C(C=C1)C(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,true
-NC3=C2C(C1=CC=CC(=C1C(C2=C(C=C3)N)=O)[N+]([O-])=O)=O,true
-[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=CC=C2)[N+]([O-])=O)[N+]([O-])=O,true
-OC2=C3C1=CC=CC=C1C4=C(C=CC5=CC=C(C=C2)C3=C45)[N+]([O-])=O,true
-CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)C,true
-OC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-C1=CC2=C(C=C1)C3=CC=CC4=CC=CC2=C34,true
-CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)F,true
-OC4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4O,true
-CCN(CC)N=O,true
-OC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-[O-][N+](=O)C1=CC=C2C=CC3=C(C=CC4=CC=C1C2=C34)[N+]([O-])=O,true
-OC2C=CC1=C3C=CC4=CC=C(C5=CC=C(C=C1C2O)C3=C45)[N+]([O-])=O,true
-OCC4OC(OC2=C1C(C3=C(OC1=CC(=C2)O)C(=CC=C3O)O)=O)C(O)C(O)C4O,true
-ClCCN(CCCl)P1(=O)OCCCN1CCCl,true
-NC1=C(C=C(C=C1Cl)[N+]([O-])=O)[N+]([O-])=O,true
-OC2C=CC1=C4C(=CC=C1C2O)C3=CC(=CC=C3C=C4)O,true
-OCCN(CCO)C1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-NC2=NC(=C1[NH]C=NC1=N2)NO,true
-CN(C)N,true
-CN2N(C1=CC=CC=C1)C(=O)C(=C2C)N=O,true
-ClCCNC(=O)N(CCCl)N=O,true
-C1=CC2=C(C=C1)C4=C3C(=C2)C=CC=C3C=C4,true
-OCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-CC3=CC2=C(C1=CC=CC=C1C(=C2C=C3)C)C,true
-COC3=C(C=C2N=C1C=CC(=CC1=NC2=C3)N)N,true
-BrCC1CO1,true
-CN(C)N=O,true
-[O-][N+](=O)C1=C(C=CC=C1)[N+]([O-])=O,true
-CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,true
-OS(=O)(=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-C1OC1C2CO2,true
-[O-][N+](=O)C1=CC(=C(C=C1)Br)[N+]([O-])=O,true
-NC1=C(C=C(C(=C1)[N+]([O-])=O)N)Cl,true
-[O-][N+](=O)C1=CC2=CC=C3C=CC=C4CCC(=C1)C2=C34,true
-[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)N=O,true
-CCN(CC)C3=CC=C2N=C1C=CC(=CC1=[O+]C2=C3)N(CC)CC,true
-CCN1CCOCC1,true
-OCCCBr,true
-C1=CC3=C(C=C1)C2=NC=CC=C2C=C3,true
-NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)O,true
-CN(C)C2=C(C1=NC(=C(N=C1C=C2)C)C)C,true
-CC1=CC(=C(C=C1)N)N,true
-NC1=C(C(=CC=C1)N)C(O)=O,true
-OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-[O-][N+](=O)C1=C(C=CC=C1)SSC(F)=C(Cl)Cl,true
-ONC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=NO)C3=CC=C(C=C3)F,true
-C1=CC2=CC=C3N=CC=C4C=CC(=C1)C2=C34,true
-NC1=C(C=CC(=C1)[N+]([O-])=O)C(O)=O,true
-CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)F)[N+]([O-])=O,true
-CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)N,true
-NC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true
-CCC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,true
-ON(C=O)C1=CC=C(C=C1)[N+]([O-])=O,true
-CN(N=O)C(C)=O,true
-BrC(C=O)=CC1=CC=CC=C1,true
-C1OC1COC2=CC(=CC=C2)OCC3CO3,true
-CC1=C(C=C(C=C1)N=C=O)N=C=O,true
-N1C4C1C2=C(C=CC3=CC=CC=C23)C5=C4C=CC=C5,true
-OC(=O)CCCC1=CC=C(C=C1)N(CCCl)CCCl,true
-NCCNCCNCCNCCNCCN,true
-CC(C)NCC2CCC1=C(C=C(C(=C1)CO)[N+]([O-])=O)N2,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Cl,true
-CC1=CC=C(C=C1)N=NNCC2=CC=CC=C2,true
-CNC(=O)OC2=C1C=CC=CC1=CC=C2,true
-CCOC(=O)N(C)C,true
-ClC(=O)C1=C(C=C(C=C1)Cl)Cl,true
-[O-][N+](=O)C2=CC(=C1C(=CC(=CC1=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-COS(=O)(=O)C(F)(F)F,true
-CC1=CC(=C(C=C1)NO)C,true
-ClC(=O)C1=C(C=CC=C1)C(Cl)=O,true
-CC(=O)C=O,true
-O=C1OC5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true
-ClCC1=CC=CC=C1,true
-C[N]1C(=NC2=C1C=CC3=NC(=C(C)N=C23)C)N,true
-ClC(CBr)CBr,true
-CC(=O)OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true
-CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)N,true
-OC1=C([NH]C2=CC=CC=C12)C4=NC3=C(C=CC=C3)C4=O,true
-OCC1=C4C(=C(C2=CC=CC=C12)CO)C3=CC=CC=C3C=C4,true
-NC1=CC3=C(C=C1)C2=CC=CC=C2O3,true
-CC4=C3C=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,true
-C1CCC(CC1)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,true
-COC1=C(C=CC=C1)N,true
-ONC1=CC=C(C=C1)C2=CC=CC=C2,true
-CN1CC(CBr)CC2C1CC3=C[NH]C4=CC=CC2=C34,true
-CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)C)C=CC=C3)=O,true
-OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-C1=CC5=C4C(=C1)C2=CC=CC3=CC=CC(=C23)C4=CC=C5,true
-C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)C)N,true
-CNN=O,true
-COC(=O)C(=C)C#N,true
-CN(C)C1=CC=C(C=C1)N=NC3=CC=C2N=CSC2=C3,true
-COP(=S)(OC)SCN2N=NC1=C(C=CC=C1)C2=O,true
-OCC1SCCN1N=O,true
-[O-][N+](=O)C1=C(C(=CC=C1)[N+]([O-])=O)C=O,true
-CC1=CC2=C(C=C1)C(=CC=C2)[N+]([O-])=O,true
-OC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,true
-OC3=C(C2=CC1=CC=CC=C1C(=C2C=C3)O)O,true
-OC1=C4C(=CC=C1)C3=CC2=CC=CC5=C2C(=C3C=C4)C=C5,true
-CN2C(=O)CN=C(C1=C(C=CC=C1)F)C3=C2C=CC(=C3)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC2=C(C=C1)C(=O)OC2=O,true
-COC(=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-ClCC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,true
-NC1=NC(=CC=C1)N,true
-[O-][N+](=O)C1=CC=C(O1)C=CC(=O)NN=CC2=CC=C(O2)[N+]([O-])=O,true
-OOC1CCCC2=C1C=CC=C2,true
-[O-][N+](=O)C2=CC=C1SN=C(Cl)C1=C2,true
-[O-][N+](=O)C1=CC(=CC=C1)CCl,true
-CC(O)=NO,true
-CN(C)CCNC(=O)C2=C1SC3=C(C(C1=CC=C2)=O)C=CC=C3,true
-COC1=CC=C(C=C1)CNC(=O)C(C)Br,true
-NC3=CC2=NC1=CC=C(C=C1N=C2C=C3)N,true
-OCCC1=C[NH]C2=CC(=CC=C12)[N+]([O-])=O,true
-CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N)C,true
-CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)N,true
-[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2C=C3)[N+]([O-])=O,true
-C2=CC1=NC=CN=C1C=C2,true
-[O-][N+](=O)C1=CC=C(C=C1)CCl,true
-OC(=O)C1=CC=C(C=C1)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true
-COC1=C4C(=CC=C1)C3=C2OCOC2=CC(=C3C=C4)C(O)=O,true
-CC2=[N+](C1=CC=CC=C1[N+](=C2C(=O)NCCO)[O-])[O-],true
-CC(C)(C)C1=CC(=O)C=CC1=O,true
-CN(C)CCCNC2=C1C=C(C=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true
-O=NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-CC1(CO1)C2=CC=CC=C2,true
-NC2=C1SN=C(C1=CC=C2)Cl,true
-CC2C1=C(C=CC=C1)C3=C2C=C(C(=C3)C)C,true
-CC(O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)[N+]([O-])=O,true
-C1=CC2=C(C=C1)C4=CC=C5C=CC6=CC3=CC=CC2=C3C4=C56,true
-[O-][N+](=O)C2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,true
-CC1=C(C=CC(=C1)[N+]([O-])=O)N,true
-OC1=CC=C(C=C1)N=O,true
-NC2=CC=C1SN=CC1=C2,true
-[N-]=[N+]=C1C=CC(=O)C=C1,true
-O=C2CC(=NC1=CC=CC=C1)C(=O)C3=C2C=CC=C3,true
-[O-][N+](=O)C2=CC1=CC(=CC=C1O2)N(CCCl)CCCl,true
-OC(=O)C(Br)=C(Br)C=O,true
-COC1=C4C(=CC=C1)C3=C2OCOC2=CC5=C3C(=C4)NC5=O,true
-CN(C)N=NC1=CC=C(C=C1)[N+]([O-])=O,true
-C1=CC2=C(C=C1)C5=C(C=C2)C4=C3C=CC=CC3=CC=C4C=C5,true
-COC1=C(C3=C(C(=C1)N)C(=O)C2=C(C=CC=C2)C3=O)N,true
-NC1=CC=C(C=C1)OC2=CC(=C(C=C2)N)N,true
-CC(=O)N1CCCC1C(=O)N(CC(O)=O)N=O,true
-COC1=C(C=CC(=C1)CC2CO2)O,true
-CN(C)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true
-CCC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,true
-OC5C(O)C2=C1C6(C4=C(C1=CC=C2)C3=C(C=CC=C3)C=C4)OC56,true
-NC(CSC(Cl)=C(Cl)C(Cl)(Cl)Cl)C(O)=O,true
-C[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,true
-NC1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true
-C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,true
-OC1C=CC=CC1O,true
-CCNN=O,true
-S3C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34,true
-CC(=O)OCC1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,true
-CCC4(O)CC(O)C2=C(C=C1C(C3=C(C(C1=C2O)=O)C(=CC=C3)O)=O)C4C(=O)OC,true
-OC5C=CC1=C(C2=CC=C3C=CC(=C4C=CC(=C1)C2=C34)[N+]([O-])=O)C5O,true
-O[N+]([O-])=C=CC1=CC=C(O1)[N+]([O-])=O,true
-NC(CS)C(O)=O,true
-CCC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,true
-O=C3[N]2C1=CC=CC=C1N=C2C8=C6C3=CC=C7C5=NC4=CC=CC=C4[N]5C(C(=C67)C=C8)=O,true
-OCCCCl,true
-CCOC1=CC=C(C=C1)NC(=O)CC(C)O,true
-CC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)N)[N+]([O-])=O,true
-ClCC1CO1,true
-CC(C)=CC2C(C(=O)OC1=C(C)C(CC=C)C(=O)C1)C2(C)C,true
-O=NC1=CC=C(C=C1)OC2=CC=CC=C2,true
-[O-][N+](=O)C2=C4C=CC=C5C1=CC=CC=C1C3=CC=CC(=C2)C3=C45,true
-CC(C)N(C(C)C)C(=O)SCC(Cl)=C(Cl)Cl,true
-COC(=O)NC1=CC(=CC=C1)OC(=O)NC2=CC(=CC=C2)C,true
-FC5=C3C=CC=C4C2=C1C=CC=CC1=CC=C2C(=C34)C=C5,true
-ClC(=O)OCC2C1=C(C=CC=C1)C3=C2C=CC=C3,true
-COC4=CC(=O)C1=C(C3=C(C(=N1)C)C2=CC=CC=C2[NH]3)C4=O,true
-CC1=CC(=C(C=C1)N)O,true
-CCOP(=S)(OCC)OC1=N[N](C(C)C)C(=N1)Cl,true
-[O-][N+](=O)C1=CC5=C2C(=C1)CCC4=C2C(=C3CCCCC3=C4)CC5,true
-S=P(N1CC1)(N2CC2)N3CC3,true
-C1=CC4=C(C=C1)C3=CC=C2C=NC=CC2=C3C=C4,true
-CN(C)CCNC(=O)C2=C1NC3=C(OC1=CC=C2)C=CC=C3,true
-CC1=CC=C(C=C1)CCC2CO2,true
-OC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,true
-NC2=C1N=C[N](C1=NC=N2)CC3=CC=CC=C3,true
-OCC(O)CI,true
-NC3=C2N=C1CCCCC1=CC2=CC=C3,true
-CN1CCN(CC1)C4=C2OCN(N3C=C(C(C(=C23)C=C4F)=O)C(O)=O)C,true
-C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C=C4,true
-CCN(CC)N(O)N=O,true
-COC1=CC4=C(C=C1)C2=NC=CC3=CC(=C(C(=C23)C4=O)OC)OC,true
-ClC(=O)C1=CC=C(C=C1)C(Cl)=O,true
-NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-[O-][N+](=O)C2=CC1=C[NH]N=C1C=C2,true
-OCC1OC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,true
-CCCCCCCCCCSC[N]1C=C[N+](=C1)C,true
-OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4O,true
-CC2=C1N=CC=CC1=CC=C2,true
-OC1=C(C3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O)O,true
-NC2=C1C=CC=CC1=NC3=CC=CC=C23,true
-[O-][N+](=O)C1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true
-BrCC1=CC=CC=C1,true
-ClCN2C(=O)C1=C(C=CC=C1)C2=O,true
-CN(C)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true
-C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3N=C4C=C5,true
-ClCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true
-[O-][N+](=O)C4=CC=C3C2=C1C(=C(C=CC1=CC=C2)[N+]([O-])=O)C5=C3C4=CC=C5,true
-COC1=CC4=C(C=C1)C2=C(C(=CC3=CC=NC(=C23)C4=O)OC)OC,true
-CC1=CC(=C(C(=C1)C)N)C,true
-CC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-COP(=S)(OC)OC1=CC=C(C=C1)[N+]([O-])=O,true
-COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)C(=O)C5=O)OC,true
-ON=C1C=CC(C=C1)=NO,true
-CN(C1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-ONC2=CC1=CC=CC=C1C=C2,true
-[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4C=CC(=C1)C2=C34)[N+]([O-])=O,true
-COC5=C2[C]1=CC=C(C1=C(OC2=C4C3CCOC3OC4=C5)O)O,true
-OCC(Cl)CCl,true
-O=NN1CCCCC1,true
-C1=CN=C(C=C1)C2=NC=CC=C2,true
-CC3=C(C1=CC=CC=C1C4=CC=C2C=CC=CC2=C34)[N+]([O-])=O,true
-C[N]1C(=NC2=CC=CC=C12)N,true
-CC(=O)OC1CC5=C4C1=C3C=CC2=CC=CC=C2C3=CC4=CC=C5C,true
-[O-][N+](=O)C1=C(N=C2SC=C[N]12)C3=CC=C(C=C3)Cl,true
-CN2C1=C(C=CC=C1)C(=O)C3=C2C4=C(C=C3O)OC(C4)C(C)=C,true
-[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(F)(F)F,true
-CC(=O)N(O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-COC1=C(C=C(C=C1)C(=O)NC2=CC=CC=C2)[N+]([O-])=O,true
-CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(C)C)[N+]([O-])=O,true
-NC1=CC=C(C=C1)Cl,true
-ClC3=CC2=CC1=CC=CC=C1C=C2C=C3,true
-OC(=O)C(Cl)=C(C(Cl)Cl)C(O)=O,true
-ClC(Br)C#N,true
-[O-][N+](=O)C3=C1C=CC=CC1=C2C=CC=CC2=C3,true
-NC1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,true
-[O-][N+](=O)C2=CC1=C3C(=CC=C1C=C2)C(=CC=C3)[N+]([O-])=O,true
-FC2=C1N=CC=CC1=CC=C2,true
-CCC(Cl)=[N+](O)[O-],true
-CC(C)(C)CCCCCC(=O)OCC1CO1,true
-CC(=O)NNC1=CC=CC=C1,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)Cl,true
-OC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,true
-CCN(CC)C(=O)C(Cl)=C(C)OP(=O)(OC)OC,true
-CCC2=C1[NH]C3=C(C1=CC(=C2)O)CCOC3(CC)CC(O)=O,true
-OC3C=CC2=C(C=C1C=CC(=CC1=C2)[N+]([O-])=O)C3O,true
-NC1=CC=C(C=C1)C=CC2=CC=CC=C2,true
-COCC1CO1,true
-O=NN1CCCC1C2=CN=CC=C2,true
-CCN(CC)C(=S)SCC(Cl)=C,true
-NC(=O)NCC=C,true
-O1C5C1C3=C(C2=CC=CC=C2C4=CC=CC=C34)C6=C5C=CC=C6,true
-OC5C(O)C2=C(C1=NC4=C(C=C1C=C2)C3=CC=CC=C3C=C4)C6OC56,true
-CC4=C3C1=CC=CC2=CC=CC(=C12)C3=C(C5=CC=CC=C45)C,true
-O=CCC=O,true
-NC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CC1=NSC(=C1)N,true
-N(C1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3)C5=CC4=CC=CC=C4C=C5,true
-CCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-FC5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,true
-CC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true
-CN(C)C1=CC=C(C=C1)CC2=CC=C(C=C2)N(C)C,true
-NCCNCCNCCNCCN,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2)C3=O,true
-CC(=O)N(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-[O-][N+](=O)C1=CC=C(C=C1)OCC2CO2,true
-C1OC1COC3=CC2=CC=CC=C2C=C3,true
-O=C2C1=C(C=CC=C1)C4=C2C=C3C=CC=CC3=C4,true
-CNC1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-CC2=C1C3=CC=C4C=CC=C5C=CC(=CC1=CC=C2)C3=C45,true
-ClC1=C(N=CC=C1)Cl,true
-[O-][N+](=O)C1=CC(=CC=C1)C#N,true
-CN(C)CCNC(=O)C2=C1OC3=C(C(C1=CC=C2)=O)C=CC=C3,true
-ClCC(CCl)OP(=O)(OC(CCl)CCl)OC(CCl)CCl,true
-COC1=C(C=CC(=C1)CNC(=O)C(C)Br)O,true
-CCN1C=C(C(O)=O)C(=O)C2=C1N=C(N=C2)N3CCNCC3,true
-COP(=O)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,true
-[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=CC=CC=C23)[N+]([O-])=O,true
-O[N+]([O-])=C=CC1=CC=CC=C1,true
-COC(=O)C4=C2C=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC,true
-COC1=NSC2=CC(=CC=C12)[N+]([O-])=O,true
-ClCCOCC(Cl)=CCl,true
-NC2=C1C(C3=C(C(C1=C(C=C2Br)Br)=O)C=CC=C3)=O,true
-C[N]1C=NC2=C(N)N=CN=C12,true
-C[N]1C=NC2=C1C=CC3=NC=CC=C23,true
-CC2C1=C(C=CC=C1)C3=C2C=CC(=C3)C,true
-[O-][N+](=O)C2=CC=C1C(=NSC1=C2)Cl,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)[N+]([O-])=O,true
-ClC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-COC1=C(C=C(C(=C1)Cl)OC)Cl,true
-[O-][N+](=O)C1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-OC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)O)[N+]([O-])=O,true
-NC(CCC(=O)NNC1=CC=CC=C1)C(O)=O,true
-[O-][N+](=O)C1=CC=C(C=C1)OC=C,true
-CC2(OO)C1=C(C=CC=C1)C3=C2C=CC=C3,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,true
-[O-][N+](=O)C1=CC4=C2C(=C1)CCC3=C2C(=CC=C3)CC4,true
-CC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,true
-CC2=CC=C1N=C(SC1=C2)C3=CC=C(C=C3)N,true
-N1C2C1C4=C3C2=CC=CC3=CC=C4,true
-CC(C)(C)OC(=O)C(N)CN=[N+]=[N-],true
-[O-][N+](=O)C2=CC1=CC=C(C=C1O2)N(CCCl)CCCl,true
-ON(C=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true
-CN(CCCl)CCCl,true
-CC(=O)NC1=CC=C(C=C1)C2=CC=CC=C2,true
-COS(C)(=O)=O,true
-CC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,true
-ClNC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-CC(=O)NC2=CC1=CC=CN=C1C=C2,true
-[O-][N+](=O)C5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,true
-C1OC1CC2=CC=C(C=C2)C3=CC=CC=C3,true
-C[N]2C1=CC=CC=C1C3=CC(=CC=C23)[N+]([O-])=O,true
-CCCCCCOCC1CO1,true
-OCC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-CCOS(=O)(=O)OCC,true
-BrCC(Br)C1=CC=CC=C1,true
-CCCNN=O,true
-OC2=CC1=CC=CC(=C1C=C2)O,true
-CC1=C(N=C3C(=C1)C2=CC=CC=C2[NH]3)N,true
-OC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true
-ClC(Cl)(Cl)C1=CC=CC=C1,true
-C=CC=O,true
-CCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,true
-NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-CN(CC(O)CO)N=O,true
-C1OC1COC3=C2C=CC=CC2=CC=C3,true
-C1OC1COC2=CC=CC=C2,true
-OCC1OC(CC1O)N2C=C(COO)C(=O)NC2=O,true
-CC(Cl)C(Br)CBr,true
-NC2=C1SN=CC1=CC=C2,true
-OC(=O)C=CCl,true
-[O-][N+](=O)C3=CC2=C1C=C(C=CC1=CC=C2C=C3)[N+]([O-])=O,true
-CC1OC1C,true
-CC1=C(C=C(C=C1)C(O)(P(O)(O)=O)P(O)(O)=O)N(CCCl)CCCl,true
-OC(=O)C(Cl)=C(Cl)C=O,true
-COC4=CC(=O)C3=C2[NH]C1=C(CCCC1)C2=CN=C3C4=O,true
-CCN(CC)CCNC2=C1C(C3=C(SC1=C(C=C2)CO)C=CC=C3)=O,true
-CC(=O)OC2=C(OC(C)=O)C4=C(C=CC5=C1C=CC=CC1=C3C=CC=C2C3=C45)[N+]([O-])=O,true
-O[N+]([O-])=CCl,true
-COC1=C(C=CC(=C1)N)NC(C)=O,true
-COC(=O)C(CSCC(C)Br)NC(C)=O,true
-ClCC(=O)NCC1=CC=CC=C1,true
-FC1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,true
-CC4=C2C1=CC=CC=C1[NH]C2=C3C(C(=CC(C3=N4)=O)N5CC5)=O,true
-CC(Br)C(=O)NCC1=CC=C(C=C1)Cl,true
-CC1CCCCN1CCCNCC(=O)NC2=C(C(=N[N]2C)C)C(=O)C3=C(C=CC=C3)F,true
-[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2CCCCC2=C3CC4,true
-NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)C#N,true
-CCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true
-CC(Br)CBr,true
-CC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CCCCOC1=CC=C(C=C1)C=NC2=CC=C(C=C2)CC,true
-OCC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-OC1COC(C(O)C1O)N(N=O)C2=CC=C(C=C2)[N+]([O-])=O,true
-CN(CC1=CC=CC=C1)N=O,true
-NC(=O)C1=CSC(=C1)[N+]([O-])=O,true
-OC2=C1C(C3=C(C(C1=C(C=C2)[N+]([O-])=O)=O)C(=CC=C3O)[N+]([O-])=O)=O,true
-OC2C1=C(C=CC=C1)OC3=C2C=CC=C3,true
-OC1=C(C=C(C=C1)Cl)C(=O)NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,true
-ClC2=C1N=CC=CC1=CC=C2,true
-COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)C)C3=O,true
-CC(C)(C)OC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true
-CC(=O)N(O)C2=CC1=CC=CC=C1C=C2,true
-CCOC1=CC(=O)C(CC1=O)=NC(C)=O,true
-O1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,true
-C1=CC4=C(C=C1)C3=CC2=CC=NC=C2C=C3C5=CC=CC=C45,true
-CC1=CC=C(C=C1)CC2CO2,true
-OC(=O)CC1=C(C=CC=C1)[N+]([O-])=O,true
-COC1=C(C=CC(=C1)N)N,true
-NC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-COC1=C(C4=C(C=C1)C3=C2OCOC2=CC5=C3C(=C4)N(C)CC5)OC,true
-CC2=CC1=CC=CN=C1C=C2,true
-C[N]2C(=NC3=C1N=C(C)C(=NC1=CC(=C23)C)C)N,true
-OC(=O)CC=[N+](O)[O-],true
-OC1=CC(=C(C=C1)O)O,true
-OC3C=CC2=C1N=CC=CC1=CC=C2C3O,true
-COC1=CC5=C(C=C1)C3=C2OCOC2=CC4=CC=NC(=C34)C5=O,true
-OC(=O)C(Cl)=C(C(Cl)Cl)C(Cl)Cl,true
-CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)[N+]([O-])=O,true
-COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)OC)C3=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC=O,true
-OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true
-NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)Cl,true
-NC1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true
-CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=C(C=C2)Cl,true
-CCCN(N=O)C(N)=O,true
-NC1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N,true
-CC(=O)NC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-O=NC1=CC(=CC=C1)C2=CC=CC=C2,true
-C5CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C=C5,true
-O=C2C1=C(C=CC=C1)C4=C3C2=CC=CC3=CC=C4,true
-COC1=CC=C(C=C1)N,true
-NC(CCC(=O)NNC1=CC=C(C=C1)CO)C(O)=O,true
-ClC1=CC(=C(C=C1)C(Cl)(Cl)Cl)Cl,true
-[O-][N+](=O)C2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-OC1=C(C=C(C=C1)C2=CC(=CC=C2)[N+]([O-])=O)[N+]([O-])=O,true
-CC(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-FC2=C1C=CC=NC1=CC=C2,true
-CC(C)CC(=O)OC2OC=C(COC(C)=O)C3=CC(OC(=O)CC(C)C)C1(CO1)C23,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=CC=C2,true
-[O-][N+](=O)C2=C1SN=CC1=CC=C2,true
-[O-][N+](=O)C1=CC=C(C=C1)[N+]#N,true
-CC3=C2C1OC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,true
-CC1=C(C(=C(C=C1)[N+]([O-])=O)C)[N+]([O-])=O,true
-NC2=C1N=C[NH]C1=NC=N2,true
-OC2=C1N=CC=CC1=CC=C2,true
-[O-][N+](=O)C1=CC=C(C=C1)C=O,true
-NC(NC1=CC=CC=C1)=NC2=CC=CC=C2,true
-CCC2=C1[NH]C3=C(C1=CC=C2O)CCOC3(CC)CC(O)=O,true
-OC2=C(C1=C(C3=C(C(=C1C=C2)O)C(=O)C=CC3=O)O)O,true
-CC(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-NC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,true
-CC(O)CN(CC(C)=O)N=O,true
-OC6C1OC1C5=C4C=C2C=CC=C3C=CC(=C23)C4=CC=C5C6O,true
-CC1=CC5=C4C(=C1)C3=CC2=CC=CC=C2C=C3C4=CC=C5,true
-ClCC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,true
-[O-][N+](=O)C3=CC=C2OC1=CC=CC=C1C2=C3,true
-C2=CC1=CC4=C(C=C1C=C2)C3=NC=CC=C3C=C4,true
-NC2=C(C=C1C=CC=CC1=C2)N,true
-ClC2=C1C=CC=NC1=CC=C2,true
-COC(=O)NC2=NC1=CC=C(C=C1[NH]2)C(=O)C3=CC=CC=C3,true
-OC(CCl)CCl,true
-NC1=CC=C(C=C1)C2=CC=CC=C2,true
-OC(=O)C(Cl)=C(C=O)C(Cl)Cl,true
-[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true
-COP(=S)(OC)SCN2C(=O)C1=C(C=CC=C1)C2=O,true
-CNC(=O)N(O)C(C)=O,true
-CC(=O)NNC1=CC=C(C=C1)CO,true
-[NH]2C1=CC=CC=C1N=C2C3=CSC=N3,true
-CCOCC1CO1,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,true
-CC(C)(OO)C1=CC=CC=C1,true
-C(SSCC1=CC=CC=C1)C2=CC=CC=C2,true
-CCC(=O)C(=O)CC,true
-ClCCSCC1=CC=CC=C1,true
-ClCCNCCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,true
-CC(C)(O)CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,true
-NC(=N)NC#N,true
-BrCBr,true
-CN(C)N=NC1=CC=C(C=C1)C,true
-CN(C)CCNC(=O)C2=CC=CN3C(=O)C1=C(C=CC=C1)N=C23,true
-COC1=CC=C(C=C1)CC2CO2,true
-COC1=C(C=C(C=C1)CNC(=O)C(C)Br)OC,true
-ClC1=C(C=C(C=C1)C(Cl)(Cl)Cl)Cl,true
-[O-][N+](=O)C1=CC(=C(C=C1)SC#N)[N+]([O-])=O,true
-C1=NC=CC(=C1)C2=CC=NC=C2,true
-NNC1=CC=C(C=C1)[N+]([O-])=O,true
-OC1OC(=O)C=C1CCl,true
-NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)N)O)=N)=N)O,true
-CN(C)CCCNC2=C1C=CC(=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true
-COC5=C2[C]1=CC=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O,true
-COC1=NSC2=CC(=CC=C12)N,true
-ClCCl,true
-OC1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-C1CS1,true
-C1OCC2=C1C=CC=C2,true
-OCCNCCNC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)NCCNCCO)O)=O)=O)O,true
-CC2C1=C(C=CC=C1)C3=C2C=CC=C3C,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC(=C(C=C1)Cl)Cl,true
-O=C2N(N=CC1=CC=CC=C1)N=NC3=C2[NH]C4=CC=CC=C34,true
-CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C=C4)C,true
-C5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,true
-COC(=O)C2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5OC)=O,true
-CC3=CC2=C(C1=CC=CC=C1C=C2C=C3)C,true
-C[N]2C1=CC(=CN=C1N=C2[N+]([O-])=O)C3=CC=CC=C3,true
-NC3=C(C=C2N=C1C=CC=CC1=NC2=C3)N,true
-COC2=C1C=C(OC1=C(C=C2)N(CCCl)CCCl)[N+]([O-])=O,true
-C2CCC1OC1C2,true
-OC6C1OC1C5=C4C2=CC=CC3=CC=CC(=C23)C4=CC=C5C6O,true
-OCCNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)NCCO,true
-O=C(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC=CC=C4,true
-CC2=CC(=O)C1=C(C=CC=C1)C2=O,true
-CC(C)=CC3C(C(=O)OCC1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,true
-CC(=C)C2=CC=C(C)C1=CC=C(CO)C1=C2,true
-O=C2C1=C(C=CC=C1)C3=C2C=CC4=C3C=CC=C4,true
-CCC(C)OS(C)(=O)=O,true
-CCCC(=O)C2=C1C=CC=C(C1=C(C3=C(C=CC=C23)O)O)O,true
-OC3C=CC2=C1C=C5C(=CC1=CC=C2C3O)C4=CC=CC=C4C=C5,true
-O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3[N+]#N,true
-C1OC1COC2=C(C=CC=C2)CC3=CC=CC=C3,true
-NC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true
-CC(O)C(=O)NCCO,true
-CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CCl,true
-COC3=C2N=C1OC=CC1=C(C2=CC4=C3OCO4)OC,true
-ClC(Cl)C(=O)C(Cl)(Cl)Cl,true
-C[N]2C(=NC3=C1N=C(C)C=NC1=CC(=C23)CO)N,true
-COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N=C=O)OC)N=C=O,true
-CC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-CCCCN(CCO[N+]([O-])=O)[N+]([O-])=O,true
-ClC(=C)C=O,true
-COC4=C(C=C3C2=C1OCOC1=CC5=C2C(CC3=C4)N(C)CC5)OC,true
-CC(=O)N(O)C1=CC=C(C=C1)OC2=CC=CC=C2,true
-OC(=O)C1=C(C=CC=C1)[N+]([O-])=O,true
-[O-][N+](=O)C1=C3C=CC=C4C5=C(C2=CC=CC(=C1)C2=C34)CCCC5,true
-CC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-OC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true
-CC1=CC(=C(C=C1)N)C,true
-OC1=CC=C(C=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-CC2=C(C1=CC=CC=C1C=C2)[N+]([O-])=O,true
-OC5C=CC4=C(C=C3C1=CC=CC2=CC=CC(=C12)C3=C4)C5O,true
-[O-][N+](=O)C1=C(C=CC=C1)C=CC=O,true
-NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)C#N,true
-OC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true
-CN(CC1=CC(=CC=C1)C#N)N=O,true
-CC1=C(C(=CC(=C1)N)[N+]([O-])=O)N,true
-OS(=O)(=O)C1=CC(=O)C(=O)C2=C1C=CC=C2,true
-COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,true
-CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,true
-ONC2=C1N=C[NH]C1=NC=N2,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C=C3[N+]([O-])=O)[N+]([O-])=O,true
-CCN1N=C(C(O)=O)C(=O)C3=C1C=C2OCOC2=C3,true
-CN(C)C1=CC=C(C=C1)N(C)C,true
-[O-][N+](=O)C1=CC(=CC=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-CCNC1=CC(=CC=C1)O,true
-NC1=CC(=C(C=C1)CC2=C(C=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,true
-NC2=C1C=CC=NC1=CC=C2,true
-FC2=C1C=CC=NC1=C(C=C2)F,true
-NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC4=C2C1=CC=CC2=CC5=C3C=CC=CC3=CC=C45,true
-COC1=CC=C(C=C1)CCC2CO2,true
-NC3=CC=C2[NH]C1=CC=CC=C1C2=C3[N+]([O-])=O,true
-COC3=CC=C2[NH]C1=C(C)C=C(N)C(=C1C2=C3)C,true
-O=NC1=C(C=CC=C1)C2=CC=CC=C2,true
-CC2=NC1=CC=CC=C1C=C2,true
-OC3C(O)C2=C(C1=NC=CC=C1C=C2)C4OC34,true
-ClCC(Cl)CCl,true
-COC1OC(=O)C(=C1C(Cl)Cl)Cl,true
-CC1=CC(=CC=C1)C(Cl)=O,true
-CC2=C[N]1C(=C(N=C1S2)C3=CC=C(C=C3)[N+]([O-])=O)N=O,true
-COC1=C(C=C(C=C1)C)N,true
-COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true
-OC(=O)CCOP(O)(=N)N(CCCl)CCCl,true
-S=C=NC2=C1C=CC=CC1=CC=C2,true
-COC1=CC=C(C=C1)C(Br)=CC(O)=O,true
-CCOC1=C(C=C(C=C1)N)N,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)NC(C)=O,true
-CC(=O)N(O)C1=CC=C(C=C1)OC2=C(C=C(C=C2)Cl)Cl,true
-C[N]2C(=NC3=C1N=CC=NC1=CC(=C23)C)N,true
-[O-][N+](=O)C(Br)(Br)Br,true
-OCCN(CCO)C2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,true
-CC1(C)CC2C(O)(C1)C=C(C=O)C34CC23C(=O)OC4O,true
-NC3=C2N=C1C=CC=C(C1=NC2=CC=C3)N,true
-OC4C=CC3=C2C=C1C=CC=CC1=C(C2=CC=C3C4O)Cl,true
-[O-][N+](=O)C2=CC=C1SN=CC1=C2,true
-OC2C=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C2O)C3=C45,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C=C3)[N+]([O-])=O,true
-[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,true
-NC1=C(C=C(C=C1Cl)[N+]([O-])=O)Cl,true
-S=C=NCCC1=CC=CC=C1,true
-CCC=CC=CC=CC=COCC(O)CO,true
-[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCC=C5,true
-[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1CCCCC1=C(C(=C2)[N+]([O-])=O)C3=C45,true
-C1CO1,true
-CN2C1=C(C=C(C(=C1)C)C)N=C3C(=O)NC(=O)N=C23,true
-OC(=O)CC1=CC=C(C=C1)[N+]([O-])=O,true
-CC1=C(C=CC2=CC=CC=C12)[N+]([O-])=O,true
-CC(=O)ON(C(C)=O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-O5C6C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C56,true
-NC(=O)C1=C(C=C(C(=C1)N2CC2)[N+]([O-])=O)[N+]([O-])=O,true
-OCC(Br)=C(Br)CO,true
-OC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,true
-[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC(=C2)[N+]([O-])=O)O3,true
-OC2C=CC1OC1C2O,true
-[O-][N+](=O)C1=CC(=CC=C1)S(=O)(=O)OCC2CO2,true
-[O-][N+](=O)C1=CC=C(O1)C=NN2CC(=O)NC2=O,true
-CC1(CO1)C2=CC=C(C=C2)C#N,true
-FC5=C4C=C3C1=CC=CC2=CC=CC(=C12)C3=CC4=CC=C5,true
-OCC(O)CCl,true
-CC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-CCC1(C(=O)NC(=O)NC1=O)C2=CC=CC=C2,true
-[O-][N+](=O)OCC(CO[N+]([O-])=O)O[N+]([O-])=O,true
-CC(=C)C(=O)OCC(Br)CBr,true
-CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=NC2=CC=C3,true
-NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)N,true
-CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCN(CC)CCCl,true
-OCC=CCl,true
-OCC(O)C(O)C(O)C(O)C1SCCN1N=O,true
-C1OC1COC2=NSC3=CC=CC=C23,true
-C1OC1COC2=CC=C(C=C2)CC3=CC=CC=C3,true
-CN(CCC#N)C1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)NC2=C(C=C(C=C2[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-C5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,true
-CCCCOC1=CC=C(C=C1)N=O,true
-CC(C)(C)OCC1CO1,true
-OC6C=CC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6O,true
-CC1=CC4=C(C=C1)C3=CC2=CC=CC=C2C=C3C=C4,true
-[O-][N+](=O)C3=CC=C2[NH]C1=CC=C(C=C1C2=C3)[N+]([O-])=O,true
-NC1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,true
-CCBr,true
-C1COC1,true
-[O-][N+](=O)C1=C3C=CC=C4C=CC2=CC=CC(=C1)C2=C34,true
-C(CC1=CC=C(C=C1)C2=CC=CC=C2)C3CO3,true
-ClC(=O)C1=CC(=CC=C1)Cl,true
-CC(C)=CCC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=C4C(=C3)OC5OC=CC45O)O,true
-COC1=CC=C(C=C1)[N+]([O-])=O,true
-CC1(C)CC3=C(C1)C(C=O)C2(CC2(C)C3O)C=O,true
-[O-][N+](=O)C2=CC1=NC3=C(N=C1C=C2)C(=CC=C3)[N+]([O-])=O,true
-CC1=C(C=C(C=C1)N)N,true
-OC(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CNC2=C1C(C3=C(C(C1=C(C=C2)NCCO)=O)C=CC=C3)=O,true
-[O-][N+](=O)C4=C3C1=CC=CC=C1C2=CC=CC5=C2C3=C(C=C4)C6OC56,true
-COC2=NSC3=CC=C(OCC1CO1)C=C23,true
-CCCC(=C)C=O,true
-C1=CC3=C(C=C1)C2=CC5=C(N=C2C=C3)C4=CC=CC=C4C=C5,true
-NC1=C(C=C(C=C1Br)[N+]([O-])=O)[N+]([O-])=O,true
-OCC1CO1,true
-ClC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-O[N+]([O-])=C(Cl)Cl,true
-NC(=O)CNC(=O)C=[N+]=[N-],true
-OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true
-CC1=C(C=C(C=C1)[N+]([O-])=O)N,true
-CC1=NC(=CN=C1)C,true
-NC3=C2C=C1C=CC=CC1=CC2=CC=C3,true
-NC1=CC=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl,true
-BrCC(Br)COC(=O)C=C,true
-O=NC1=CC=C(C=C1)SC2=CC=CC=C2,true
-ClC(=O)C1=C(C=CC=C1)Cl,true
-NC1=CC=C(C=C1)OC2=CC=CC=C2,true
-O=CCCCC=O,true
-COC2=CC=C1OC(=CC1=C2N(CCCl)CCCl)[N+]([O-])=O,true
-C=CC(=O)OCC1CO1,true
-[NH]1N=NC2=CC=CC=C12,true
-OC3C=CC2=C(C1=CC=CC=C1C=C2C3O)[N+]([O-])=O,true
-COC1=C(C=C(C=C1)CC2=C(N=C(N=C2)N)N)OC,true
-CC(=O)NC3=C2C1=CC=CC=C1CC2=CC=C3,true
-CC1(CO1)C2CO2,true
-NC(=O)C1CO1,true
-NC(=S)NN=C1C=CC(C=C1)=NN=C(N)N,true
-ClC(C(Cl)=O)C1=CC=CC=C1,true
-NC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N,true
-[O-][N+](=O)C1=CC=C(O1)C=NN2CCOC2=O,true
-[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C5OC45,true
-[O-][N+](=O)C3=CC2=NC1=CC=C(C=C1N=C2C=C3)[N+]([O-])=O,true
-NC2=C1N=C[N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,true
-C1=CN=C(C=C1)C2=NC(=CC=C2)C3=NC=CC=C3,true
-NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Cl)Cl,true
-C[N]3C2=CC=C1N=CC=CC1=C2N=C3[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)[N+]([O-])=O,true
-CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CBr,true
-NC1=CC=C(C=C1)C=C,true
-CC1=C(C=CC(=C1)Cl)N,true
-NC(CSC(Cl)=C(Cl)Cl)C(O)=O,true
-OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true
-NC2=NC1=CC=CC=C1C=C2,true
-CCCCON=O,true
-[O-][N+](=O)C1=CC=C(C=C1)Br,true
-C[N]2C1=CC=CC=C1C(=C2C3=CC=CC=C3)N=NC4=[N+](C=CS4)C,true
-CC1=C(C(=C(C(=C1)N)C)[N+]([O-])=O)N,true
-OC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2)C3=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,true
-OCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)COS(O)(=O)=O,true
-ClP(=O)(N1CCOC1=O)N2CCOC2=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true
-OCCCCCl,true
-CC1=C(C=C(C=C1[N+]([O-])=O)N)[N+]([O-])=O,true
-CC(C)CON=O,true
-ClC2=C1C=CC=CC1=NC=C2,true
-[O-][N+](=O)C3=CC2=NC1=CC(=CC=C1N=C2C=C3)[N+]([O-])=O,true
-C1=C2C=CC3=CC=C4C=CC5=CC=C6C=CC(=C1)C7=C2C3=C4C5=C67,true
-NC(CS)C(=O)NCC(O)=O,true
-[O-][N+](=O)C1=CC(=CC=C1)C=O,true
-C[N]1C(=NC2=NC=C(C=C12)C3=CC=CC=C3)NO,true
-[O-][N+](=O)C5=CC=C4C3=C2C(=CC1=CC=CC=C1C2=CC=C3)C4=C5,true
-OS(=O)(=O)C1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2C3=O)[N+]([O-])=O,true
-ClCCNCCCl,true
-BrCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true
-CC(C)(C1=CC=C(C=C1)OCC2CO2)C3=CC=C(C=C3)OCC4CO4,true
-CC(=O)NC1=CC=C(C=C1)C(=O)CCl,true
-CC3=C2[NH]C1=CC=C(N)C=C1C2=C(C)C4=CN=CC=C34,true
-NC1=CC=C(C=C1)SC2=CC=C(C=C2)N,true
-COC4=CC3=C1N=CC=C2C=C(C(C(=C12)C(=C3C=C4)O)=O)OC,true
-CC1(C)CC(N)CC(C)(C)N1O,true
-ClCC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-[O-][N+](=O)C4=C2C=CC=C3C1=C(C=CC=C1C(=C23)C=C4)[N+]([O-])=O,true
-COC5=C2[C]1=C(C=C(C1=C(OC2=C4C3C=COC3OC4=C5)O)O)O,true
-CCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-COCC(O)C[N]1C=C(N=C1Cl)[N+]([O-])=O,true
-ClC1=CC=C(C=C1)CCC2CO2,true
-O=C2OC1=C(C=CC=C1)C=C2,true
-CC(O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-C1=CC2=CC=C3C=NC=C4C=CC(=C1)C2=C34,true
-CC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,true
-OC5=CC4=C2C=C1C=CC=CC1=CC2=C3C=CC=CC3=C4C=C5,true
-[O-][N+](=O)C1=CC=C(C=C1)COC(=O)C2=CC=CC=C2,true
-CC(Br)C(N)=O,true
-[O-][N+](=O)C3=C2C(C(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O)=O,true
-C[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,true
-NC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true
-C[N]2C=C1C=CC(=CC1=N2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(O1)C=NN2CCNC2=O,true
-O=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C=CC5=C4C=CC=C5,true
-OC2=C1N=CC=CC1=C(C=C2)S(O)(=O)=O,true
-OC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,true
-CN(CCCC(=O)C1=CN=CC=C1)N=O,true
-CN(C)C3CC2=C1C(=CC=CC1=CC=C2)C3,true
-CC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,true
-CCN(N=O)C(N)=O,true
-CN(C)C1=CC=C(C=C1)N=NC3=CC=C2[NH]N=CC2=C3,true
-CC1=C(C=CC=C1)C2=CC(=C(C=C2)N)C,true
-C1OC1COC3=C2SN=CC2=CC=C3,true
-ONC1=CC=C(C=C1)[N+]([O-])=O,true
-COC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,true
-CN(C)C(=O)N(C)C=O,true
-ClC(Cl)C(C=O)=C(Cl)Cl,true
-NC1=CC(=CC=C1)N,true
-CC4=CC3=C(C2=CC=C1C=CC=CC1=C2N=C3C(=C4)C)C,true
-CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,true
-CC(=O)NC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=C(C=C2)N=C=S,true
-CC1=CC=C(C=C1)N(CCO)CCO,true
-CC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true
-[O-][N+](=O)C2=C3C=CC4=CC=C(C5=C1CCCCC1=C(C=C2)C3=C45)[N+]([O-])=O,true
-CC(=O)OCC1=CC=CO1,true
-NC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)O,true
-NC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)N)O)O,true
-CC(=O)C1=CC=CO1,true
-CN(N=O)C(N)=O,true
-C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true
-[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C=C2)[N+]([O-])=O)O3,true
-OC(=O)C1=C(C(=C(O1)[N+]([O-])=O)C2=CC=CC=C2)C3=CC=CC=C3,true
-CC4=C(C=C3C(=C2C=CC1=CC=CC=C1C2=NC3=C4)C)C,true
-NC2=C1[NH]C=NC1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O,true
-BrCC(Br)C=O,true
-[O-][N+](=O)C2=C1C=CC=CC1=CC3=CC=CC=C23,true
-OC1=CC=C(C=C1)C2=CC=CC=C2,true
-CC(=O)C=CC1=CC=CC=C1,true
-CC2=C4C1=CC=CC=C1C=C5C=CC3=CC=CC(=C2)C3=C45,true
-CC1=CC=C(C=C1)N(N)C2=CC=C(C=C2)C,true
-COC1=C(C=C(C=C1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-CC1=C4C(=CC=C1)C3=CC2=CC=CC=C2C=C3C=C4,true
-CCC1(C(=O)NCNC1=O)C2=CC=CC=C2,true
-C2=CC1=CC4=C(C=C1C=C2)C3=CN=CC=C3C=C4,true
-O=S1(=O)CCCO1,true
-CNC(=O)NOC(=O)NC,true
-OC1=CC4=C(C=C1)C5=C2C=CC=CC2=CC6=C3C=CC=CC3=CC4=C56,true
-COC2=C1C(C5=C(OC1=CC4=C2C3C=COC3O4)C(=CC=C5O)CCC(C)(C)O)=O,true
-[O-][N+](=O)C4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true
-CC3=C1C4=C(C=CC1=C2C=CC=CC2=C3)C(O)C(O)C5OC45,true
-NC2=CC1=CC=CC=C1N=C2,true
-CC4=CC3=C2C=C1C=CC=CC1=CC2=CC=C3C=C4,true
-ClCBr,true
-ClC(Cl)(Cl)C1CO1,true
-[O-][N+](=O)C1=CC(=C(C=C1)C=O)[N+]([O-])=O,true
-CC(C)=CCOC2=C1OC=CC1=CC3=C2OC(C=C3)=O,true
-CC1CC(=O)O1,true
-OCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,true
-[O-][N+](=O)C1=C3C(=CC=C1)C2=C(C=CC=C2C(=C3)[N+]([O-])=O)[N+]([O-])=O,true
-CCC(C)COC(=O)C=CC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,true
-C3=CC2=CC1=CC=CC=C1C=C2C=C3,true
-CCCC(=O)C1=C(C=C(C(=C1)O)O)O,true
-CCN(CCCl)C1=CC=C(C=C1)OCCCCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-CC(=O)N(O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-O1C=CC2=CC3=CC=C4C=CC=C5C=CC(=C12)C3=C45,true
-OC1OC(=O)C(=C1CCl)Cl,true
-NC1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,true
-CCOC(=O)C(C)Br,true
-COC1=NSC2=CC(=CC=C12)OCC3CO3,true
-COC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,true
-COC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-CC1CN(CC(C)O1)N=O,true
-O=CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-CN(C(=O)C1=CSC(=C1)[N+]([O-])=O)C2=CC=CC=C2,true
-NC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)N)=O,true
-NC1=C(C=C(C=C1)[N+]([O-])=O)N,true
-O1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-NC1=C(C=C(C=C1)C2=CC(=C(C(=C2)Cl)N)Cl)Cl,true
-C1OC1COC2=CC=C(C=C2)C3=CC=CC=C3,true
-CCCSC(Cl)=O,true
-CC3(C)CC2C=C(C=O)C14CC1(C2C3)C(=O)OC4O,true
-NC2=C1C=C(C=CC1=NC3=CC=CC=C23)O,true
-CC(=O)NC1=CC(=C(C=C1)C)N,true
-CN(CC1=CC=C(C=C1)F)N=O,true
-CC(=C)C(=O)OCC1CO1,true
-CC1=C(C(=CC=C1N)N=NC2=CC=CC=C2)N,true
-CC1=C(C=C(C=C1)[N+]([O-])=O)N=O,true
-ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)CCl,true
-CCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,true
-NC2=CC1=CC=CC=C1C=C2,true
-CCCON=O,true
-COC1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-NC3=CC=C2[NH]C1=CC=CC=C1C2=C3,true
-CNC(=O)OC1=C(C=CC=C1)OC(C)C,true
-CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC=CC=C2[NH]3,true
-COC1=CC(=C(C=C1)N)C,true
-C1=CC=C4C(=C1)C=C3C2=C(C=CC=C2)C5=C3C4=CC=C5,true
-ClCC=C,true
-CC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)CBr,true
-O=C1C=CC4=C2C1=CC=C3C=CC(C(=C23)C=C4)=O,true
-CC(=O)C(Cl)(Cl)Cl,true
-OC(=O)C1=CC(=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-COC3=C1C=COC1=NC4=CC2=C(OCO2)C=C34,true
-[O-][N+](=O)C4=C3C1OC1C2=CC=CC5=C2C3=C(C=C4)C=C5,true
-NC(CCC(=O)NC(CSN=O)C(=O)NCC(O)=O)C(O)=O,true
-OC1CCOP(=O)(N1)N(CCCl)CCCl,true
-C[N]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,true
-NC2=C1C=C(C=CC1=NC3=CC=CC=C23)Cl,true
-NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)N)N,true
-CC1=C(C(=CC=C1)N)C,true
-OC5=C4C=C3C1=CC=CC=C1C2=CC=CC=C2C3=CC4=CC=C5,true
-OCC(C(Cl)Cl)=C(Cl)C(O)=O,true
-N(N=NC1=CC=CC=C1)C2=CC=CC=C2,true
-C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)N=O,true
-CCCCN(CC(O)C1=CC(=[N+]=[N-])C(=O)C=C1)N=O,true
-CN1CC(O)C4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,true
-[O-][N+](=O)C1=CC(=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,true
-OC2=C1C(C=CC(C1=C(C=C2)O)=O)=O,true
-OC2C=CC1=CC5=C4C(=C1C2O)C3=CC=CC=C3C4=CC6=CC=CC=C56,true
-COC2=C1C=COC1=NC3=CC=CC=C23,true
-CCCCCCN(N=O)C(N)=N[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,true
-NC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)N)C3=O,true
-CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)Cl,true
-C1=CC5=C(C=C1)C4=C2C=CC3=CC=CC(=C23)C=C4C=C5,true
-[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC=C3,true
-COC2=CC=C1[N](C)C(=NC1=C2)N,true
-COC1=CC(=C(C=C1)N)OC,true
-CCNC1=C(C=CC(=C1)O)C,true
-OC5C1OC1C4=C(C3=CC=C2C=CC=CC2=C3C=C4)C5O,true
-[O-][N+](=O)C1=CC3=C2C1=CC=CC2=CC5=C3C4=CC=CC=C4C=C5,true
-OC1OC(=O)C(=C1Cl)Cl,true
-CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=CC2=CC=C3,true
-NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CC(CC1=CC(=C(C=C1)O)O)(NN)C(O)=O,true
-ClCC(Br)CCl,true
-CC4=CC3=NC2=C1C=CC=CC1=CC=C2C(=C3C=C4)C,true
-CC(=O)OCC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,true
-CCCCC(CC)COCC1CO1,true
-COC4=CC=C3C(=O)C2=C1C(=NC=CC1=CC(=C2OC)OC)C3=C4,true
-CC(O)CBr,true
-COC(=O)C12CC1(C=O)C(C=O)C=C3CC(C)(C)CC23,true
-[O-][N+](=O)C3=CC=C2OC1=CC=C(C=C1C2=C3)[N+]([O-])=O,true
-NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4CC(O)C(CO)O4,true
-C3CC2=C(C1=NC=CC=C1C=C2)C4OC34,true
-CCOP(=O)(OCC)N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-NC1=CC=C(C=C1)SC2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2CCSC2=N3)[N+]([O-])=O,true
-OC5=C4C1=CC=CC=C1C3=CC2=CC=CC=C2C=C3C4=CC=C5,true
-CC1=C(C=CC=C1)N,true
-O1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,true
-N1C4C1C3=C(C=C2C=CC=CC2=C3)C5=C4C=CC=C5,true
-OC1CC(=O)C5=C4C1(C2CCC(C3=C(C=CC(=C23)C4=CC=C5O)O)=O)O,true
-OC(=O)C1=CC=C(O1)[N+]([O-])=O,true
-O=C(OCC1CO1)C2=CC(=CC=C2)C(=O)OCC3CO3,true
-ClC(Cl)=C1OC(=O)C=C1,true
-[O-][N+](=O)C3=C1C=CC2=CC=CC(=C12)C=C3,true
-C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NO,true
-OC1=CC=C(C=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O,true
-OCC(CO)(CBr)CBr,true
-FC5=C3C=CC=C4C2=CC1=CC=CC=C1C=C2C(=C34)C=C5,true
-BrCCOC(=O)C=C,true
-[O-][N+](=O)C3=C2C=CC1=CC=CC4=C1C2=C(C=C3)OC4=O,true
-[O-][N+](=O)C1=CC2=C(C=C1)CCN2,true
-COC3=C2N=C1C=CC=CC1=C(C2=CC=C3)NCCCNCCCl,true
-[O-][N+](=O)C2=NC1=CC=CC=C1[NH]2,true
-COC(=O)C4=C2C(=CC1=C(C=CC=C1C2=C3OCOC3=C4)OC)[N+]([O-])=O,true
-CCOCC1=C(C3=C(C=C1O)C(=O)C2=C(C=CC=C2)C3=O)O,true
-NC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true
-COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true
-C1CN1C2=NC(=NC(=N2)N3CC3)N4CC4,true
-CC3=C(C=C2C(=C1C=CC=CC1=C(C2=C3)C)C)C,true
-CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)C)[N+]([O-])=O,true
-CC(=O)OCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,true
-CC4=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C=C4,true
-OC4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3[N+]([O-])=O)C4O,true
-OC(=O)C4=CN(C1CC1)C2=C(C=C(C(=C2)N3CCNCC3)F)C4=O,true
-CC1=C(C=CC=C1)OCC2CO2,true
-[O-][N+](=O)C1=C(C=C(C=C1)Cl)Cl,true
-COC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,true
-CCCCC1C(=O)N(N(C1=O)C2=CC=C(C=C2)O)C3=CC=CC=C3,true
-CCN(CC)C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=C(C=C3)N(CC)CC,true
-NC3=CC2=CC1=CC=CC=C1N=C2C=C3,true
-[O-][N+](=O)C1=C(C=CC(=C1)Cl)Cl,true
-ONC1=C(C=CC=C1)C2=CC=CC=C2,true
-NC2=NC1=CC(=CC=C1[NH]2)C#N,true
-CC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,true
-CC1=C(C=C(C=C1N)[N+]([O-])=O)N,true
-CC(=O)NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)NC(C)=O)Cl)Cl,true
-C=CC1CO1,true
-C1=CC5=C(C=C1)C4=NC3=C2C=CC=CC2=CC=C3C=C4C=C5,true
-CC(=O)NC1=CC3=C(C=C1)C2=CC=C(C=C2C3)NC(C)=O,true
-[O-][N+](=O)C2=C3C=CC4=C1C=CCCC1=CC5=CC=C(C=C2)C3=C45,true
-CCN1CCN(CC1)C3=C(C=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)F,true
-OC3C=CC2=C1C=CC=CC1=CC=C2C3O,true
-CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C(O)=O,true
-[O-][N+](=O)C1=C2C5=C(C3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O)CCCC5,true
-OC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,true
-CC(C)CCON=O,true
-OC3=C2C(=C1C=CC=CC1=C(C2=C(C=C3)O)O)O,true
-CCN(CC)CCCC(C)NC2=C1N=CC=CC1=CC(=C2)OC,true
-COC1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,true
-CN(C)C1=CC=C(C=C1)N=NS(O)(=O)=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC(=CC=C2O3)[N+]([O-])=O,true
-CCN(CCO[N+]([O-])=O)[N+]([O-])=O,true
-OC(=O)C4=C2C(=CC1=CC=CC=C1C2=C3OCOC3=C4)[N+]([O-])=O,true
-CCC(=O)C=C,true
-ClCCOC(=O)C=C,true
-CCC(O)C=CC=CC=CC=CC=O,true
-NC2=C1C(C3=C(C(C1=C(C=C2)N)=O)C=CC=C3)=O,true
-[O-][N+](=O)C1=CC=C(O1)C=N[N]2C=CC=N2,true
-[O-][N+](=O)C3=CC=C2C(=O)C1=CC=CC=C1C2=C3,true
-CC(C)OCC1CO1,true
-CC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-N1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,true
-ClC1CN(CC1Cl)N=O,true
-NNC(=O)C1=CC=NC=C1,true
-CCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-O=NC1=CC=C(C=C1)C2=CC=CC=C2,true
-CC2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1C=C2)C3=C45,true
-[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true
-C[N]1C(=NC2=CC(=CC=C12)C#N)N,true
-[N-]=[N+]=NCCC1=CC=CC=C1,true
-CC4=C3C2=CC1=CC=CC=C1C=C2C=CC3=CC=C4,true
-CC1=C(C=C(C(=C1)S(O)(=O)=O)N)Cl,true
-OCC1OC(CC1O)N2C=C(CO)C(=O)NC2=O,true
-C1=CC2=C(C=C1)C5=C(C=C2)C4=CC=C3C=CC=CC3=C4C=C5,true
-C1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,true
-COC1=CC4=C3C(=C1OC)C2=CC5=C(C=C2CC3N(CC4)C)OCO5,true
-NC1=C(C(=CC(=C1)[N+]([O-])=O)Cl)O,true
-[O-][N+](=O)C1=CC=C(O1)C=C(C#N)C#N,true
-CCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true
-CCCC=CC=O,true
-CC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-CN(N=O)N(C1=CC=CC=C1)C(=O)C(=NO)C(C)=O,true
-O=NN1CCCCCC1,true
-CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)COC(C)=O,true
-CC(C)(COCC1CO1)COCC2CO2,true
-ClC1=C(Cl)C(=O)OC1,true
-COC2=NSC3=C(OCC1CO1)C=CC=C23,true
-O=C1NC4=C2C1=CC5=C(C2=C3C=CC=CC3=C4)OCO5,true
-NC1=C(C=CC(=C1)[N+]([O-])=O)O,true
-CC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,true
-CC=CCC=O,true
-OS(=O)(=O)C3=C2C(C1=CC=CC(=C1C(C2=CC=C3)=O)[N+]([O-])=O)=O,true
-OCCNC(=O)N(CCCl)N=O,true
-CN(CC1=CC=C(C=C1)Cl)N=O,true
-[N-]=[N+]=NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-CC(=O)CN(COC(C)=O)N=O,true
-C=CCOCC1CO1,true
-NC1=CC=C(C=C1)CC2=CC(=C(C=C2)N)CC3=CC=C(C=C3)N,true
-O=NC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-CCOC(N)=O,true
-OC(=O)C2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true
-NC1=CC=C(C=C1)F,true
-CC4=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C4,true
-C=CCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-CCCN(CCC)N=O,true
-CC(C)CN(N)CC(C)C,true
-NC1=C(C=CC=C1)S(O)(=O)=O,true
-ClC1=CC=C(C=C1)CC2CO2,true
-O=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,true
-CN(C=O)N=O,true
-CC(O)CCl,true
-CC(=O)NC3=C2C=CC1=CC=CC4=C1C2=C(C=C3)C(=O)C4=O,true
-[O-][N+](=O)C2=CC1=CC=CC=C1C=C2,true
-[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC=C3,true
-OCC1=CC=C(O1)C=O,true
-NC1=C3C(=CC=C1)C2=CC=CC=C2C3,true
-ClC3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,true
-O1C2C1C5=C3C2=CC=CC3=CC6=C4C=CC=CC4=CC=C56,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-CC1=CC3=C(C(=C1)C)C2=CC=CC=C2C=C3,true
-CC1=C(C(=CC=C1)NO)C,true
-BrCCC(=O)N1CCN(CC1)C(=O)CCBr,true
-CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)[N+]([O-])=O,true
-CC2C1=C(C=CC=C1)C3=C2C(=CC=C3)C,true
-CC1=C(C(=CC=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CC1=CC(=O)OC2=C1C=C3CCCN4CCCC2=C34,true
-NC1=CC=C(C=C1)C2=CC=C(C=C2)[N+]([O-])=O,true
-COC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3)=O,true
-[O-][N+](=O)C1=CC=C(C=C1)[N+]([O-])=O,true
-NC1=CC=C(C=C1)CCC2=CC=CC=C2,true
-C1=CC3=C(C=C1)C4=CC=C5C=CC=C6C2=CC=CC=C2C(=C3)C4=C56,true
-COC(=O)NC(=S)NC1=C(C=CC=C1)NC(=S)NC(=O)OC,true
-O=N[N]1C=C(CC#N)C2=CC=CC=C12,true
-COC(=O)C1=NC(=C3C(=C1)C2=CC=CC=C2[NH]3)C4=NC5=C(C=C4)C(=O)C=CC5=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-COCC=O,true
-CC1=C(C=CC=C1)C(Cl)=O,true
-NC1=CC=C(C=C1)OC2=CC=C(C=C2)OC3=CC=C(C=C3)N,true
-OC1=NSC2=CC(=CC=C12)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC5=C2C1=CC=CC2=C4C=C3C=CC=CC3=CC4=C5,true
-NC3=C2C1=CC=CC=C1CC2=CC=C3,true
-C3C=CC4=C2C1=CC=CC=C1C=CC2=CC=C34,true
-CC(=O)C1=CC=C[N]1[N+]([O-])=O,true
-NC1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)N)[N+]([O-])=O,true
-O=C2C1=C(C=CC=C1)C4=C3C2=NC=CC3=CC5=C4OCO5,true
-COC6=C2[C]1=CC=C(C1=C(OC2=C5C4C3OC3OC4OC5=C6)O)O,true
-CC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,true
-OC(=O)C=CC1=CC=C(C=C1)[N+]([O-])=O,true
-[O-][N+](=O)C1=C([NH]C=N1)C2=CC=CC=C2,true
-ClCCNP1(=O)OCCCN1CCCl,true
-NC(CSCCCl)C(O)=O,true
-[O-][N+](=O)C1=C(N=C2SCC[N]12)C3=CC=C(C=C3)Cl,true
-CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)NO,true
-CC3=C2C1NC1C5=C(C2=CC4=CC=CC=C34)C=CC=C5,true
-[O-][N+](=O)C3=C1C=CC=C2C=CC(=C12)C=C3,true
-CC1=CC=C(C=C1)[N+]#N,true
-COC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)OC)N,true
-CC1=C(C=CC=C1)OP(=O)(OC2=C(C=CC=C2)C)OC3=C(C=CC=C3)C,true
-[O-][N+](=O)C3=C2OC(C1=CC=CC4=C1C2=C(C=C3)C=C4)=O,true
-NC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true
-CC[N+](CC)=C4C=CC3=NC2=C1C=CC=CC1=C(C=C2OC3=C4)N,true
-C[N]2C1=CC=CC=C1N=C2[N+]([O-])=O,true
-ClCCN(N=O)C(=O)NC1CCCCC1,true
-CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)O,true
-NC1=CC=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O,true
-OC1=C(C(=CC=C1)O)O,true
-C=CC(=O)N(CC1CO1)CC2CO2,true
-NC3=C1C=CC=CC1=C2C=CC4=C(C2=C3)C=CC(O)C4O,true
-CC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-OC1C(O)C4=C3C2=C1C=CC=C2C=CC3=C(C=C4)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC(=CC=C1)C(Cl)=O,true
-CC=CC=CC=O,true
-OC2=CC1=CC=CC=C1C(=C2)O,true
-CCCOC=CC=CC=CC=CC=CCC,true
-[O-][N+](=O)C1=CC(=CC(=C1)C(Cl)=O)[N+]([O-])=O,true
-OCC4=CC=C3C2=C1C(=CC=CC1=CC=C2)C3=C4,true
-CC(C)=CC(C)=NNC2=C1C=CC=CC1=CN=N2,true
-C1CSCSC1,true
-CC2=C1C=CC=CC1=C(C3=CC=CC=C23)C,true
-NC1=C(C=C(C=C1)OC2=CC(=C(C=C2)N)Cl)Cl,true
-NC3=CC2=NC1=CC=CC=C1C=C2C=C3,true
-CC(=O)C1=C(C(=C(C=C1)Cl)Cl)Cl,true
-[O-][N+](=O)C2=C3C1=CC=CC=C1C4=CC=CC5=CC=C(C=C2)C3=C45,true
-COC4=C1C5=C(C(OC1=C3C2C=COC2OC3=C4)=O)C(OCC5)=O,true
-O4C5=C1C=CC=CC1=C3C=C2C=CC=CC2=CC3=C45,true
-NC(CN=[N+]=[N-])C(O)=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C(Cl)=O,true
-O=C4OC1=C(C=C2CCCN3CCCC1=C23)C=C4,true
-CC(=C)C=O,true
-[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)C=CCC5,true
-OC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)O,true
-[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)Cl)Cl,true
-CC1=C(C=C(C(=C1)N)C)N,true
-[O-][N+](=O)C1=C(C=CC=C1)CCl,true
-OC1=C(C=C(C=C1Cl)Cl)S(=O)C2=C(C(=CC(=C2)Cl)Cl)O,true
-OC(=O)CNC(=O)C1=CC=C(C=C1)[N+]([O-])=O,true
-O1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,true
-BrCCOC(=O)C(=O)OCCBr,true
-C2CC1OC1CC2C3CO3,true
-OC6=CC=C5C1=C2C(=CC3=CC=CC4=CC=C(C=C1)C2=C34)C5=C6,true
-NC1=C(C=C3C(=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,true
-[O-][N+](=O)C3=CC(=C2C1=C(C=C(C=C1C(C2=C3)=O)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-[O-][N+](=O)C1=C(C(=C(O1)C(=O)CBr)C2=CC=CC=C2)C3=CC=CC=C3,true
-[O-][N+](=O)C2=C3C=CC4=C1CCCCC1=CC5=CC=C(C=C2)C3=C45,true
-CC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,true
-CC1=C2C(=C(C=C1)C)C3=C(C=C2)C(O)C(O)C4OC34,true
-COC1=CC3=C(C(=C1)O)C(=O)C2=C(C(=CC=C2O)O)O3,true
-CC[N]1C(=NC2=C1C=CC3=NC(=CN=C23)C)N,true
-CC(C)COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CC5=C3CCC4=C2C1OC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,true
-OCN1C(O)C(O)N(CO)C1=O,true
-CCC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CC1(CO1)C(=O)NCC2=CC=CC=C2,true
-NC1=CC=C(C=C1)CC(O)=O,true
-[O-][N+](=O)C2=CC(=C1C=CC=CC1=C2)[N+]([O-])=O,true
-CC2=CC3=CC=C4C1=CC=CC=C1C=C5C=CC(=C2)C3=C45,true
-NC(CCC(=O)NC(CSC(=O)NCCCl)C(=O)NCC(O)=O)C(O)=O,true
-NC1=CC=C(C=C1)CCC2=CC=C(C=C2)N,true
-CC(C)(O)CCC2=C1OC5=C(C(C1=C(C=C2)O)=O)C(=C4C3C=COC3OC4=C5)O,true
-CCOP(=O)(OCC)OC1=NC(=NC(=C1)C)C(C)C,true
-CCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-ClCCN(CCCl)C2=CC1=CC=CC=C1C=C2,true
-CC(=O)OCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true
-C[N]1C(=NC2=CC=C(C=C12)C#N)N,true
-COC(=O)C12OC1(C)C(O)(NC2=O)C(C)C,true
-NC2=CC1=NC=CC=C1C=C2,true
-CC1=CC=C(C=C1)OCC2CO2,true
-CC1CNC(=O)N1C2=NC=C(S2)[N+]([O-])=O,true
-ClC(Cl)(Cl)CC1CO1,true
-NC1=CC=C(C=C1)[N+]([O-])=O,true
-ClCCNC(=O)SC2=C1[NH]C=NC1=NC=N2,true
-CC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,true
-CC(=O)N(O)C1=CC=C(C=C1)SC2=CC=CC=C2,true
-OC1CC=CC2=C3C=CC4=CC=CC5=CC=C(C=C12)C3=C45,true
-COC(=O)C(Cl)Cl,true
-COC5=C2[C]1=CC=C(C1=C(OC2=C4C3(C=COC3OC4=C5)O)O)O,true
-[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C(C=CC=C23)[N+]([O-])=O)[N+]([O-])=O,true
-OC2=C1C=CC(C(C1=C(C3=CC=CC=C23)O)=N)=N,true
-NC1=C(C=C(C=C1)Cl)N,true
-CC(=O)NC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)O,true
-CC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC2=C(O1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2S3,true
-CC(=O)C1=CC=C(C=C1)NO,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)COC(C)=O,true
-CN(COC(C)=O)N=O,true
-CC(Br)C(=O)NCC1=CC=CC=C1,true
-OC5C=CC4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C5O,true
-CC(=O)NC1=CC=C(C=C1)C=N[N]3N=N[C]2=CC=NC2=C3O,true
-[O-][N+](=O)C1=CC=C(C=C1)SC2=CC=CC=C2,true
-ClC(Cl)(Cl)SN2C(=O)C1CC=CCC1C2=O,true
-O=CNC1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-BrCCBr,true
-CCOC(=O)CNC(=O)C=[N+]=[N-],true
-O1C2C1C7=C5C3=C2C=CC=C3C=C6C4=CC=CC=C4C(=C56)C=C7,true
-CC(=O)NC2=CC1=NC=CC=C1C=C2,true
-NC3=CC2=NC1=CC(=CC=C1N=C2C=C3)N,true
-C[N]2C(=NC3=NC1=CN=CC=C1C=C23)N,true
-C1=CC=C2C(=C1)C=CC3=C2C4=CC=CC5=CC=CC3=C45,true
-ClC3=C1C=CC=CC1=C2C=CC=CC2=C3,true
-CC1CCC(CC1)NC(=O)N(CCCl)N=O,true
-COC(=O)C12OC1(C)C(C)(O)NC2=O,true
-CC1=C3C(=C(C(=C1)[N+]([O-])=O)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,true
-[O-][N+](=O)C2=C3C=CC4=CC=CC5=C1C=CC=CC1=C(C=C2)C3=C45,true
-OCCCl,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true
-NC1=C(C(=CC=C1)[N+]([O-])=O)N,true
-CCN(CCCl)CCCNC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,true
-CC2=C1C=CC=CC1=C(C=C2)[N+]([O-])=O,true
-O1C2C1C5=C4C2=CC3=CC=CC=C3C4=CC6=CC=CC=C56,true
-CN(C)CCCNC1=C3C(=NC2=CC=CC=C12)C(=CC=C3)[N+]([O-])=O,true
-CC1=C(C=C(C(=C1)C)N)C,true
-OC4C=CC3=C2C=C(C1=CC=CC=C1C2=CC=C3C4O)[N+]([O-])=O,true
-CC1=C(C(=CC=C1)C)NO,true
-[O-][N+](=O)C3=C1C=CC=C2CCC(=C12)C=C3,true
-COC(=O)C1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C(=O)OC)N,true
-CC(=O)N(OC1OC(CO)C(O)C(O)C1O)C2=CC=C(C=C2)OC3=CC=C(C=C3)Cl,true
-CCCC(=O)OCC1=CC=C(C=C1)[N+]([O-])=O,true
-CC(C)NC(OCC1=CC=C(C=C1)[N+]([O-])=O)=NC(C)C,true
-C1=CC4=C(C=C1)C3=CC=C2N=CC=CC2=C3C=C4,true
-C[N+](C)(C)CCNCCC1=CC=C(C=C1)N=NC2=C(C=C(C=C2)[N+]([O-])=O)Cl,true
-[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-O=C(OCC1CO1)C2CCCCC2C(=O)OCC3CO3,true
-[O-][N+](=O)C3=CC2=C1C=C(C=CC1=C(C=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,true
-CCN(CC)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C2=CC=C3C1=C(C=CC=C1)C4=C(C=CC5=CC=C2C3=C45)[N+]([O-])=O,true
-NC(CSC(Cl)=CCl)C(O)=O,true
-CCOP(=O)(OCC)C(C)NC(=O)N(CCCl)N=O,true
-OCC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,true
-CC1=C(Cl)C(=O)OC1O,true
-C1=CC3=C(C=C1)C2=CC5=C4C(=C2C=C3)C=CC=C4C=C5,true
-NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,true
-O=C3C(C2=NC1=CC=CC=C1C=C2)C(=O)C4=C3C=CC=C4,true
-O=C2C=CC1=C(C=CC=C1)C2=O,true
-CC(C)(C)ON=O,true
-COC1=C(C=CC(=C1)[N+]([O-])=O)NC(C)=O,true
-OC1=C3C(=CC=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,true
-CC1CC(OC(C)O1)OC(C)=O,true
-CC1=C(C3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O)NC4=CC=CC=C4,true
-CC(=O)C1=C(C=C([N]1[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-ClC1=C(Cl)C(=O)C(=C(Cl)C1=O)Cl,true
-NC1=C(C=CC(=C1)[N+]([O-])=O)C2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C2C=CC3=[N+](C5=C(C4=CC=C1C2=C34)C=CC=C5)[O-],true
-OC1=CC3=C(C=C1)C2=CC=C(C=C2C3)[N+]([O-])=O,true
-C[N]1C=NC(=C1[N+]([O-])=O)C2=CC=CC=C2,true
-CN(CC(C)=O)N=O,true
-ClN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-SC2=C1[NH]C=NC1=NC=N2,true
-CC1CN1,true
-ONC3=CN=C2[N]1C=CC=CC1=NC2=C3,true
-COC1=C(C=C(C=C1)CC2CO2)OC,true
-C1=CC2=CC=C3C6=C5C(=C4C=CC(=C1)C2=C34)C=CC=C5C=C6,true
-CCCCOC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true
-C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)N,true
-OC(=O)CN(CC(O)=O)N=O,true
-CCOC1=CC=C(C=C1)N=O,true
-OS(=O)(=O)OCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-COC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-C[N+]2=C1C=CC=C(C1=CC3=CC=CC=C23)N,true
-C[N]1C(=NC2=C1C=CC3=NC=CC=C23)NC(C)=O,true
-OC2=C1C(C3=C(C(C1=CC=C2)=O)C=CC=C3O)=O,true
-COC1=CC4=C(C(=C1)OC2OC(CO)C(O)C(O)C2O)C(=O)C3=C(C(=CC=C3O)O)O4,true
-CCC[N]3C=C2CC1C(CC(C)CN1C#N)C4=C2C3=CC=C4,true
-[O-][N+](=O)C4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true
-C[N]2C(=NC3=CC=C1N=CC=CC1=C23)N,true
-O=C1CCO1,true
-NC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true
-[O-][N+](=O)C1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,true
-O=NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)F)F,true
-C(OCC2=C1C=CC=CC1=CC=C2)C3CO3,true
-[O-][N+](=O)C1=CC(=C(C=C1)F)[N+]([O-])=O,true
-CC2=CC(=O)C1=C(C=CC=C1O)C2=O,true
-NC(=O)NC2=NC1=CC=CC=C1[NH]2,true
-COC1=NSC2=C1C=CC=C2[N+]([O-])=O,true
-CC(C)(C)OO,true
-O=C4C=CC3=C(C2=CC=C1C=CC=CC1=C2C=C3)C4=O,true
-CCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-OC(=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CN(C)C1=CC=C(C=C1)C=CC2=CC=C(C=C2)[N+]([O-])=O,true
-[O-][N+](=O)C2=CC=C1[NH]C=CC1=C2,true
-CC1=CC(=C(C=C1)C)N,true
-CNC(=O)ONC(C)=O,true
-COC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-CC1=CC=C(C=C1)S(=O)(=O)N2C4C2C3=C(C=CC=C3)C5=C4C=CC=C5,true
-CC1=CC(=CC=C1)NO,true
-OC(=O)C1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CCN(CCCl)CCCNC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true
-[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2O3,true
-C[N]1C=NC(=C1C(=O)N(C)N=O)N(C)C(=O)OC(C)(C)C,true
-NC1=CC(=CC=C1)O,true
-[O-][N+](=O)C1=CC=C(C=C1)OC2CO2,true
-NC1=C(C=C(C=C1)Cl)[N+]([O-])=O,true
-CC1=CC=C(C=C1)NN=NCC2=CC=C(C=C2)[N+]([O-])=O,true
-CNN=NC,true
-CC(=O)C1=C(C=CC(=C1)NC(N)=O)OCC(O)CNC(C)(C)C,true
-CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCN(C)CC3,true
-CCC1=C(C(=CC=C1)CC)N,true
-NC1=CC3=C(C=C1)C2=CC=CC=C2[NH]3,true
-CS(=O)(=O)NC1=CC=C(C=C1)NC3=C2C=C(C=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true
-NC2=C1C(C3=C(C(C1=C(C=C2)O)=O)C=CC=C3)=O,true
-CCC1CO1,true
-CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)N)N,true
-OC1=CC2=C(C=C1)C3=CC5=CC=CC6=CC=C4C=CC2=C3C4=C56,true
-NC3=C(C=C2N=C1C=C(C=CC1=NC2=C3)Cl)N,true
-ClCCSCCCl,true
-NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)[N+]([O-])=O,true
-C[N]2C(=NC3=C1N=C(C)C=NC1=C(C)C(=C23)C)N,true
-CC(=O)OC1CC4=C2C1=C(C=CC2=CC5=C3C=CC=CC3=CC=C45)C,true
-CN1CCN(CC1)C2=C(C3=C(C=C2F)C(=O)C(=CN3CCF)C(O)=O)F,true
-[O-][N+](=O)C1=C2C=CC3=CC5=C(C4=CC=C(C=C1)C2=C34)CCCC5,true
-COC(=O)C12OC1(C)C(C)(O)OC2=O,true
-CC[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,true
-NC3=C2N=C1C=CC=CC1=NC2=CC=C3,true
-CC2=CC1=NC=CC=C1C=C2,true
-CC(C)(C)CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-O=C1CCCCC1=O,true
-[O-][N+](=O)C1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-[O-][N+](=O)C1=CC=C(O1)C=NN2C(=O)C=C(C=C2C3=CC=CC=C3)C4=CC=CC=C4,true
-CCCCCCCC(Cl)=O,true
-CN(CC1=CC(=CC=C1)C)N=O,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,true
-CC1=C(C=C(C=C1N)N)[N+]([O-])=O,true
-CC1(CO1)C(=O)NC2=CC=CC=C2,true
-OCCN(CC(O)=O)N=O,true
-[O-][N+](=O)C2=C1C=CC=CC1=CC=C2,true
-N=C1CC(=O)C(=O)C2=C1C=CC=C2,true
-O=C3CN(CCN2CC(=O)N(CN1CCOCC1)C(=O)C2)CC(=O)N3CN4CCOCC4,true
-CC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,true
-COP(=S)(OC)OC1=CC(=C(C=C1)N=O)C,true
-ClC(Cl)C(Cl)=O,true
-CC3=CC2=C(C(=C1C(=CC(=CC1=C2O)O)O)O)C(=O)C3=O,true
-NC1=CC=C(C=C1)C=CC2=CC=C(C=C2)N,true
-COC2=C1C(C5=C(OC1=CC=C2Cl)C=C4OC3OC=CC3C4=C5OC)=O,true
-C[N]1C=CC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O,true
-O=C(NC1CCCCC1)OC(C#C)(C2=CC=CC=C2)C3=CC=CC=C3,true
-NC3=C2C(=C1C(C=CC(C1=C(C2=C(C=C3)O)O)=N)=O)O,true
-CC(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-NC1=C(C=CC=C1)SCSC2=C(C=CC=C2)N,true
-ON=C(O)C1=CC(=C(C=C1)O)O,true
-NC1=CC(=C(C=C1)NCCO)[N+]([O-])=O,true
-O=C3N(CC1CO1)C(=O)N(CC2CO2)C(=O)N3CC4CO4,true
-BrCC(Br)=C,true
-OCCNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,true
-NC(=O)CNC(=O)N(CCCl)N=O,true
-C1=CC2=C(C=C1)C5=C4C(=C2)C=C3C=CC=CC3=C4C=C5,true
-NC(CCC(=O)NC(CSCCCl)C(=O)NCC(O)=O)C(O)=O,true
-[O-][N+](=O)C3=CC=C2SC1=CC=CC=C1C2=C3,true
-COC1=C(C=C(C(=C1)OC)C=CC)OC,true
-OC5CC1=C(C2=CC=C3C=CC=C4C=CC(=C1)C2=C34)C=C5,true
-[O-][N+](=O)C3=CC2=C(C=C1C(=CC=CC1=C2C=C3)[N+]([O-])=O)[N+]([O-])=O,true
-CC1=CC(=C(C=C1)O)N,true
-CC4=NC3=C2C1=CC(=CC=C1C=CC2=C(C=C3[NH]4)C)O,true
-CCC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-NC1=CC(=CC=C1)C2=CC=CC=C2,true
-[O-][N+](=O)C3=CC2=C1C(=CC=CC1=CC=C2)O3,true
-O=C2N(CC1CO1)SC3=C2C=CC(=C3)OCC4CO4,true
-COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)O)O)C3=O,true
-NC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-CC1=C(C=CC=C1)C2=CC=C(C=C2)N,true
-CC(CN(CC(C)OC(C)=O)N=O)OC(C)=O,true
-CN1CCC4=C2C1C(C5=C(C2=C3OCOC3=C4)C=CC=C5)O,true
-COC4=C1C(C5=C(OC1=C3C2C=COC2OC3=C4)C=CC=C5O)=O,true
-ClC(Cl)(Cl)SN2C(=O)C1=C(C=CC=C1)C2=O,true
-CC(C)CCCC(C)C3CCC4C2C=CC1(CC(O)CCC1(C)C2CCC34C)OO,true
-CN(CC1=CC=C(C=C1)[N+]([O-])=O)N=O,true
-NC2=C1C(=CC=CC1=CC=C2)N,true
-C1=CC3=C(C=C1)C2=CC=CC4=C2C(=C3)C=C4,true
-CCCCC(CC)COC(=O)C1=CC(=C(C=C1)N(C)C)[N+]([O-])=O,true
-CC1COC3=C2N1C=CC(C2=C(C(=C3N4CCN(C)CC4)F)C(O)=O)=O,true
-NC2=C1C(C3=C(C(C1=C(C=C2C(O)=O)[N+]([O-])=O)=O)C=CC=C3)=O,true
-[O-][N+](=O)C1=CC=C(S1)C3NC(=O)C2=C(C=CC=C2)N3,true
-CC1=C(C=CC=C1)N=NC2=C(C(=C(C=C2)N)C)N,true
-C1=CC3=C(C=C1)C2=CC=CC=C2C4=CC=CC=C34,true
-CCN(CCCl)CCCNC2=C1C=CC=C(C1=NC3=CC=CC=C23)OC,true
-C1=CC2=C(C=C1)C4=CC=CC5=CC=C3C=CC=C2C3=C45,true
-NC1=C(C3=C(C=C1)C2=CC=CC=C2[NH]3)[N+]([O-])=O,true
-CC1=C(C=C(C=C1)C(OC(=O)NC2CCCCC2)(C#C)C3=CC=CC=C3)C,true
-ClCCCBr,true
-NC2=C1N=C[N](C1=NC(=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4OC(CO)C(O)C4O,true
-NC3=C1C=CC=CC1=C2C=CC=CC2=C3,true
-CN(C)CCCNC2=C1C(=CC=CC1=NC3=CC=CC=C23)[N+]([O-])=O,true
-CCOC1=C(C=C(C=C1)NC(C)=O)N,true
-C1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-ClC4=C1C=CC=CC1=C3C=CC2=CC=CC=C2C3=C4,true
-CCC12OC1(C(=O)NC2(C)O)C(=O)OC,true
-OC5C(O)C4=C(C3=CC2=C1C=CC=CC1=CC=C2N=C3C=C4)C6OC56,true
-O=S1(=O)C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2CC3,true
-CCN(CCCl)C1=CC=C(C=C1)CCCNC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-CN1CC(=CC2C1CC3=C[N](CC=C)C4=CC=CC2=C34)CO,true
-CCCCC=CC=CC=CC=CC=COCC(O)CO,true
-CC(C)(C)OOC(=O)C1=CC=CC=C1,true
-ClC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)NC(=O)C4=CC=CC=C4)=O,true
-[O-][N+](=O)C3=CC2=C1C=CC=CC1=CC=C2C=C3,true
-CN(C)C(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CN(C)C1=CC=C(C=C1)N=NC3=CC2=CC=CC=C2C=C3,true
-O1C5C1C4=C3C2=CC=CC=C2C=CC3=CC6=C4C5=CC=C6,true
-N(NC1=CC=CC=C1)C2=CC=CC=C2,true
-CCOC(=O)CNC(=O)C(C)Br,true
-OC5=CC4=CC3=C1C=CC=CC1=C2C=CC=CC2=C3C=C4C=C5,true
-C1OC1CC2=CC=C(C=C2)CC3=CC=CC=C3,true
-[O-][N+](=O)C4=CC=C3C1=CC=CC2=C(C=CC(=C12)C3=C4)[N+]([O-])=O,true
-NC1=C(C=CC=C1)N,true
-CC1=CC(=C(C=C1)C)NO,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC(=O)C2=CC=C(C=C2)[N+]([O-])=O,true
-CCC=C1OC(=O)C2=C1C=CC=C2,true
-OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,true
-C[N]1C(=NC2=CC(=CC=C12)Cl)N,true
-NC3=CC2=C1C=CC=CC1=CC=C2C=C3,true
-CC1=C(C=CC=C1)N=NC2=CC(=C(C=C2)N=NC4=C3C=CC=CC3=CC=C4O)C,true
-C[N+]2=C1C=C(C=CC1=CC3=CC=CC=C23)N,true
-ClC(=O)CCC1=CC=CC=C1,true
-C1CCC2=C(C1)C6=C4C2=C3C=CC=CC3=CC4=C5C=CC=CC5=C6,true
-COC1=C(C=CC=C1)N=NC3=C2C=CC=CC2=CC=C3O,true
-CC1=CC(=C(C=C1)C)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC2=C(C=C1)C(=CC3=C2C(=CC=C3)[N+]([O-])=O)[N+]([O-])=O,true
-CC2C(O)CCC3=CC(=O)C1(OC1C23C)C4OC4CO,true
-CN(C)[N+]([O-])=O,true
-OCCC1=CC=C(C=C1)[N+]([O-])=O,true
-CC(=O)OCC1=C(C=CC(=C1)C(C)=O)OC(C)=O,true
-O1C=CC2=C1C=C3C=CC4=CC=CC5=CC=C2C3=C45,true
-OCCN(CCO)N=O,true
-CC(C)=[N+]([O-])[O-],true
-CC(=O)N(NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,true
-ClC=C(Cl)C(Cl)Cl,true
-OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OC=CC34)C=C5O)=O,true
-[O-][N+](=O)C4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,true
-[O-][N+](=O)C1=CC(=CC=C1)[N+]([O-])=O,true
-NC2=C1N=C([N](C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O)C4=CC=C(C=C4)[N+]([O-])=O,true
-OS(=O)(=O)OC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-CC1CS(=O)(=O)CCN1N=CC2=CC=C(O2)[N+]([O-])=O,true
-COC2=CC1=C(C3=C(C(=C1C(=C2)O)O)C(=O)C=C(C)C3=O)O,true
-C1CC2(CCO1)CO2,true
-OC1CC2=C4C1=CC=C5C=CC3=CC=CC(=C2)C3=C45,true
-BrCC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4C)Cl,true
-O=NN1CCCC1,true
-CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)NC(C)=O,true
-C[N]2C1=CC=CC=C1C3=C(C)C=CC(=C23)C,true
-CNC2=C(C1=NC=CN=C1C=C2)C,true
-[O-][N+](=O)C2=C3C=CC4=[N+](C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[O-],true
-NC1=C(C=C(C(=C1)Cl)[N+]([O-])=O)O,true
-CN(C)CCCl,true
-NNC1=CC=CC=C1,true
-COC1=CC(=C(C=C1)C(=O)C2=C(C=CC=C2)O)O,true
-CCN(CC)C1=CC(=CC=C1)O,true
-NC3=C2C(=C1C=CC=CC1=NC2=CC=C3)N,true
-CC1CO1,true
-CC1=CC=C[N]2C1=NC3=C(C)C(=CN=C23)[N+]([O-])=O,true
-CC1=CC2=C(C=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true
-OC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-CC3=CC2=C1C=CC=CC1=CC=C2C(=C3)C,true
-CC4CC1C(CC2=C[N](CC=C)C3=CC=CC1=C23)N(C4)C#N,true
-[O-][N+](=O)C1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true
-CC1(CO1)C2=CC=C(C=C2)[N+]([O-])=O,true
-CNC3=NC1=C(C=CC2=NC=CC=C12)[N]3C,true
-NC1=CC(=C(C=C1)Cl)N,true
-CN(C)CCNC(=O)C2=C1N=C(C=CC1=CC=C2)C3=CC=CC=C3,true
-ONC2=C1C=CC=CC1=CC=C2,true
-OC1=NC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-CC1=C2C(=CC=C1)C3=C(C(=C2)C)C4=C(C=C3)C(O)C(O)C5OC45,true
-CCCCC1=CC=C(C=C1)N=CC2=CC=C(C=C2)OC,true
-C[N+]1=CC=C(CC1)C2=CC=CC=C2,true
-OC1=NC(=C(C=N1)N(CCCl)CCCl)O,true
-[O-][N+](=O)C1=C(C=CC=C1)SSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl,true
-OC(=O)C1=CC(=CC=C1)[N+]([O-])=O,true
-COC1=C(C=CC(=C1)C2=NC(=C([NH]2)C3=CC=CC=C3)C4=CC=CC=C4)O,true
-[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)C2=O,true
-COC1=NSC2=CC=CC(=C12)[N+]([O-])=O,true
-CN(CC(=O)COC(C)=O)N=O,true
-CS(=O)(=O)OCCCCOS(C)(=O)=O,true
-CCC=CC=CC=CC=CC=COCC(C)O,true
-CN(C)CCNC(=O)N2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,true
-[O-][N+](=O)C1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-OCCBr,true
-COC1=CC(=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-NNC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-ClC(Cl)=CC=O,true
-CC3=CC2=CC1=CC=CC(=C1C(=C2C(=C3)O)O)O,true
-C[N]2C1=CC=CC=C1C3=CC=CC=C23,true
-CCC(COC(=O)C(C)=C)(COC(=O)C(C)=C)COC(=O)C(C)=C,true
-CC(=O)CN(CC(C)=O)N=O,true
-C1=CC3=C(C=C1)C2=CC=CC=C2N=C3,true
-COC1OC1(C)C,true
-CC(Cl)CCl,true
-[O-][N+](=O)C(Cl)(Cl)Cl,true
-CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=CC(C3=N4)=O)=O,true
-OCC2=C1C=CC=CC1=CC3=CC=CC=C23,true
-CC(C)=CC3C(C(=O)OCN2C(=O)C1=C(CCCC1)C2=O)C3(C)C,true
-CC(C)Br,true
-CCC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-CCCCC[N]3C=C2CC1C(C=C(C)CN1C)C4=C2C3=CC=C4,true
-C(CC1=CC=CC=C1)C2CO2,true
-C[N]2C(=NC3=C1N=CC(=NC1=C(C)C(=C23)C)C)N,true
-NC1=CC=C(C=C1)C2=C(C=C(C=C2)N)[N+]([O-])=O,true
-CCC12OC1(C(=O)OC)C(=O)OC2C,true
-NC1=CC(=C(C=C1)N)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC=C(O1)C=CC=O,true
-NC3=CC2=NC1=CC=CC=C1N=C2C=C3,true
-CC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,true
-COC(=O)C(=CC)C=C(C)C=C(C)C=CC=C(C)C(=O)C12OC1C(O)(CCO)NC2=O,true
-OC2=C(C(=C1C(C3=C(C(C1=C2)=O)C=CC=C3)=O)O)O,true
-CCCCCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CCC(C)=NO,true
-O1C2C1C6=C4C3=C2C=CC=C3C=CC4=C5C=CC=CC5=C6,true
-[O-][N+](=O)C2=CC1=CC(=C(C=C1C=C2)[N+]([O-])=O)[N+]([O-])=O,true
-COC3=CC2=CC1=CC(=CC(=C1C(=C2C(=C3)O)O)O)C,true
-[O-][N+](=O)C1=CC2=C(C=C1)C=CC2,true
-CC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true
-ClC(Cl)(Cl)Br,true
-[O-][N+](=O)C1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)N=O,true
-O=C(NCC1=CC=CC=C1)C2CO2,true
-CN(C)C1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)N(C)C,true
-CC(C)C(NC(C)=O)C(=O)N(CC(O)=O)N=O,true
-C1=CC2=CN=C3C=CC=C4C=CC(=C1)C2=C34,true
-C(CC1CO1)C2CO2,true
-ClCC=O,true
-CN(C)C1=CC(=C(C=C1)N=NC2=CC=CC=C2)C,true
-CC1=CC=C(C=C1)S(=O)(=O)NN,true
-CN3CCC4=C2C1=CC(=CC=C1C=CC2=CC=C34)O,true
-C[N]2C(=NC3=C1N=CC(=NC1=CC(=C23)C)C)N,true
-COC3=C(C=C2C(=C1C=COC1=NC2=C3)OC)OC,true
-N1C2C1C6=C5C3=C2C=CC=C3C4NC4C5=CC=C6,true
-CNC(=O)ON,true
-NC(=O)N=NC(N)=O,true
-C5=CC=C4C=C3C2=C1C(=CC=CC1=CC=C2)C3=CC4=C5,true
-COC3=NC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NCCCNCCCl,true
-COC(=O)C1=C(C(=C(O1)[N+]([O-])=O)Cl)Cl,true
-CC2C1=C(C=CC=C1)C3=C2C=C(C=C3)C,true
-CC4=C3N=C2C1=CC=CC=C1C=CC2=C(C3=CC=C4)C,true
-NC1=C(C=CC(=C1)Cl)O,true
-CCC1=NC4=C([NH]1)C3=C2C=C(C=CC2=CC=C3C=C4)O,true
-CC2C1=C(C=CC=C1)C3=C2C=CC=C3,true
-CCC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-CC1=C(C=C(C(=C1)C)[N+]([O-])=O)[N+]([O-])=O,true
-CC1=C(C=C(C=C1)N)[N+]([O-])=O,true
-CCCCCOC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-CC(C)N(N)C(C)C,true
-COC3=C1C=CC=C2OC(=CC(=C12)C=C3)[N+]([O-])=O,true
-NC(CCC(=O)NC(CSC(Cl)=C(Cl)Cl)C(=O)NCC(O)=O)C(O)=O,true
-C4=CC3=CC2=CC1=CC=CC=C1C=C2C=C3C=C4,true
-CNC(=O)C=C(C)OP(=O)(OC)OC,true
-COC1=CC(=CC=C1)C=CC2=CC=C(C=C2)N,true
-NC1=CC(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CC(Br)C(=O)NC1=CC=CC=C1,true
-OC(=O)C(Br)Br,true
-COC3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,true
-CCN(N=O)C(=O)N(C)C,true
-CC(C)(N=O)[N+]([O-])=O,true
-CC1OCC(=O)C(=O)C1O,true
-O=P2(OCC1=C(C=CC=C1)O2)OC3=CC=CC=C3,true
-CCC1=C(C(=O)OC)C(=O)OC1C,true
-COC(=O)C1=CCCN(C)C1,true
-CN(CCO[N+]([O-])=O)[N+]([O-])=O,true
-ClCC2=C4C=CC=C5C=CC3=CC1=CC=CC=C1C(=C2)C3=C45,true
-NC1=CC(=C(C=C1)C2=C(C=C(C=C2)N)Cl)Cl,true
-O=NN1CCSC1,true
-C[N]1C(=NC2=C1C=CC3=CC=CN=C23)N,true
-OC(=O)C(Cl)Br,true
-CC1=C(C=CC=C1)N=NC2=C(C=C(C(=C2)C)N)N,true
-NC3=CC=C2CC1=CC=CC=C1C2=C3,true
-CC4=CC3=NC2=C1C=CC=CC1=CC=C2C=C3C=C4,true
-COC(=O)C1=CCCN(C1)N=O,true
-OC1=CC(=CC=C1)[N+]([O-])=O,true
-CCS(=O)CCSP(=O)(OC)OC,true
-O1C2C1C6=C3C2=CC=CC3=C5C=C4C=CC=CC4=CC5=C6,true
-FC1=C(C=CC=C1)C(Cl)=O,true
-CC1=C3C(=C(C(=C1)N)C)C2=CC(=CC=C2[NH]3)O,true
-CCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true
-OC2=C1C(C=CC(C1=C(C(=C2Cl)Cl)O)=O)=O,true
-CNC1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,true
-CC2=C1C=CC=CC1=NC=C2,true
-NC1=C(C=C(C=C1)[N+]([O-])=O)Cl,true
-[O-][N+](=O)C1=CC2=C(C=C1)C(=O)NC2=O,true
-ClC(Cl)(Cl)C=O,true
-COC(=COC(N)=O)C1=C(C(=C(C(=C1O)N2CC2)C)O)N3CC3,true
-CC1=C(C=C(C(=C1)N)[N+]([O-])=O)N,true
-[O-][N+](=O)C2=CC=C1C=N[NH]C1=C2,true
-COC2=CC1=CC=CN=C1C(=C2)NC(C)CCCN,true
-CCOC1=CC=C(C=C1)N,true
-OC1=CC=C2C(=C1)C=CC3=C2C4=C([NH]3)C=CC5=C4C=CC=C5,true
-[N-]=[N+]=C1C=NC(=O)NC1=O,true
-C(CCOCC1CO1)COCC2CO2,true
-CNC2=C(C1=NC(=CN=C1C=C2)C)C,true
-CC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC=C2O)C3=O,true
-COC1=C(C=CC(=C1)N)C,true
-CC1=C(C(=C(C(=C1)C)N)C)N,true
-ONC2=C1C=CC=CC1=[N+](C=C2)[O-],true
-COP(=O)(OC)C(O)C(Cl)(Cl)Cl,true
-NCCNCCO,true
-C1=CC5=C(C=C1)C4=CC3=C2C=NC=CC2=CC=C3C=C4C=C5,true
-CC(=O)N(Cl)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-[O-][N+](=O)C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-CNC2=C(C1=NC=C(N=C1C=C2)C)C,true
-CC(=O)NC1=CC3=C(C=C1)C2=C(C=CC=C2C3)O,true
-[O-][N+](=O)C2=C3C=CC4=C1C=CC=CC1=NC5=CC=C(C=C2)C3=C45,true
-ON=C1CCCCC1,true
-[O-][N+](=O)C1=CC=C(O1)C=NN2CCCNC2=O,true
-CCC=CC=CC=CC=CC=CC=COCC(O)CO,true
-ClCC(Br)=C,true
-CC1=NC(=C(C=N1)CNC(=O)N(CCCl)N=O)N,true
-FC1=NC=CC=C1,true
-ON(C(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,true
-O=CC1=CC=CO1,true
-[O-][N+](=O)C3=CN=C2[N]1C=CC=CC1=NC2=C3,true
-CC1=C2C(=CC=C1)C3=CC=C4C=CC=C5C=CC(=C2)C3=C45,true
-CN(C)S(=O)(=O)CCNC(=O)N(CCCl)N=O,true
-CCS(=O)(=O)CC[N]1C(=NC=C1[N+]([O-])=O)C,true
-NC(=O)C1(OC1C(=O)C2=CC=CC=C2)C(N)=O,true
-COC3=CC=C2N=C1OC=CC1=C(OC)C2=C3,true
-CC1=C(C=CC(=C1)C2=CC(=C(C=C2)N)C)N,true
-CCNN=NCC,true
-OC2=C1C(C3=C(C(C1=CC=C2)=O)C(=CC=C3)O)=O,true
-CCOC1=CC=C(C=C1)N(O)C(C)=O,true
-COC1=C(C=C(C=C1)[N+]([O-])=O)N=NC3=C2C=CC=CC2=CC(=C3O)C(=O)NC4=CC(=CC=C4)[N+]([O-])=O,true
-OCC=[N+](O)[O-],true
-BrN1C(=O)CCC1=O,true
-ON=C(O)CC1=C[N](C=N1)N=O,true
-OCC(O)CN=[N+]=[N-],true
-CC1=CC=C(C=C1)C(Cl)=O,true
-NC1=CC=C(C=C1)OC2=CC=C(C=C2)N,true
-CCC1=C(C(=CC=C1)CC)NC(=O)CCl,true
-S1C=CN=C1,true
-CC(C)(Cl)[N+]([O-])=O,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)C,true
-NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)Br)Br,true
-COC1=NSC2=C(N)C=CC=C12,true
-C[N]1N=C(C)C(=C1N)C(=O)C2=C(C=CC=C2)F,true
-CC1=CC(=CC(=C1)C)NO,true
-COC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OC,true
-[O-][N+](=O)C1=C2C(=CC=C1)C(=CC=C2)[N+]([O-])=O,true
-C(OCC1=CC=CC=C1)C2CO2,true
-CC(C)(C)C1=CC(=O)C=C(C1=O)C2=CC(=O)C=C(C2=O)C(C)(C)C,true
-CCC=CC=CC=CC=CC=COCC(O)C1=CC=CC=C1,true
-CC(=O)N(O)C1=C(C=CC=C1)C,true
-COC1=C(C=CC=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-CC1=CC=C(C=C1)S(=O)(=O)OCC2CO2,true
-COC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-CC(C)=CC2C(C(=O)OCC1=CC=C(O1)CC#C)C2(C)C,true
-OC1OC(=O)C(=C1C(Cl)Cl)Cl,true
-ClCCNCCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true
-C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,true
-O=CC1CO1,true
-NC1=C(C=C(C=C1)CC2=CC(=C(C=C2)N)Cl)Cl,true
-NC(=S)C1=C(C=CC=C1Cl)Cl,true
-CC(C)(C)C1=CC=C(C=C1)OCC2CO2,true
-COC1=CC=C2C(=C1)C=CC3=C2C=C(O3)[N+]([O-])=O,true
-ClCC(Cl)=C,true
-CC1OC(CC(N)C1O)OC2=CC(O)(CC5=C2C(=C4C(=C3C=CC=CC3=C(C4=C5O)O)O)O)C(C)=O,true
-C=CCCC1CO1,true
-BrCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true
-[O-][N+](=O)C2=C3C=CC4=C1CCC=CC1=CC5=CC=C(C=C2)C3=C45,true
-ClC1=CC3=C(C=C1)C2=CC=CC=C2O3,true
-C([N]1C=CN=C1)C2=CC=CC=C2,true
-OS(=O)(=O)OCC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,true
-CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O)[N+]([O-])=O,true
-NC3=C(C=C2C1=CC=CC=C1[NH]C2=C3)[N+]([O-])=O,true
-OC(=O)COC1=CC=C(C=C1)N(CCCl)CCCl,true
-NC2=C1N=C[N](C1=NC=N2)CC(O)CN=[N+]=[N-],true
-C[N]2C(=NC3=C1N=C(C)C(=NC1=C(C)C(=C23)C)C)N,true
-CC3=C2C=CC1=CC=CC=C1C2=NC4=CC=CC=C34,true
-FC1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true
-[O-][N+](=O)C1=C(C=CC=C1)CC#N,true
-COC(=O)C12OC1(C)C(OC2=O)C(C)C,true
-[O-][N+](=O)C3=CC2=CC1=CC=CC=C1C=C2C=C3,true
-ClCC1=C4C(=CC2=CC=CC=C12)C3=CC=CC=C3C=C4,true
-BrCC(Br)CBr,true
-NCCC1=C(C=C(C(=C1)O)O)O,true
-ONC1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2C3=O)[N+]([O-])=O)[N+]([O-])=O,true
-CC(=O)OC(OC(C)=O)C1=CC=C(O1)[N+]([O-])=O,true
-COC1=CC=CC=CC1,true
-NC1=NC3=C(C=C1)C2=CC=CC=C2[NH]3,true
-BrCC(=O)NCC1=CC=CC=C1,true
-COC(=O)C1=CC=C(O1)[N+]([O-])=O,true
-CC1=CC=C2C=C4C(=C3CCC1=C23)C=CC5=CC=CC=C45,true
-COC(=O)C(C)=CC1=CC=C(O1)[N+]([O-])=O,true
-NC1=CC=C(C=C1)N=NC2=CC=CC=C2,true
-CNC2=C(C1=NC(=C(N=C1C=C2)C)C)C,true
-ClC(=O)C1=C(C=CC=C1Cl)Cl,true
-O=C(NC1=CC=CC=C1)C2CO2,true
-[O-][N+](=O)C1=NC=C[N]1CC(=O)NCC2=CC=CC=C2,true
-N1C4C1C3=C(C2=CC=CC=C2C=C3)C5=C4C=CC=C5,true
-O1C3C1C2=CSC=C2C4=CSC=C34,true
-CBr,true
-OC3C=CC2=C1C(=CC4=C(C1=CC=C2C3O)CCC4=O)C(F)(F)F,true
-CNC3=CC2=C1C=C(C=CC1=CC=C2C=C3)O,true
-CC3(C)CC2C=C(CO)C1(CC1(C)C2C3)C=O,true
-ClCC1=CC(=O)OC1,true
-CCOP(=S)(OCC)OP(=S)(OCC)OCC,true
-N1C6C1C2=C(C=C4C(=C2)C3=CC=CC=C3C5NC45)C7=C6C=CC=C7,true
-CC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true
-OC(CC1=C[N](N=O)C2=CC=CC=C12)C(O)=O,true
-CC1=NC=C([N]1CCO)[N+]([O-])=O,true
-ClC3C6(Cl)C4C2C1OC1C5C2C3(Cl)C(Cl)(C45)C6(Cl)Cl,true
-[O-][N+](=O)C1=CC(=CC=C1)Br,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)C3=O,true
-COC1=CC4=C3C(=C1OC)C2=CC=CC=C2C(C3=NC=C4)=O,true
-CCCCN(CCCCO)N=O,true
-COS(=O)(=O)OC,true
-OCC(O)C1CO1,true
-ClC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-C(CC2=C1C=CC=CC1=CC=C2)C3CO3,true
-[O-][N+](=O)C2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,true
-CC1(C)C(C=C(Cl)Cl)C1C(=O)OCC2=CC(=CC=C2)OC3=CC=CC=C3,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=CC=C2,true
-OC4=C3C2=CC=C1C=CC=CC1=C2C=CC3=CC=C4,true
-CCN(CC)C1=CC=C(C=C1)N,true
-C[N]2C(=NC3=CC1=NC=C(C)N=C1C(=C23)C)N,true
-OCCC1=C(C=CC=C1)[N+]([O-])=O,true
-CC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,true
-OC1=CC4=C(C=C1)C3=CC=C2C=CC=CC2=C3C=C4,true
-CC3=CC2=CC1=CC=CC=C1C=C2C=C3,true
-CCC1=C(C(=CC=C1)CC)N(COC)C(=O)CCl,true
-[NH]3C2=CC=C1C=CC=CC1=C2C4=C3C=CC5=CC=CC=C45,true
-CC(=O)C=C,true
-[O-][N+](=O)C1=CC(=C(C=C1)C2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-CN1CCC4=C2C1CC5=C(C2=C3OCOC3=C4)C=CC=C5,true
-CC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-CC(=O)OCC(O)CO,true
-CC(C)CCCC(C)C3CCC4C2C(OO)C=C1CC(O)CCC1(C)C2CCC34C,true
-CC(=O)C(Cl)Cl,true
-[O-][N+](=O)C2=C1C=CC=C3C1=C(C=C2)C4=C(C=CC5=CC=CC3=C45)[N+]([O-])=O,true
-C1=CC2=C5C=CC=C6C=CC4=CC=C3C=CC(=C1)C2=C3C4=C56,true
-[O-][N+](=O)C3=CC=C2OC(=O)C1=CC=CC=C1C2=C3,true
-CC(=O)NC1=CC=C(C=C1)OC2=CC=CC=C2,true
-CC4CC3(OC1OC(CO)C(O)C(O)C1O)C=C(C)C2(CC2)C(C)(O)C3C4=O,true
-C1OC1COC2=C(C=CC=C2)C3=CC=CC=C3,true
-COC(=O)C(CSCCBr)NC(C)=O,true
-CC5=C3CCC4=C2C1NC1C6=C(C2=CC(=C34)C=C5)C=CC=C6,true
-CC(C)OS(C)(=O)=O,true
-CN(C)C1=CC=C(C=C1)C,true
-CNC(=O)OC1=CC=C(C=C1)C2=CC=CC=C2,true
-C6CCC5=C3C1=CC=CC=C1C4=CC2=CC=CC=C2C(=C34)C=C5C6,true
-NC1=C3C(=CC=C1)C2=CC=CC=C2C=C3,true
-OP(=O)(OCC(Br)CBr)OCC(Br)CBr,true
-[O-][N+](=O)C1=CC=C(C=C1)OC2=CC=CC=C2,true
-CC1=C3C(=C(C=C1)C)C2=CC(=CC=C2[NH]3)[N+]([O-])=O,true
-CC1=CC=C(C=C1)NCCCl,true
-O=NC2=CC1=CC=CC=C1C=C2,true
-C[N]1C(=NC2=C1C=CC3=CC=NC=C23)N,true
-C2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,true
-OP1(=NCCCO1)N(CCCl)CCCl,true
-OC2C1=C(C=CC=C1)C3=C2C=C(C=C3)[N+]([O-])=O,true
-C1OC1COC3=CC=C2SN=CC2=C3,true
-[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,true
-C1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-CC(=O)ON(C(C)=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-NC1=C(C=C(C=C1)[N+]([O-])=O)O,true
-COC1=CC3=C(C=C1)OC2=C(C(=CC(=C2)OC)O)C3=O,true
-OC2=C1C(C=CC(C1=CC=C2)=O)=O,true
-CC3=CC(=O)C2=C(C(=C1C=CC=CC1=C2O)O)C3=O,true
-CN(C)C(Cl)=O,true
-COC1=C(C=CC(=C1)N=NC2=CC=CC=C2)N,true
-CC(C)CC(=O)OCC1=COC=C2C(=CC=[C]12)C=O,true
-CC(=O)OCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,true
-COC1=C(C=CC(=C1)[N+]([O-])=O)N,true
-N1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-CNC(=O)CSP(=S)(OC)OC,true
-CC1=C(C=CC=C1)NO,true
-OC5=CC4=C3C2=C1C=CC=CC1=CC=C2[NH]C3=CC=C4C=C5,true
-C=CC(=O)NCNC(=O)C=C,true
-CCOC1=CC=C(C=C1)[N+]([O-])=O,true
-CC(C)(C)N(CC(=O)C1=CC(=C(C=C1)O)CO)CC2=CC=CC=C2,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C(O3)=O,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=C(C=CC=C2)Cl,true
-NC1=C(C=C(C(=C1)[N+]([O-])=O)N)F,true
-OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC(=C(C=C3)O)O)=O)=O,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC(=CC=C2)CCl,true
-CC(Br)C(Br)CCl,true
-C[N]1C(=NC2=C1C=C(C)C3=NC=CN=C23)N,true
-C4CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C4,true
-COCC4CN(C)C3CC1=C[N](C)C2=CC=CC(=C12)C3=C4,true
-[O-][N+](=O)C1=CC(=C(C(=C1)[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,true
-C3=CC2=CC1=CC=CC=C1N=C2C=C3,true
-CCN1C=C(C(O)=O)C(=O)C2=C1N=C(C(=C2)F)N3CCNCC3,true
-CC(=O)NC(CSCCCl)C(O)=O,true
-ClC(Cl)C1=CC=CC=C1,true
-[O-][N+](=O)C1=CC=C(C=C1)C=CC2=CC(=CC=C2)Cl,true
-[O-][N+](=O)C1=CC(=C(C=C1)C2=CC(=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)[N+]([O-])=O,true
-CCCCN(CCCC)N=O,true
-CNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-C[N]1C=NC(=C1N=O)C2=CC=CC=C2,true
-[O-][N+](=O)C2=C3C=CC4=NC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-N#CC1=CC3=C2C1=CC=CC2=CC=C3,true
-NC3=CC2=C(C1=CC=CC=C1N=C2C=C3)N,true
-ONC1=CC=CC=C1,true
-ClC2=CC1=CC=CN=C1C=C2,true
-C1=CC3=C(C=C1)C4=C2C=CC=CC2=C5C=CC=C6C=CC(=C3)C4=C56,true
-CCC(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-OC1=C2C=CC3=CC=C(C4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true
-ClC=C(Cl)SCC1=CC=CC=C1,true
-S(SC2=NC1=CC=CC=C1S2)C4=NC3=CC=CC=C3S4,true
-N1C5C1C2=C(C=C4C(=C2)C3=CC=CC=C3C=C4)C6=C5C=CC=C6,true
-CC(=O)NC2=C1N=CC=CC1=CC=C2,true
-CN1CN=C2C(=[N+](O)[C-]N=C12)N,true
-CC=C(Cl)C=O,true
-NC(=N)NC(=O)C1=C(N=C(C(=N1)Cl)N)N,true
-C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)N,true
-COC3=CC(=C2N=C1OC=CC1=C(OC)C2=C3)OC,true
-CN(COC(C)=O)[N+]([O-])=O,true
-CC(Cl)(Cl)[N+]([O-])=O,true
-CN(C)C(=S)SSC(=S)N(C)C,true
-NC1=CC2=CC=C3C=CC=C4C=CC(=C1)C2=C34,true
-NC1=CC=C(C=C1)SC2=CC=CC=C2,true
-CC1=C3C(=CC2=CC=CC=C12)C4=C(C=C3)C(O)C(O)C5OC45,true
-[O-][N+](=O)C1=CN=C(S1)N2CCN(C(=O)C(Cl)Cl)C2=O,true
-COC1=NSC2=CC=C(N)C=C12,true
-[O-][N+](=O)C1=CC=C2C=CC3=C(C5=C(C4=CC=C1C2=C34)C=CC=C5)[N+]([O-])=O,true
-CN(C)CCCNC2=C1C(=CC=C(C1=NC3=CC=CC=C23)N(CCO)CCO)[N+]([O-])=O,true
-CC1=CC=C(C=C1)NC(=O)C2=CSC(=C2)[N+]([O-])=O,true
-ClC(Cl)=C(Cl)C=O,true
-COC3=C2N=C1OC=CC1=C(C2=CC=C3)OC,true
-COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OC=CC34)O5)OC,true
-[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)Cl,true
-NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,true
-NC(CCC(=O)NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(=O)NCC(O)=O)C(O)=O,true
-NC(CSC(Cl)=C(Cl)C(Cl)=C(Cl)Cl)C(O)=O,true
-CNC1=C([N](C=N1)C)C(=O)N(C)N=O,true
-CC3=CC2=C1C=C(C=CC1=CC=C2C=C3)C,true
-COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC=C(C2=NC4=CC(=CC=C34)N=[N+]=[N-])C,true
-CCN(CCCl)CCCNC2=C1C=CC=CC1=NC3=CC=CC=C23,true
-CC(O)CN(C)C1=NN=C(C=C1)NN,true
-CC4=CC3=CC2=C1C=CC=CC1=CC=C2C=C3C=C4,true
-CC1(C)COC1=O,true
-CC(O)CN(CC(C)O)N=O,true
-CC(Cl)CO,true
-CC1=C(C=C(C=C1)N=NC2=CC(=C(C=C2)C)N)N,true
-ClC(Cl)C(=O)C(Cl)Cl,true
-COC2=C1OC=CC1=CC3=C2OC(C=C3)=O,true
-CC4=C2C=C1C=CC=CC1=CC2=C3C=CC(C(C3=C4)O)O,true
-NC2=C1C=CC=CC1=C(C=C2)N,true
-O=NC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-C[N]2C(=NC3=C1C=CC=NC1=CC(=C23)C)NC(C)=O,true
-C1=CN=C(C=C1)C2=CN=CC=C2,true
-CC(=O)NC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,true
-CC1=C4C(=C(C2=CC=CC=C12)CBr)C3=CC=CC=C3C=C4,true
-O=C1NCNC(=O)N1,true
-CC(=O)NC1=C(C(=CC=C1)N)C(O)=O,true
-C1OC1CC2=CC=CC=C2,true
-OC1=C(C=C(C=C1[N+]([O-])=O)C2=CC=CC=C2)[N+]([O-])=O,true
-C[N+]2=C1C=CC=CC1=C(C3=CC=CC=C23)N,true
-CCOC1=C(C=CC=C1)[N+]([O-])=O,true
-CCCCCN1C3C1C2=C(C=CC=C2)C4=C3C=CC=C4,true
-CC2=CC1=CC4=C(N=C1C=C2)C3=CC=CC=C3C=C4,true
-CC1=C3C(=C(C=C1)C)C2=CC=CC=C2C=C3,true
-C1=CC3=C(C=C1)C4=CC=C5C2=CC=CC=C2C=C6C=CC(=C3)C4=C56,true
-O1C2C=CC=CC12,true
-COC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-NC4=C1C=CC=CC1=C3N=C2C=CC(C=C2OC3=C4)=N,true
-NC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,true
-COC1=CC3=C(C(=C1)OC)C(=O)C2=C(C(=CC=C2O)OC)O3,true
-O=C1C=CC3=C2C1=CC=CC2=CC=C3,true
-CCC2=C(N=C1C(=C(C=CC1=N2)NC)C)CC,true
-[O-][N+](=O)C2=CC=C1[NH]C=NC1=C2,true
-CN(C)C1=CC(=CC=C1)O,true
-[N-]=[N+]=NCC1=CC=CC=C1,true
-[O-][N+](=O)C1=CC=[N+](C=C1)[O-],true
-CC4=C1C=CC=CC1=C3N=C2C=CC=CC2=C(C3=C4)C,true
-COC1=C(C=CC(=C1)NS(C)(=O)=O)NC3=C2C=CC(=CC2=NC4=CC=CC=C34)N=[N+]=[N-],true
-O=CC=O,true
-CC2=NC1=CC(=C(C=C1C(=C2)C)C)N,true
-COC1=C(C5=C(C=C1)C2=C(C4=C(C=C2)C=C3OCOC3=C4)N(C)C5=O)OC,true
-CC1(C)CC2C(O)(C1)C=C(C=O)C3(CC23C)C=O,true
-CC=C1CC(=C)C(O)(CO)C(=O)OCC2=CCN3CCC(OC1=O)C23,true
-CC(=O)NC1=CC=C(C=C1)N,true
-ClC1=NC(=CC=C1)C(Cl)(Cl)Cl,true
-CCOS(=O)(=O)C1=CC=C(C=C1)C,true
-[O-][N+](=O)C4=CC=C3C2=C1C(=CC=CC1=CC=C2)C5=C3C4=CC=C5,true
-CC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true
-CCN(CC)CCCC(C)NC2=C1C=CC(=CC1=NC=C2)Cl,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2C3,true
-S2C4=CC=CC5=CC=C3C1=CC=CC=C1C=C2C3=C45,true
-NC2=C1C(C4=C(C(C1=C(C=C2OC3=CC=CC=C3)O)=O)C=CC=C4)=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2CC3)C4=CC=CC=C4CC5,true
-O=C1C=CC(=O)C2=C1C=CC=C2,true
-NC3=CN=C2[N]1C=CC=CC1=NC2=C3,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)F,true
-NC1=CC(=C(C=C1)O)[N+]([O-])=O,true
-CC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-CC1=CC=C(C=C1)NO,true
-NC3=CC2=CC1=CC=CC=C1C=C2C=C3,true
-OC5C=C3C2=C(C1=CC=CC=C1C=C2)C4=C3C(=CC=C4)C5O,true
-ClC1=C(Cl)C(=O)NC1=O,true
-OCCN1CN(CCO)CN(CCO)C1,true
-CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,true
-NC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-[O-][N+](=O)C4=C1C=CC=CC1=C3C=CC2=CC=CC5=C2C3=C4CC5,true
-OCCNC2=C1C=CC=CC1=NC(=N2)C3=CC=C(S3)[N+]([O-])=O,true
-ClCC=CCCl,true
-ClCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,true
-C[N]1C=NC2=C(NO)N=CN=C12,true
-O=CC(=O)C1=CC=CC=C1,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2C=C3)[N+]([O-])=O,true
-OCCN(CCO)C2=CC1=CC=CC=C1C=C2,true
-C=O,true
-CN(C)C1=CC=C(C=C1)N,true
-C[N]1C(=NC2=C1C=CC3=CN=CC=C23)N,true
-ClCC2=C4C=CC=C5C=CC3=C1C=CC=CC1=CC(=C2)C3=C45,true
-CC1=CC=C(C=C1)NC2=CC=C(C=C2)[N+]([O-])=O,true
-CCCCCC=CC(=O)CCC1=CC(=C(C=C1)O)OC,true
-CC1(CO1)C2=CC=C(C=C2)C3=CC=CC=C3,true
-COP(=S)(OC)OC1=CC(=C(C=C1)N)C,true
-CCNC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-OC5C=CC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4C5O,true
-COC1=C(C=CC(=C1)CNC(=O)CCCCCCC(C)C)O,true
-O=C(OCC=CC1=CC=CC=C1)C=CC2=CC=CC=C2,true
-C[N]1C(=NC2=C1C=CC3=NC=CC=C23)N,true
-ClC1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)N=O,true
-COC1=C(C=CC=C1)CC2CO2,true
-[O-][N+](=O)C1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-CC(=O)N(OC(=O)C1=CC=CC=C1)C2=CC4=C(C=C2)C3=CC=CC=C3C4,true
-CC(=O)C1=CC(=CC=C1)[N+]([O-])=O,true
-FC2=CC1=CC=CN=C1C=C2,true
-OC1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true
-C5CC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C=C5,true
-ON(C=O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-COC4=CC(=O)C3=C2[NH]C1=CC=CC=C1C2=C(C)N=C3C4=O,true
-OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)N=NC4=CC=CC=C4,true
-C[N]1C(=NC2=C1C=CC3=NC(=CC=C23)O)N,true
-ClCC(=O)CCl,true
-OP(O)(=N)N(CCCl)CCCl,true
-C[N]2C=C1C=CC=C(C1=N2)[N+]([O-])=O,true
-FC2=C1C=CC=CC1=NC=C2,true
-O=C1C4=C3C2=C1C=CC=C2C=CC3=CC=C4,true
-ClCC1=C(Cl)C(=O)OC1,true
-C1=CC3=C(C=C1)C2=CC=CC=C2C=C3,true
-CC1=C(C=CC=C1)N=O,true
-OC1=C2C(=CC=C1)C3=C(C=C2)[NH]C4=C3C5=C(C=C4)C=CC=C5,true
-CC(=O)C(C)=O,true
-CC1=C(C=C(C=C1)NO)C,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC=C(C=C2)Br,true
-[O-][N+](=O)C2=CC1=C3C=CC4=CC=CC5=CC=C(C=C1O2)C3=C45,true
-CN(C)C(=O)NC1=CC(=C(C=C1)Cl)Cl,true
-CC1=C3C(=C(C=C1)C)C2=CC=CC=C2[NH]3,true
-[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=CC=C2)O3,true
-NC(=O)NN=CC1=CC=C(O1)[N+]([O-])=O,true
-C[N]1C(=NC2=C1C=C(C)C3=NC(=C(C)N=C23)C)N,true
-C=CCN=C=S,true
-[O-][N+](=O)C([N+]([O-])=O)([N+]([O-])=O)[N+]([O-])=O,true
-C1COCC2(C1)CO2,true
-ClC3=CC=C2OC1=CC=CC=C1C2=C3,true
-OC2=C3C=CC4=CC1=CC=CC=C1C5=CC=C(C=C2)C3=C45,true
-CC1=C(C=C(C=C1N)[N+]([O-])=O)[N+]([O-])=O,true
-[O-][N+](=NC1=CC=CC=C1)C2=CC=CC=C2,true
-ClC(=O)C1=CC=CC=C1,true
-COC1=CC3=C(C(=C1)O)C(=O)C2=C(C=CC(=C2)O)O3,true
-ClC2=C(Cl)C(=O)C1=C(C=CC=C1)C2=O,true
-OC1=C3C=CC(=C4C=CC2=CC=CC(=C1)C2=C34)[N+]([O-])=O,true
-COC3=CC=C2C(=C1C=COC1=NC2=C3)OC,true
-C1CSCN1,true
-C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CN=CC=C4C=C5,true
-CC2=CC1=CC=CC=C1N=C2,true
-[O-][N+](=O)C1=C(C=CC=C1)Br,true
-CC(C)(C)OC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-C[N]1C=NC(=C1SC3=C2[NH]C=NC2=NC=N3)[N+]([O-])=O,true
-NC1=C2C=CC3=C(C=CC4=CC=C(C=C1)C2=C34)[N+]([O-])=O,true
-NC2=C1C=CC=CC1=CC=C2,true
-BrCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,true
-NC(=O)OC1CO1,true
-CCN(C=O)N=O,true
-C[N]1C(=NC2=C1C=CC3=NC=C(C)N=C23)NO,true
-OC1=C(C=C(C=C1)Cl)CC2=C(C=CC(=C2)Cl)O,true
-CCCCN(N=O)C(N)=O,true
-CC(C)(C)NC(=O)C=CC1=CC=C(O1)[N+]([O-])=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=C(C=CC=C2C3)[N+]([O-])=O,true
-COC(=O)NN=CC2=[N+](C1=CC=CC=C1[N+](=C2)[O-])[O-],true
-NC1=CC=C(C=C1)C2=CC=C(C=C2)N,true
-CCN(C)N=O,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=C(C=C2CC3)[N+]([O-])=O,true
-CCOC1=CC=C(C=C1)NO,true
-OC(CN=[N+]=[N-])CN=[N+]=[N-],true
-NC1=C(C=C(C=C1)F)F,true
-CC5=C1C=CC=CC1=C4C3=C2C=CC=CC2=C(C=C3[NH]C4=C5)C,true
-[O-][N+](=O)C3=CC=C2[NH]C1=CC=CC=C1C2=C3,true
-CC(O)CN(CC(O)CO)N=O,true
-CC1=C(C=C(C=C1)N)O,true
-[O-][N+](=O)C2=C3C=CC4=C(C1=CC=CC=C1C5=CC=C(C=C2)C3=C45)[N+]([O-])=O,true
-CN(C)N=NC1=CC=C(C=C1)Cl,true
-NC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,true
-CN(C)CCNC(=O)C2=C1OC3=C(OC1=CC=C2)C=CC=C3,true
-CC#CC(OC(=O)NC1CCCCC1)(C2=CC=CC=C2)C3=CC=CC=C3,true
-C[N]3C=CC4=CC=C2C=CC1=CC=C(O)C=C1C2=C34,true
-ClCC2=C1C=CC=CC1=C(C3=CC=CC=C23)Cl,true
-ON=C(O)C1=CC=CC=C1,true
-C[N]1C=CN=C1[N+]([O-])=O,true
-CC2=CC1=CC4=C(C=C1C=C2)C3=CC=CC=C3C=C4,true
-CC(=O)NC1=C2C=CC3=CC=CC4=CC=C(C(=C1)O)C2=C34,true
-C2=CC1=CC=CN=C1C=C2,true
-[O-][N+](=O)C1=CC=C(C=C1)S,true
-CC3=C2C=CC1=CC=CC=C1C2=C(C4=CC=CC=C34)C,true
-CCN1C=C(C(O)=O)C(=O)C2=C1C=C(C(=C2)F)N3CCNCC3,true
-ClCC4=C2C1=CC=CC=C1C3=CC=CC(=C23)C=C4,true
-[O-][N+](=O)C1=CN=C(S1)N2CCNC2=O,true
-CC3=C(C2=NC1=CC(=C(C=C1N=C2C=C3)C)N)N,true
-C[N]1C(=NC2=C1C=C(C)C3=NC=C(C)N=C23)N,true
-NC2=C1C=CC=C(C1=CC=C2)N,true
-C[N]1C(=NC2=C1C=C(C)C3=NC=C(N=C23)C4=CC=CC=C4)N,true
-C[N+]2=C1C=CC=CC1=CC3=CC=CC=C23,true
-OC(=O)CC1=CC(=C(C=C1)O)O,true
-C[N]1C(=NC2=CC(=CC=C12)C)N,true
-COP(=O)(OC)OC=C(Cl)Cl,true
-COC4=C2C1=CC=CC=C1CC3N(CCC(=C23)C=C4O)C,true
-OCC(Br)CBr,true
-[O-][N+](=O)C1=CC2=CC=C3C=C(C=C4CCC(=C1)C2=C34)[N+]([O-])=O,true
-O=C1C(=O)C3=C2C1=CC=CC2=CC=C3,true
-ClCC1=C2C=CC3=CC=CC4=CC=C(C=C1)C2=C34,true
-[O-][N+](=O)C1=CC=C(O1)C=O,true
-CC3=C2C1=CC=CC=C1[NH]C2=C(C(=N3)N)C,true
-O=C1C=CC4=C2C1=CC=C3C(C=CC(=C23)C=C4)=O,true
-CNC2=C(C1=NC(=CN=C1C=C2)C3=CC=CC=C3)C,true
-CC(=O)NC1=CC=C(C=C1)C2=CC=C(C=C2)N,true
-O2C3C=CC1=C(N=CC=C1)C23,true
-CCC(=C)C=O,true
-CC2=C(N=C1C=C(C=CC1=N2)N)C,true
-OS(=O)(=O)C1=C(C=CC(=C1)NC2=C(C=C(C=C2)[N+]([O-])=O)[N+]([O-])=O)NC3=CC=CC=C3,true
-CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)C=O,true
-CNC1=C(C=C(C=C1)N(CCO)CCO)[N+]([O-])=O,true
-O=C1C5=C4C3=C1C=C2C=CC=CC2=C3C=CC4=CC=C5,true
-COC(=O)C3=C2N=C1C=CC=CC1=C(C2=C(C=C3)[N+]([O-])=O)NCCCN(C)C,true
-ClC(Cl)C1=C(Cl)C(=O)OC1,true
-CC1=C(C=C(C(=C1C)N)[N+]([O-])=O)N,true
-CC5CC2C(CC3=C[N](C1CCCC1)C4=CC=CC2=C34)N(C)C5,true
-CC1=C(C=CC(=C1)[N+]([O-])=O)[N+]([O-])=O,true
-C[N]1C(=NC3=C1C=CC4=CC=C2C=CC(=CC2=C34)O)C,true
-[O-][N+](=O)C1=CC=C(C=C1)C(=O)OCC2CO2,true
-[O-][N+](=O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-CC1=C(C(=CC=C1)N)N,true
-[O-][N+](=O)C1=C2C=CC3=CC=CC4=CC=C(C(=C1)[N+]([O-])=O)C2=C34,true
-CNC1=CC=C(C=C1)NC3=C2C=CC=CC2=NC4=CC=CC=C34,true
-CC(=O)C1=CC=C[NH]1,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC5=C(C=C2C=C3)C4=CC=CC=C4C=C5,true
-[O-][N+](=O)C1=CC(=CS1)C(=O)NC2=CC(=CC=C2)F,true
-[O-][N+](=O)C1=CC3=C(C=C1)C2=CC=CC=C2O3,true
-BrCC(=O)C1=CC=C(C=C1)C2=CC=CC=C2,true
-O=C1NC(=O)C=C1,true
-CC(=O)NC1=CC=C(C=C1)N=NC2=C(C=CC(=C2)C)O,true
-CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)CO,true
-NC1=C(C=C(C=C1)C2=CC(=C(C=C2)N)[N+]([O-])=O)[N+]([O-])=O,true
-NC1=CC(=C(C=C1)CO)[N+]([O-])=O,true
-[O-][N+](=O)C4=C2C(=CC=C3C1=CC=CC=C1C(=C23)C=C4)[N+]([O-])=O,true
-[NH]1C(=NC(=C1C2=CC=CC=C2)C3=CC=CC=C3)C4=CC=CC=C4,true
-CC(=O)NN,true
-CC(O)CN,true
-CC4=C2C=C1C(C(C=CC1=CC2=C3C=CC=CC3=C4)O)O,true
-NC3=CC=C2N=C1C=CC=C[N]1C2=N3,true
-NC1=C(C=CC(=C1)[N+]([O-])=O)CO,true
-O=C1C(=O)C5=C3C2=C1C=CC=C2C=CC3=C4C=CC=CC4=C5,true
-NC1=CC=C(C=C1)OC2=CC(=CC=C2)OC3=CC=C(C=C3)N,true
-C1=CC2=CC4=CC=C5C=CC=C6C=C3C=CC(=C1)C2=C3C4=C56,true
-ClCC4=C3C1=CC=CC2=CC=CC(=C12)C3=CC=C4,true
-C[N]1C(=NC=C1[N+]([O-])=O)C,true
-CN(C)CCNC(=O)C3=C2N=C1C=CC=CC1=C(C2=CC=C3)N,true
-CC(=O)N(O)C1=CC=C(C=C1)[N+]([O-])=O,true
-C5CCC4=C3C=C2C1=CC=CC=C1C=CC2=NC3=CC=C4C5,true
-[O-][N+](=O)C2=CC1=CC=CN=C1C=C2,true
-C(CCC1CO1)CC2CO2,true
-O=C2CC(=O)C1=C(C=CC=C1)C2=O,true
-C[N]1C(=NC2=C1C=C(C)C3=NC(=CN=C23)C)N,true
-[O-][N+](=O)C2=C1C=CC=CC1=[N+](C=C2)[O-],true
-OC5C=CC4=C3C=C1C=CC=C2C=CC(=C12)C3=CC=C4C5O,true
-NC1=CC(=C(C=C1)[N+]([O-])=O)N,true
-OC1=CC=C(C=C1)C=NN4N=NC2=C([NH]C3=CC=CC=C23)C4=O,true
-CC(O)CN(C)N=O,true
-CC1=C(C(=CC=C1)C)C,true
-C1N2CN3CN1CN(C2)C3,true
-CC4=C2C1=CC=CC=C1[NH]C2=C3C(C=C(C(C3=N4)=O)N5CC5)=O,true
-CN(C)CCNC(=O)C3=C2C=C1C=CC=CC1=CC2=CC=C3,true
-CC2=C4C=C1C=CC=CC1=C5C=CC3=CC=CC(=C2)C3=C45,true
-[O-][N+](=O)C1=CC=C(C=C1)C(=O)C2OC2C3=CC=CC=C3,true
-[O-][N+](=O)C1=CC=C(O1)C2=CSC(=N2)NC=O,true
-OC3=C1C=CC=CC1=C2C=CC=CC2=C3,true
-BrC=CBr,true
-CCCC=CC(=O)OC1C(C)(C)CC2C1(O)C=C(C=O)C34CC23C(=O)OC4O,true
-[O-][N+](=O)C1=CC3=C(C=C1)OC2=C(C=C(C(=C2)Cl)Cl)O3,true
-NCCCNCCCCN(CCCN)N(O)N=O,true
-CC3=C2C1OC1C5=C(C2=C(C4=CC=CC=C34)C)C=CC=C5,true
-[O-][N+](=O)C1=CC=C(C=C1)C3=C([N]2C=CSC2=N3)[N+]([O-])=O,true
-CN(C)N=NC1=CC=C(C=C1)Br,true
-[O-][N+](=O)C3=CC=C2CC1=CC=CC=C1C2=C3,true
-NC(=NO)C1=CC=C(O1)[N+]([O-])=O,true
-C1=CC3=C(C=C1)C2=CC=CN=C2C=C3,true
-[O-][N+](=O)C1=C3C(=CC=C1)C2=CC=CC=C2[NH]3,true
-NC2=C1N=CC=CC1=CC=C2,true
-CC[N+]2=C(C1=CC(=CC=C1C3=CC=C(C=C23)N)N)C4=CC=CC=C4,true
-ON(N=O)C1=CC=CC=C1,true
-CC3=C(C=C2N=C1C=C(C(=CC1=CC2=C3)C)N)N,true
-NC1=CC(=C(C=C1)O)N,true
-NC2=C1C=CC=CC1=NC3=C2CCCC3,true
-CCN(CC)C1=CC=C(C=C1)C(C2=CC=C(C=C2)N(CC)CC)=C3C=CC(C=C3)=[N+](CC)CC,true
-CN(C)C1=CC=C(C=C1)C(=N)C2=CC=C(C=C2)N(C)C,true
-CC1=CC(=C(C=C1)N=NC3=C2C=CC(=CC2=CC(=C3O)S(O)(=O)=O)S(O)(=O)=O)C,true
-ClC=CC[N+]23CN1CN(CN(C1)C2)C3,true
-COC3=CC2=C(C1=CC=C(C=C1N=C2C=C3)Cl)NC(C)CCCN(CCCl)CCCl,true
-CC3=C(C=C2[N+](=C1C=C(C(=CC1=NC2=C3)C)N)C4=CC=CC=C4)N,true
-CN(C)CCCCl,true
-NC1=CC=C(C=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3,true
-CN(C)C3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N(C)C,true
-CC(COC1=CC=CC=C1)N(CCCl)CC2=CC=CC=C2,true
-CC1=C(C=CC(=C1)C(C2=CC=C(C=C2)N)=C3C=CC(=N)C=C3)N,true
-CN(C)C3=CC2=NC1=CC(=CC=C1C=C2C=C3)N(C)C,true
-CCN(CC)CCCC(C)NC2=C1C=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true
-ClCC1=NC=CC=C1,true
-ClCC1=CN=CC=C1,true
-CCN(CC)C1=CC3=C(C=C1)C(=C2C=CC(=CC2=[O+]3)N(CC)CC)C4=C(C=CC=C4)C(O)=O,true
-C[N+]2=C1C=C(C=CC1=CC3=CC=C(C=C23)N)N,true
-CN(C)C3=CC2=[S+]C1=CC(=C(C=C1N=C2C=C3)C)N,true
-NC(COC(=O)C=[N+]=[N-])C(O)=O,true
-NC1=NC=C(S1)[N+]([O-])=O,true
-CC(C)CCCC(C)C4CCC5C3CC1OC12CC(O)CCC2(C)C3CCC45C,true
-CCCCN(N=O)C(=N)N[N+]([O-])=O,true
-NC(CC1=CC=C(C=C1)N(CCCl)CCCl)C(O)=O,true
-COC2=CC=C1N=C(N)SC1=C2,true
-CN(N=O)C(=O)NC(C=O)C(O)C(O)C(O)CO,true
-CC2=CN(C1CC(N=[N+]=[N-])C(CO)O1)C(=O)NC2=O,true
-NC1=NC(=O)N(C=N1)C2OC(CO)C(O)C2O,true
-BrC2=C1C=C4C(=CC1=CC=C2)C3=CC=CC=C3C=C4,true
-OC2=C1C=CC(=CC1=C(N=N2)O)[N+]([O-])=O,true
-CCN(N=O)C(=N)N[N+]([O-])=O,true
-CN(C)N=NC1=C([NH]C=N1)C(N)=O,true
-OC1=NC(=NN=C1)O,true
-OC(CBr)C(O)C(O)C(O)CBr,true
-COC24C1NC1CN2C3=C(C(=C(C(=C3O)C)N)O)C4=COC(N)=O,true
-SC2=C1N=C[NH]C1=NC=N2,true
-OCC1OC(C(O)C1O)[N]2C=NC3=C(S)N=CN=C23,true
-NC(CC1=CC(=C(C=C1)O)O)C(O)=O,true
-NC(=NO)C1=CC=CC=C1,true
-CC(=O)NC(CS)C(O)=O,true
-CC1=C(C=CC(=C1)N)C2=CC=C(C=C2)O,true
-NC2=NC1=CC=C(C=C1S2)[N+]([O-])=O,true
-OCC1OC(CC1O)N2C=C(C(=O)NC2=O)C(F)(F)F,true
-CN(N=O)C(=N)N[N+]([O-])=O,true
-NC2=C1N=C[NH]C1=NC=[N+]2[O-],true
-NC2=C1N=C[N](C1=NC=N2)C3OC(CO)CC3O,true
-NC1=NC=CS1,true
-[O-][N+](=O)C1=CC=C(C=C1)CBr,true
-C=CC#N,true
-CCOP(=O)(OCC)OC1=CC=C(C=C1)[N+]([O-])=O,true
-ClCC(Br)CBr,true
-ClCCCl,true
-CC2=C1C(O)C(C)(C)C=C1C(=O)C(C)(O)C23CC3,true
-CC2=C1C(O)C(C)(CO)C=C1C(=O)C(C)(O)C23CC3,true
-CCCN(C(N)=NN=O)[N+]([O-])=O,true
-CCCCCN(N=O)C(=N)N[N+]([O-])=O,true
-CC(C)(O)C3CC2=C(C=C1OC(C=CC1=C2)=O)O3,true
-CN1C(SC2=C1C=CC=C2)=NN,true
-NC(CO)C(=O)NNCC1=C(C(=C(C=C1)O)O)O,true
-N1C(C1C2=CC=CC=C2)C3=CC=CC=C3,true
-CC(C)CC(=O)OCC1=COC(OC(=O)CC(C)C)C2C1CC(OC(C)=O)C23CO3,true
-C[N]1C(=CN=C1C2=NN=C(S2)N)[N+]([O-])=O,true
-C1=CC=C3C(=C1)C=C4C=CC=C5C2=C(C=CC=C2)C3=C45,true
-NC2=C1N=C([NH]C1=NC=N2)C3=CC=C(C=C3)[N+]([O-])=O,true
-COC4=C3C(=C2C(=C1C(CC(CC1=C(C2=C(C3=CC=C4)O)O)(O)C(C)=O)=O)O)O,true
-COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4C=COC4O5)OC,true
-NC(CSC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O)C(O)=O,true
-ClCCN(CCCl)P1(=O)OCC(=O)CO1,true
-C[N+]2=C1C=CC=CC1=NC3=CC=CC=C23,true
-CS(=O)(=O)OCC(O)C(O)COS(C)(=O)=O,true
-CC(C)(N=NC(C)(C)C(N)=N)C(N)=N,true
-C[N+]([O-])(CCCl)CCCl,true
-N=NC1=NNC=C2C=CC=CC12,true
-[O-][N+](=O)C1=CC=C(S1)NC(=O)NCCCl,true
-OCC1OC(C(O)C1O)[N]2C=NC3=C(NO)N=CN=C23,true
-CCOC(=O)NNC2=C1C=CC=CC1=CN=N2,true
-CCN(CCCl)CCCNC2=C1N=C(C=CC1=NC3=CC(=CC=C23)Cl)OC,true
-CCN(CCCl)CCCNC1=C4C(=NC2=CC=CC=C12)C3=NC=CC=C3C=C4,true
-CC=C1CC(=C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,true
-NCC(=O)NC1=CC=CC=C1,true
-CC(C)CN(N=O)C(N)=N[N+]([O-])=O,true
-CN1CC(=CC2C1CC3=C[NH]C4=CC=CC2=C34)C,true
-CC4CC1C(CC2=C[NH]C3=CC=CC1=C23)N(C)C4,true
-NC3=CC2=[S+]C1=CC(=CC=C1N=C2C=C3)N,true
-CC[N]2C1=CC=CC=C1C3=CC(=CC=C23)N,true
-CC2=CC=C1N=C(N)[NH]C1=C2,true
-CCN(CC)C1=CC=C(C=C1)C(C2=CC=CC=C2)=C3C=CC(C=C3)=[N+](CC)CC,true
-NC1=CC3=C(C=C1)C2=NC4=C(C(N2C3)=O)C=CC=C4,true
-C1OC1CC3=C2C=CC=CC2=CC=C3,true
-NC(CCC(=O)NC(CS)C(=O)NCC(O)=O)C(O)=O,true
-O=C(C1OC1C2=CC=CC=C2)C3=CC=CC=C3,true
-COC2=C(C1=NC3=C(C(=C1C=C2)OC)CCO3)OC,true
-NN=C1N=NC=C2C=CC=CC12,true
-NC(=O)CC1CO1,true
-CCC(C)ON=O,true
-CC3(C[N]1C=CN=N1)C(N2C(CC2=O)S3(=O)=O)C(O)=O,false
-CN(C)CCOC(=O)C=C,false
-ClC1=C(C=C(C(=C1)Cl)Cl)Cl,false
-CCOC(=O)COC1=CC2=C(C=C1)C(=O)C=C(O2)C3=CC=CC=C3,false
-CCCCCCCCCCCCC1=CC=CC=C1,false
-CCOC(=O)CC(C)C,false
-CCCCCOC(=O)C(C)=C,false
-CC1CCCC2(C)CCCCC12O,false
-CC(=C)C(=O)OCCOC(=O)C(C)=C,false
-ClC1=C(C=CC=C1)C=O,false
-OC1=C(C(=C(C=C1Cl)Cl)Cl)[N+]([O-])=O,false
-CCOC1=CC2=C(C=C1)NC(C)(C)C=C2C,false
-CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(=O)OCC(CC)CCCC,false
-CCCCC(CC)COC(=O)COC1=C(C=C(C=C1)Cl)Cl,false
-CCN(CC)CC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,false
-CC(C)(C)COC(=O)C=C,false
-FC(Cl)C(F)(F)C(F)(F)Cl,false
-NC2=NC1=NC(=C(N=C1C(=N2)N)C3=CC=CC=C3)N,false
-COC(=O)C1=CC=C(C=C1)C(=O)OC,false
-ClC2=CC1=CC=CC=C1N=C2,false
-CC(=C)C(=O)OCCCCCOC(=O)C(C)=C,false
-CC(CC1=CC(=C(C=C1)O)O)C(C)CC2=CC(=C(C=C2)O)O,false
-OC1=C(C=C(C=C1)Cl)SC2=C(C=CC(=C2)Cl)O,false
-CC(=O)CC(=O)NC1=C(C=CC=C1)C,false
-C1CCOC1,false
-CCOCCC1=C(N=C([N]2N=CN=C12)N)C3=CC=CC=C3,false
-NCCS,false
-CC(C)(C)NC(=O)C3CCC4C2CC=C1C=C(CCC1(C)C2CCC34C)C(O)=O,false
-OC1=CC=C(C=C1)C2=CC=C(C=C2)O,false
-CC1=CC=C(C=C1)Br,false
-ClC3=C2C=C1C=CC=CC1=CC2=CC=C3,false
-COC2=C1OC=CC1=C(OC)C3=C2OC(C=C3)=O,false
-C2C1=C(C=CC=C1)C3=C2C=CC=C3,false
-CC2CCCC(=O)CCCC=CC1=C(C(=CC(=C1)O)O)C(=O)O2,false
-NC(CCC(O)=O)C(O)=O,false
-CC(O)C[N+](C)(C)NC(=O)C(C)=C,false
-CCOC(=O)OCC,false
-ClCC2=C3C=CC4=C1C=CC=CC1=CC5=CC=C(C=C2)C3=C45,false
-C3CCC2OCCOCCOC1CCCCC1OCCOCCOC2C3,false
-ON1C(=O)CCC1=O,false
-CCN(CC)CCCN,false
-CC(C)CCOC(C)=O,false
-CC1=C(C(=CC(=C1)C2=CC(=C(C(=C2)C)N)C)C)N,false
-CCCCCCC(O)=O,false
-CC(C)C1C(C)C(C)(C)C2=C1C=C(C(=C2)C)C(C)=O,false
-OC(=O)CC(O)(CC(O)=O)C(O)=O,false
-ICI,false
-COC1=CC(=CC=C1)C(=O)CBr,false
-CCN(CC)CCO,false
-CC3CC1=C(C(=C(C=C1)C(=O)NC(CC2=CC=CC=C2)C(O)=O)O)C(=O)O3,false
-CCCCC1CO1,false
-CCOCOCC,false
-CC(=C)C(=O)OCCO,false
-COC1=CC=C(C=C1)C3=COC2=C(C(=CC(=C2)O)O)C3=O,false
-OCC(O)C1=C(C(=C(O1)O)O)O,false
-COC(=O)C1=CC=C(C=C1)C,false
-ClC1=CC(=CC(=C1)Cl)Cl,false
-NC(N)=O,false
-CCCCCl,false
-[O-][N+](=O)C1=CC=CC=C1,false
-C[N]1C=NC2=C1C(NC(N2C)=O)=O,false
-CC1=CC=NC=C1,false
-OC(=O)CCC1=C[NH]C2=CC=CC=C12,false
-CC(C)(C)NCC(O)COC2=C1CC(C(CC1=CC=C2)O)O,false
-NC(CC(=O)C1=C(C(=CC=C1)O)N)C(O)=O,false
-CC(N)CCN,false
-CC(S)C(=O)NCC(O)=O,false
-N#CCCCCC#N,false
-CCCCC(CC)COC(=O)C=CC1=CC=C(C=C1)OC,false
-CC1(C)CC(CC(C)(CN=C=O)C1)N=C=O,false
-CC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,false
-CCOP(=S)(OCC)OC2=NC1=CC=CC=C1N=C2,false
-CCCCC(CC)COP(=O)(OCC(CC)CCCC)OCC(CC)CCCC,false
-CNS(=O)(=O)C1=CC=C(C=C1)NC(C)=O,false
-OC1=CC(=C(C(=C1)Cl)Cl)Cl,false
-CCOC1=CC=C(C=C1)N=[N+]([O-])C2=CC=C(C=C2)OCC,false
-C1=CC=C(C=C1)C2=CC=C(C=C2)C3=CC=CC=C3,false
-CCCCCCCCN1SC=CC1=O,false
-OC(=O)C1=C(C=CC(=C1)Cl)O,false
-NC1=NC(=NC(=N1)N)Cl,false
-CC1=C(C=C(C(=C1)O)C(C)(C)C)SC2=C(C=C(C(=C2)C(C)(C)C)O)C,false
-NC2C1=C(C=CC=C1)C3=C2C=CC=C3,false
-COC(N)=O,false
-FC2=CN(C1CCCO1)C(=O)NC2=O,false
-CC3(C)SC2C(NC(=O)COC1=CC=CC=C1)C(=O)N2C3C(O)=O,false
-COC1=CC=C(C=C1)C=C,false
-CC(=O)C2=CC1=CC=CC=C1C=C2,false
-NC1=NCNC2=C1N=C[N]2C3OC(CO)C(O)C3=O,false
-OC1=CC2=C(C=C1)C4=C(C(O2)=O)C3=CC=C(C=C3O4)O,false
-CCCCCCCC(=O)CCC1=CC(=C(C=C1)O)OC,false
-CC1CC(CC(C)(C)C1)OC(=O)C2=C(C=CC=C2)O,false
-OC(=O)CCCCCCCCC(O)=O,false
-COP(=O)(SC)SC,false
-OC(CC(O)=O)C(O)=O,false
-CC(=C)C(=O)OCC(C)(C)C,false
-CC(C)NCC(O)COC1=C(C=CC=C1)CC=C,false
-C1COCCOCCOCCOCCOCCOCCO1,false
-C=CC1=CC=NC=C1,false
-CC(NC(=O)CC1=C(N=C(N=C1)C)N)=C(CCOC(=O)C2=CC=CC=C2)SC(=O)C3=CC=CC=C3,false
-COC(=O)COC1=C(C=C(C=C1)Cl)Cl,false
-CC(Cl)=O,false
-CCOC1=CC(=CC=C1)[N+]([O-])=O,false
-CC1=NC=C[NH]1,false
-CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,false
-CCOC(=O)CNC(=O)CBr,false
-OC(=O)C=CC(O)=O,false
-CN2C(CSCC(F)(F)F)NC1=C(C=C(C(=C1)Cl)S(N)(=O)=O)S2(=O)=O,false
-NC1CCC(CC1)CC2CCC(N)CC2,false
-CCCCC#N,false
-CN(C)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C,false
-CC2(N(O)C1=C(C=CC=C1)C2=O)C3=CC=CC=C3,false
-CC1=NC=C(N=C1)C,false
-CC(C)CCCCCOC(=O)C=C,false
-NC1=C(C=CC=C1)C(O)=O,false
-OC1=CC=CC=C1,false
-NC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,false
-CCCCCCCCCCCCS,false
-CC(C)N=C=NC(C)C,false
-COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=C2,false
-CN(C(=O)CN(CCO)CC(=O)N(C)C(C)(C)CC1=CC=CC=C1)C(C)(C)CC2=CC=CC=C2,false
-CCOP(=S)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false
-CC(C)CC(C)=O,false
-OCC=CC1=CC=CC=C1,false
-NC1=CC(=CC(=C1)Cl)Cl,false
-CN1CCC(CC1)=C3C2=C(C=CC=C2)C=CC4=C3C=CC=C4,false
-COC1=CC=C(C=C1)O,false
-CCC(=C)C(=O)C1=C(C(=C(C=C1)OCC(O)=O)Cl)Cl,false
-CS(C)(=O)=O,false
-CC(C)(N=NC(C)(C)C#N)C#N,false
-CCC(O)=O,false
-CC(C)CN(CC(C)C)CC(C)C,false
-OC1=CC2=C(C(=C1)O)C(C(C(O2)C3=CC=CC=C3)=O)=O,false
-OCC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,false
-CCCCCC=CCC=CCCCCCCCC(O)=O,false
-CC1=C(C2=C(C=C1[N+]([O-])=O)C(CC2(C)C)(C)C)[N+]([O-])=O,false
-CCCCCCCCCCC1CO1,false
-O=P(OC1=CC=CC=C1)(OC2=CC=CC=C2)OC3=CC=CC=C3,false
-OC1=C(C(=C(C=C1Cl)Cl)Cl)Cl,false
-OCC(=O)N(O)C1=CC=C(C=C1)Cl,false
-CNP1(=NP(=NP(=N1)(NC)NC)(NC)NC)NC,false
-CC(C)(C#N)C(C)(C)C#N,false
-CS(=N)(=O)CCC(N)C(O)=O,false
-CCN(CC)C1=CC2=C(C=C1)C=C(C(=O)O2)C4=NC3=CC=CC=C3[N]4C,false
-NC(CC1=C[NH]C2=CC=C(O)C=C12)C(O)=O,false
-NC1=C(C=CC=C1)C(=O)OCCC2=CC=CC=C2,false
-OC(=O)C=CC1=C(C=CC=C1)[N+]([O-])=O,false
-CC1=CC3=C(C=C1)C2=CC=C(C=C2C3)C,false
-NC(=O)CCCCC(N)=O,false
-NC(=O)C1=C(C=CC=C1)O,false
-NC(CSC=CCl)C(O)=O,false
-O3C4C1OC1C2=C(C=CC=N2)C34,false
-C[N]2C(=NC3=NC1=NC=CC=C1C=C23)N,false
-CC1=C(C=CC=C1)C=O,false
-CCCCCN(CCCCC)CCCCC,false
-CC(=O)OC2=C1N=CC=CC1=CC=C2,false
-OC(=O)C2=C(C=C1C=CC=CC1=C2)O,false
-CCCCC(CC)CNCC(CC)CCCC,false
-CC(C)NC1=NC(=NC(=N1)N)Cl,false
-[NH]1C=CN=C1,false
-OC(=O)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false
-OCCS,false
-O=S1(=O)CCCC1,false
-CC(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3=CC=C(C=C3)Cl,false
-CCC(C)N,false
-CCCCNC(=O)[N]1C(=NC2=CC=CC=C12)NC(=O)OC,false
-O(C1=CC=CC=C1)C2=CC=CC=C2,false
-CC(C)(C)NCC(O)C1=CC(=C(C=C1)O)NC(N)=O,false
-CN2C(=O)CC(=O)N(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false
-CN(CCO)CCO,false
-CC1=C(C(=CC=C1)O)N,false
-CCC(CO)=[N+](O)[O-],false
-OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,false
-CC(C)OC(=O)CC(O)(CC(O)=O)C(O)=O,false
-CC(C)(C)OC(=O)OC(=O)OC(C)(C)C,false
-ClN1C(=O)N(Cl)C(=O)N(Cl)C1=O,false
-OC1=CC(=CC=C1)NC2=CC=CC=C2,false
-CC1=C(C=CC=C1N=[N+]([O-])C2=C(C(=CC=C2)[N+]([O-])=O)C)[N+]([O-])=O,false
-NC=O,false
-OC1=C(C=C(C=C1)Cl)CC2=CC=CC=C2,false
-CN(N)C=O,false
-CC2=CC=C1N=N[NH]C1=C2,false
-CCCCCCCC(O)=O,false
-CC1=CC=C(C=C1)N(O)C(C)=O,false
-COC1=C(C=C(C(=C1)N)C)N,false
-COC(=O)C1=CC=C(C=C1)O,false
-OC(=O)CC(=CC(O)=O)C(O)=O,false
-NC(=O)C1=NC=CN=C1,false
-CCN(CC1=CC=CC=C1)C2=CC=CC=C2,false
-CNC(=O)ON=CC(C)(C)SC,false
-O=CC2=C1C=CC=CC1=CC3=CC=CC=C23,false
-C1COCO1,false
-OC(=O)C(Br)=C,false
-C=CC1=C(C=CC=C1)C=C,false
-OS(=O)(=O)C1=CC=CC=C1,false
-CCCCCN(CCCOC)C(=O)C(CCC(O)=O)NC(=O)C1=CC(=C(C=C1)Cl)Cl,false
-C=CC(=O)OCCCCOC(=O)C=C,false
-C(OCC1=CC=CC=C1)C2=CC=CC=C2,false
-BrC1=C(C2=C(C(=C1Br)Br)C(=O)OC2=O)Br,false
-CC(C)N2C(=O)C1=C(C=CC=C1)NS2(=O)=O,false
-CCOP(=S)(OCC)SCN1C(=O)OC2=C1C=CC(=C2)Cl,false
-C=CCN(CC=C)CC=C,false
-CCNC1=CC=CC=C1,false
-NC1=C(C=CC=C1O)[N+]([O-])=O,false
-CC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,false
-CC(C)(OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl)C(O)=O,false
-CCOC(=O)C4=CC1=C(C3=C2C(=C1)CCCN2CCC3)OC4=O,false
-COC(=O)C(=CC1=C(C=CC=C1)Br)C#N,false
-CCCCC1C(=O)N(N(C1=O)C2=CC=CC=C2)C3=CC=CC=C3,false
-CC(C)(C)OOC(C)(C)C,false
-CC1=C(C=CC=C1)C(N)=O,false
-CC(C)(OOC(C)(C)C1=CC=CC=C1)C2=CC=CC=C2,false
-CCCCOC(=O)CCC,false
-CCCCOCCCC,false
-CCC(C)=[N+](O)[O-],false
-NC(=O)C1CCCN1C(=O)C(CC2=C[NH]C=N2)NC(=O)C3CCC(=O)N3,false
-CCCC=C(CC)C=O,false
-CC1=CC=C(C=C1)C#N,false
-C2=CC1=CN=NC=C1C=C2,false
-ClC1=C(C(=CC=C1)Cl)C=O,false
-COC1=C(C=CC(=C1)C(C)=O)O,false
-CC(C)COC(=O)C(C)=C,false
-CC(C)(C)C1=C(C=CC(=C1)O)O,false
-NC1CCCC(N)C1,false
-CCCCOC(=O)C1=CC=C(C=C1)N,false
-CC1CCC(CC1)C(C)C,false
-NCCCN,false
-CC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,false
-OC1=CC=C(C=C1)NC3=CC2=CC=CC=C2C=C3,false
-CCCCC(CC)C(O)=O,false
-ClCC(Cl)C=C,false
-CC(C)CCOC(=O)CC(C)C,false
-NCC(O)=O,false
-OCC1=CC=C(C=C1)F,false
-CCCCOCCOCCSC#N,false
-O=C2N(SC1CCCCC1)C(=O)C3=C2C=CC=C3,false
-CC3=NN=C4CN=C(C1=C(C=CC=C1)Cl)C2=CC(=CC=C2[N]34)Cl,false
-OC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false
-ON(C=O)C1=CC=CC=C1,false
-[O-][N+](=O)C1=CC(=CC=C1)Cl,false
-[O-][N+](=O)C1=CC2=C(C=C1)NC(=O)CN=C2C3=CC=CC=C3,false
-OC(C(O)C(O)=O)C(O)=O,false
-CS(=O)(=O)C=C,false
-CC(C)CC(C)O,false
-O=CC=CC1=CC=CC=C1,false
-CC(C)CNCC(C)C,false
-BrC1=C(C=CC=C1)C2=CC=CC=C2,false
-NC1=CC=C(C=C1)S(=O)(=O)NC3=NC2=CC=CC(=C2N=C3)Cl,false
-CN2C(=O)N(C)C1=C(N=C[NH]1)C2=O,false
-COC=O,false
-OC(=O)C(O)=O,false
-ClC(Cl)(Cl)C(Cl)(Cl)Cl,false
-CSCCC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false
-CCCCCCCCCCCCCCCCCCO,false
-OC(=O)CN(CC(O)=O)CC(O)=O,false
-CCCN(CCC)C(=O)SCC,false
-CC1=C(C=C(C=C1)NCCO)O,false
-CC=O,false
-CC1(C)C=C(C(O)=O)C(C)(C)N1O,false
-OC(O)=O,false
-CCCCCCC1CO1,false
-CCCCCC(=O)CC2=C1C(OC3=C(OC1=CC(=C2)O)C(=C(C(O)=O)C(=C3)O)CCCCC)=O,false
-COC1=C(C=C(C=C1)CC=C)OC,false
-CC1=CC(=CC=C1)OP(=O)(OC2=CC=CC=C2)OC3=CC=CC=C3,false
-[O-][N+](=O)C1=CC=C(C=C1)OC2=C(C=C(C=C2Cl)Cl)Cl,false
-O=C3OC2=C1C=COC1=CC=C2C=C3,false
-COC1=C(C(=CC(=C1)C(C)=O)OC)O,false
-COC1(CCCC1)OC5CCC6C4CCC3CC2SC2CC3(C)C4CCC56C,false
-OCC(O)COP(O)(O)=O,false
-CCCCCCNCCCCCC,false
-CSCCC=O,false
-OCCOCCO,false
-CN(C)C1=CC=C(C=C1)C(=C2C=CC(=N)C=C2)C3=CC=C(C=C3)N(C)C,false
-O=C1NC(=O)C2CC=CCC12,false
-CN1CCCC1=O,false
-C=CC1=NC=CC=C1,false
-CCCCC(CC)COP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,false
-OC1=CC3=C(C=C1)C(=O)C2=C(C=CC(=C2)O)C3=O,false
-C3CCC2OCCOCCOCCOC1CCCCC1OCCOCCOCCOC2C3,false
-CCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,false
-NCC(=O)NCC(=O)NCC(=O)NCC(O)=O,false
-OC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,false
-CCOP(=O)(CC)OCC,false
-CC(C)=CCC2C(=O)C(=O)C1=C(C=CC=C1)C2=O,false
-BrCC1=CC=C(C=C1)Br,false
-CC1=CC(=O)C=C(C)C1=O,false
-CC5CC2C(CC3=C[N](CC1CC1)C4=CC(=CC2=C34)Br)N(C)C5,false
-CC(=C)C(=O)OCCOCCOCCOC(=O)C(C)=C,false
-OC[P+](CO)(CO)CO,false
-OC2=CC1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O,false
-CC(=O)OC3(CCC4C2C=C(Cl)C1=CC(=O)OCC1(C)C2CCC34C)C(C)=O,false
-C1=CC=C4C(=C1)N=C3C2=C(C=CC=C2)C6=C3C4=C5C=CC=CC5=N6,false
-CC1=CC=C(C=C1)N=NC3=C2C=CC=CC2=CC=C3O,false
-COC1=CC(=C(C(=C1)OC)Cl)N2C(=CC(=O)C(=C2C3=CC=C(C=C3)F)C)C4=CC=CC=C4,false
-COC1=CC=C(C=C1)C(Cl)=C(C2=CC=C(C=C2)OC)C3=CC=C(C=C3)OC,false
-ClCC1=C(C=CC=C1)CCl,false
-CCC(=C(CC)C1=CC=C(C=C1)OP(O)(O)=O)C2=CC=C(C=C2)OP(O)(O)=O,false
-CC1=NOC(=C1C)NS(=O)(=O)C2=CC=C(C=C2)N,false
-CCCCCCCCCCCCCCCCC1CO1,false
-COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OC)C,false
-OC1=CC=C(C=C1)CC=C,false
-ClC1=CC(=CC=C1)Cl,false
-CC1=C(C=C(C=C1)[N+]([O-])=O)NO,false
-CC3(O)CCC4C2CCC1CC(=O)C(CC1(C)C2CCC34C)C=O,false
-CC1=C(C(=CC=C1)C)NC2=NC(=NC(=C2)Cl)SCC(=O)NCCO,false
-CCOC(=O)C1=C(C=CC=C1)N,false
-CCCC(O)=O,false
-NC3=NC(=C2N=C(O)[N](C1CC(O)C(CO)O1)C2=N3)O,false
-ClC1=CC(=C(N=C1)OC2=CC=C(C=C2)OC3=C(C=C(C=N3)Cl)Cl)Cl,false
-COC1=C(C=CC(=C1)CCC(C)=O)O,false
-NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)N,false
-NC(=O)C1=CC=C(C=C1)N,false
-CC=[N+](O)[O-],false
-OC(=O)CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,false
-CCCC(C)(COC(N)=O)COC(=O)NC(C)C,false
-COC2=CC1=CC=C(C=C1C=C2)CCC(C)=O,false
-OC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl,false
-OCCN(CCO)CCO,false
-OC(C1CC1)(C2=CC=C(C=C2)Cl)C3=CC=C(C=C3)Cl,false
-CC(=O)N(O)C1=CC=C(C=C1)Cl,false
-ClC1=C(C(=CC=C1)Cl)Cl,false
-CC(C)[N+](C)(CCOC(=O)C2C1=C(C=CC=C1)OC3=C2C=CC=C3)C(C)C,false
-ClC1=CC=C(C=C1)Cl,false
-COC1=C(C=CC(=C1)C=CC(O)=O)O,false
-CCCCCCC1=CC=C(C=C1)C2=CC=C(C=C2)C#N,false
-CCN1C=C(C(O)=O)C(=O)C2=C1C(=C(C(=C2)F)C3=CC=NC=C3)F,false
-CC1=CC=CO1,false
-OCC1OC(CC1O)N2C=C(CCCl)C(=O)NC2=O,false
-NC1=NC(=CC(=N1)Cl)Cl,false
-OC1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,false
-C2=NC=C1C=NN=CC1=C2,false
-FC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false
-NC(=O)C1=C(C=CC=C1)C(N)=O,false
-CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)N,false
-COC3=C1C(N(C(C2=CC=CC(=C12)C=C3)=O)C)=O,false
-CCCCOC(=O)C=C,false
-O=C1OCC=C1,false
-[O-][N+](=NC1=CC3=C(C=C1)C2=CC=CC=C2C3)C4=CC6=C(C=C4)C5=CC=CC=C5C6,false
-CC(CS)C1CCC(C)C(S)C1,false
-CC(=O)C1C(=O)OC(=CC1=O)C,false
-NC(=O)NN=CC(O)=O,false
-CCCCCCNC(=O)N1C=C(F)C(=O)NC1=O,false
-N#CCC#N,false
-CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CCC34C,false
-[O-][N+](=O)C1=C(C=CC=C1)C(F)(F)F,false
-COC1=C(C(=C(C(=C1Cl)Cl)[N+]([O-])=O)Cl)Cl,false
-CCCCN(N)CCCC,false
-CCOC(=O)OC(C1CC2CCN1CC2C=C)C4=C3C=C(C=CC3=NC=C4)OC,false
-BrC1=CC=C(C=C1)C2=CC=CC=C2,false
-ClCC(CCl)(CCl)CCl,false
-ClC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,false
-FC(F)(F)C(F)(F)C(Cl)Cl,false
-CN(C)CCN(CC1=CSC=C1)C2=NC=CC=C2,false
-CC1=C(C=C(C=C1)[N+]([O-])=O)N=[N+]([O-])C2=C(C=CC(=C2)[N+]([O-])=O)C,false
-O=C(C=CC=CC1=CC2=C(C=C1)OCO2)N3CCCCC3,false
-CC(O)CNCC(C)O,false
-CCN(CC)C1=CC(=C(C=C1)N=O)O,false
-COC1=CC=C(C=C1)OC,false
-NC1=CC(=C(C(=C1)C(O)=O)O)S(O)(=O)=O,false
-NC1=C(C=CC(=C1)S(O)(=O)=O)O,false
-CCOP(O)(OC1=CC(=C(C=C1)SC)C)=NC(C)C,false
-FC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false
-CC(Br)C1=CC=CC=C1,false
-OCCN1CCNCC1,false
-COC1=CC=C(C=C1)C2=NOC(=C2C3=CC=C(C=C3)OC)CC(O)=O,false
-OC1=C(C=C(C=C1Cl)Cl)NC(=O)C2=C(C(=CC(=C2O)Cl)Cl)Cl,false
-[O-][N+](=O)C1=C(C=CC=C1)C=CC(=O)C2=CC=CC=C2,false
-OC(=O)C1=CC=CC=C1,false
-S=C(NC1CCCCC1)NC2CCCCC2,false
-OC1=C(C=C(C=C1Br)C#N)Br,false
-CC1(C)CC(C(O)=O)C(C)(C)N1O,false
-OC1=C(C(=CC(=C1)Cl)Cl)Cl,false
-CC13CCC(=O)CC1=C2CC2C4C3CCC6(C)C4C5CC5C67CCC(=O)O7,false
-CN2C(=O)CN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false
-CC5=CC4=C3C=CC2=C1C=CC=C(C1=CC=C2C3=CC=C4C=C5)C,false
-CCCCCOC(=O)C=C,false
-CCCCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,false
-CNC(O)=NO,false
-CC1=CC(=CC(=C1)C)C,false
-CNCC(O)C1=CC(=C(C=C1)O)O,false
-O2C1=CC=CC=C1N=C2C3=CC=CC=C3,false
-CCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC,false
-O=C1CN(CC2N1CCC3=C2C=CC=C3)C(=O)C4CCCCC4,false
-OCC1=CC=CC=C1,false
-CCN(CC)CC,false
-BrC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false
-NC1=CC3=C(C=C1)C(=C2C=CC(C=C2O3)=N)C4=C(C=CC=C4)C(O)=O,false
-BrCC1=CC(=CC=C1)CBr,false
-OC1=C(C(=CC=C1)Cl)Cl,false
-CNCCO,false
-O=C(OC1CCCCC1)C2=C(C=CC=C2)C(=O)OC3CCCCC3,false
-CN(C)C(=O)C1=N[N](C(=N1)CNC(=O)CN)C2=C(C=C(C=C2)Cl)C(=O)C3=C(C=CC=C3)Cl,false
-CC(=C)C(=O)OCCCCCCOC(=O)C(C)=C,false
-CC(CCO)CCC=C(C)C,false
-CCSC(Cl)=O,false
-NC1=C(C(=CC(=C1)Cl)Cl)O,false
-ClN1C(=O)NC(=O)N(Cl)C1=O,false
-C[N+](C)(C)NCCC(O)=O,false
-ClC1=CC=C(C=C1)C(C2=CC=C(C=C2)Cl)C(Cl)(Cl)Cl,false
-OC(=O)C2=NC1=CC=CC=C1C(=C2)O,false
-ClC2=C(Cl)C3(Cl)C1COS(=O)OCC1C2(Cl)C3(Cl)Cl,false
-OC2=CC1=NC=CC=C1C=C2,false
-CC(=O)C1=C(C=CC=C1)[N+]([O-])=O,false
-CCNS(=O)(=O)C1=CC=C(C=C1)C,false
-CC(Cl)(Cl)C(O)=O,false
-C1=CC=C(C=C1)C2=CC(=CC=C2)C3=CC=CC=C3,false
-COC1=C(C(=CC=C1Cl)Cl)C(O)=O,false
-CCOC(=O)C(C)=C,false
-NCCC1=C[NH]C=N1,false
-CC(COC(=O)C1=CC=CC=C1)(COC(=O)C2=CC=CC=C2)COC(=O)C3=CC=CC=C3,false
-OC(=O)C1=CC=C(C=C1)C(O)=O,false
-O=CC1=CC(=CC=C1)C2=CC=CC=C2,false
-NCCCCCCN,false
-CNCC(O)=O,false
-OC1=CC(=CC(=C1)O)O,false
-CC(=O)C1=CC3=C(C=C1)OC2(CC2)C3=O,false
-CC(=C)C(=O)OCC(C)(C)COC(=O)C(C)=C,false
-OC1=C(C(=C(C=C1[N+]([O-])=O)[N+]([O-])=O)O)[N+]([O-])=O,false
-CCC(C)C=O,false
-NC1=C(C=CC(=C1)C(F)(F)F)Cl,false
-CN(C)C,false
-CC(C)NC1=CC=CC=C1,false
-OC(=O)C1=CC=C(C=C1)N=NC2=CC(=C(C=C2)O)C(O)=O,false
-OC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)O,false
-CN(C)C1=CC=CC=C1,false
-ClC1=CC=NC=C1,false
-FC(Cl)(Cl)Cl,false
-CC1(C)SSCC(NC1=O)C(O)=O,false
-C2=CC1=CC5=C(C=C1C=C2)C4=CC=C3C=CC=CC3=C4C=C5,false
-CC1=CC=C(C=C1)C3=NC2=CC=CC=C2O3,false
-CCCCCCCOC1=C(C=CC=C1)NC(=O)OC(C)CN(CC)CC,false
-CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CCC34C,false
-CCOP(=S)(OCC)OC1=CC2=C(C=C1)C(=C(Cl)C(=O)O2)C,false
-FC1=C(C(=C(C(=C1F)Cl)F)Cl)F,false
-COC1=CC=C(C=C1)CCl,false
-NC1=C(C(=CC=C1)[N+]([O-])=O)O,false
-O=C3CCC(N2C(=O)C1=C(C=CC=C1)C2=O)C(=O)N3,false
-NC(=N)C1=CC=CC=C1,false
-CC(=C)C1CC=C(C)C(=O)C1,false
-CN(C)C1=CC=C(C=C1)N=NC2=CN=CC=C2,false
-ClCC(=O)C1=CC=CC=C1,false
-NC(CCCCNCC(N)C(O)=O)C(O)=O,false
-OC(=O)CCC(O)=O,false
-CC34C=CC2=C1CCC(=O)CC1=CCC2C3CCC4O,false
-OC(=O)C1=CN=CC=C1,false
-CC1=CC=C(C=C1)C=O,false
-CC(=C)C1CC=C(C)C(O)C1,false
-C2CCCCCC1OC1CCCC2,false
-CC(C)CN,false
-CC(=O)C=CC1=CC=CO1,false
-CCC2=C1[NH]C=C(C1=CC=C2)CCO,false
-CC2CC(C)(C)C1=C(C=C(C(=C1)C(C)=O)C)C2(C)C,false
-CCCCCCCCCCCC(=O)N(CCO)CCO,false
-CNC(CC(O)=O)C(=O)N(C2C1SC(C)(C)C(N1C2=O)C(O)=O)C(C(N)=O)C3=CC=C(C=C3)O,false
-CC1(C)C(C=C(Cl)Cl)C1C(=O)OC(C#N)C2=CC(=CC=C2)OC3=CC=CC=C3,false
-NC2=NC(=C1[NH]C=NC1=N2)N,false
-OC1COC2C(COC12)O[N+]([O-])=O,false
-CC(C)CC(=O)OCC=C,false
-CCCC(=O)OC1CCCCC1,false
-COC3=CC(=C2C(=O)OC1=CC(=CC(=C1C2=C3)C)O)O,false
-ClC1=NC(=NC(=C1)Cl)Cl,false
-[O-][N+](=O)C1=C(C=CC=C1)NC2=CC=CC=C2,false
-OC(=O)C3CC1=C([NH]C2=CC=CC=C12)C(N3)C4=CC=CC=C4,false
-OCCC#N,false
-CC(C)CC(NC(=O)COC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false
-OC(=O)CCCC1=C[NH]C2=CC=CC=C12,false
-COP(=O)(OC)SC,false
-CCCCCCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCCCCC,false
-OCC1=CC3=C(C=C1)C(=O)C2=C(C=CC=C2)C3=O,false
-CN1CCCN(C)C1=O,false
-OC2(CCN(CCCC(=O)C1=CC=C(C=C1)F)CC2)C3=CC=C(C=C3)Cl,false
-ClC1=CC(=C(C=C1)C=O)Cl,false
-CC1=CC(=CC=C1)N,false
-CC1(C)C2CCC1(C)C(O)C2,false
-BrC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false
-C=CCOC(=O)C=C,false
-CCCCCC=[N+](O)[O-],false
-CCOC(=O)CC(SP(=S)(OC)OC)C(=O)OCC,false
-CS(O)(=O)=O,false
-O=C3C(=O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,false
-CC(C)=CC1C(C(O)=O)C1(C)C,false
-NC2=CC1=CC=CN=C1C=C2,false
-CCCCOCCOP(=O)(OCCOCCCC)OCCOCCCC,false
-OC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false
-OCC1=CC(=CC=C1)[N+]([O-])=O,false
-NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CS2,false
-ON=CC(=O)NC1=CC=CC=C1,false
-CC(C=O)=CC=CC(C)=CC=CC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,false
-CC(C)C1=CC(=C(C=C1)C)O,false
-CC(=O)CCC(C)=O,false
-OC(=O)CC1=C[NH]C2=CC=C(O)C=C12,false
-CCCCC(CC)COC(=O)C(C#N)=C(C1=CC=CC=C1)C2=CC=CC=C2,false
-CC(=O)CC(=O)CCC(O)=O,false
-OC(=O)C=CC1=CC(=C(C=C1)O)O,false
-OC2=C1N=CC=CC1=C(C=C2I)Cl,false
-CC(C)(C)C(=O)C(OC1=CC=C(C=C1)Cl)[N]2C=CN=C2,false
-CC3=C2C=C1C=CC=CC1=CC2=CC=C3,false
-OC1OCC=C2OC(=O)C=C12,false
-CC3=C2C1=CC(=CC(=C1C(OC2=CC(=C3)O)=O)O)O,false
-CC(=C)C(=O)OCCOCCOC(=O)C(C)=C,false
-CCCCC(CC)C=O,false
-CCC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,false
-NS(=O)(=O)C1=C(C=C2C(=C1)S(NCN2)(=O)=O)Cl,false
-CC(C)C1=C(C=C(C=C1)C)O,false
-ClC1=CC(=CN=C1)Cl,false
-CCC2NC(=O)C1=C(C=C(C(=C1)S(N)(=O)=O)Cl)N2,false
-CN(C)C1=CC=C(C=C1)C=CC=O,false
-CC(C)NCC(O)COC2=C1C=CC=CC1=CC=C2,false
-O=CC1=CC=CC=C1,false
-CC(C(O)=O)C1=CC=C(C=C1)OC2=NC=CS2,false
-ClC2=C(C1=CC=CC=C1C(=C2Cl)Cl)Cl,false
-CCNCC#CC(C)(C)OC(=O)C(O)(C1CCCCC1)C2=CC=CC=C2,false
-O=C(C=CC1=CC=C(C=C1)C2=CC=CC=C2)C3=CC=CC=C3,false
-COC2=CC1=C(C=CN=C1C=C2)C(O)C3CC4CCN3CC4C=C,false
-ClCC1=CC(=CC=C1)CCl,false
-CCN=C=S,false
-NC1CCC(N)CC1,false
-OC1=C(C=CC=C1)C2=C(C=CC=C2)O,false
-FCC(F)(F)F,false
-FC(F)(F)C1=CC=CC=C1,false
-OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=C(C=C3)S(O)(=O)=O,false
-CC(CCC=C(C)C)CC=O,false
-ClCCN(CCCl)CCCl,false
-ClCC1=CC=C(C=C1)Br,false
-CCCCCCCCC1CO1,false
-O=C1CCCO1,false
-ClC1=C(C3=C(C(=C1Cl)Cl)OC2=C(C(=C(C(=C2Cl)Cl)Cl)Cl)O3)Cl,false
-CCOC(=O)C(C)=O,false
-CCCCCCCCC,false
-O=C1C=CC(=O)N1C2=CC=C(C=C2)CC3=CC=C(C=C3)N4C(=O)C=CC4=O,false
-FC1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,false
-CCC1=CC=C(C=C1)C,false
-C2CC1OC1CCC3OC23,false
-CC1=CC(=CC=C1)Br,false
-CCSC(=O)N1CCCCCC1,false
-CN(C)CC1=CC=CC=C1,false
-CC1=CC(=CC=C1)C,false
-O(P(OC1=CC=CC=C1)OC2=CC=CC=C2)C3=CC=CC=C3,false
-ClC=CCl,false
-CSSC,false
-N#CC=CC#N,false
-CN3C(=O)C24CC1=CC=CC(O)C1N2C(=O)C3(CO)SS4,false
-OC(=O)C=CC=CC(O)=O,false
-C=CC(=O)N1CCN(CC1)C2=CC=CC=C2,false
-COC1=CC=C(C=C1)C=O,false
-ClC1=CC=C(C=C1)CSC2=CC=C(C=C2)Cl,false
-ClC1C(Cl)C(Cl)C(Cl)C(Cl)C1Cl,false
-CC1=C(SCCO1)C(=O)NC2=CC=CC=C2,false
-CCOC(=O)C(SP(=S)(OC)OC)C1=CC=CC=C1,false
-CCOP(=S)(OCC)OC1=NC(=NC(=C1)C)C(C)C,false
-CN3C(C(=O)NC1=NC=CC=C1)C(=O)C2=C(C=CS2)S3(=O)=O,false
-CCOP(=S)(OCC)SCSCC,false
-CCCCOCCOCCO,false
-COC1=CC=C(C=C1)CO,false
-OC3=C2C(=C1C(=CC=CC1=CC2=CC=C3)O)O,false
-CC1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,false
-CCCCCC(=O)OCC,false
-C[N]1C=CC=C1,false
-OC(C#N)C1=CC=CC=C1,false
-CC(O)C2C1SC(=C(N1C2=O)C(O)=O)C3CCCO3,false
-CCC(C)(C)C1=CC=C(C=C1)O,false
-OCC(O)C(O)C(O)C(O)CO,false
-ClC1=CC=C(C=C1)C=O,false
-FC1=C(C(=C(C(=C1F)F)Cl)F)F,false
-[O-][N+](=O)C1=CC=C(C=C1)C2OC2C(=O)C3=CC=CC=C3,false
-O=C(NC1=CC=CC=C1)NC2=CC=CC=C2,false
-CC(C)(C)C2=CC(=CC=C1C=C(C(=O)C(=C1)C(C)(C)C)C(C)(C)C)C=C(C2=O)C(C)(C)C,false
-CCC1(CC(O)=O)OCCC2=C1[NH]C3=C(C=CC=C23)C(C)O,false
-O[N+]([O-])=C=CC1=CC=CO1,false
-CC(C)C1CC=C(C)C2CC=C(C)CC12,false
-[O-][N+](=O)C1=C(C=CC=C1)CBr,false
-CC1(C)C2CCC(=C)C1C2,false
-N#CC1=CC=CC=C1,false
-OS(=O)(=O)C1=C(C=CC=C1)[N+]([O-])=O,false
-CCCCC(CC)COC(=O)CCCCC(=O)OCC(CC)CCCC,false
-CC(=O)NC1=CC=C(C=C1)CC(O)=O,false
-CC4SC5=C(C(O)=O)C(=O)C1=C(C=C(C(=C1)F)N2CCN(CC2)CC3=C(C)OC(=O)O3)N45,false
-CCCCCCCCOC1=CC=C(C=C1)C(O)=O,false
-CN(C)C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=C(C=C3)N(C)C,false
-N#CC(C#N)=C(C#N)C#N,false
-CC1=CN=CC=C1,false
-[O-][N+](=O)C2=C1C=CC=CC1=C(C3=CC=CC=C23)[N+]([O-])=O,false
-CCOCCO,false
-CN(C(C)=O)C1=CC=C(C=C1)N=NC2=CC=C(C=C2)N(C)C(C)=O,false
-CC(C)CCCCCCCOC(=O)C(C)=C,false
-CCC(C(C)O)=[N+](O)[O-],false
-CCC34CCC1C(CCC2=CC(=O)CCC12)C3CCC4(O)C#C,false
-OCC2=C1C=CC=CC1=NC=C2,false
-OC2=CC1=CC=CN=C1C=C2,false
-NC1=C(C=CC=C1)C(=O)OCC=C,false
-NC1=NC=CC=C1,false
-CCCC=O,false
-CC(=O)CC(C)(C)NC(=O)C=C,false
-CCOP(=S)(OCC)SCCl,false
-ClC1=C(C(=CC=C1)C=O)Cl,false
-CCCCCCCCCCCCCCCCCCCC,false
-CC(=O)OCC=C(C)C=CC=C(C)C=CC1=C(C)CCCC1(C)C,false
-CC(C)COC(=O)CCCCC(=O)OCC(C)C,false
-OC(=O)C1=CC=C(C=C1)Cl,false
-CC(C)(N)C1CCC(C)(N)CC1,false
-CCCCCCCCCCCC(=O)OOC(=O)CCCCCCCCCCC,false
-CC1=C(C=C(C(=C1)C)S(O)(=O)=O)N=NC3=C(C2=CC=CC=C2C(=C3)S(O)(=O)=O)O,false
-COC2=CC=C1[NH]C=C(CCNC(C)=O)C1=C2,false
-CC(C)NC1=NC(=NC(=N1)Cl)NC(C)C,false
-CC(C)COC(=O)CC1=CC=CC=C1,false
-CC(=C)C(=O)OC(C)(C)C,false
-COC(C)(C)CC(C)=O,false
-CC1=C(C=C(C(=N1)O)C#N)C2=CC=NC=C2,false
-CCOP(=O)(OCC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,false
-COC1=CC=C(C=C1)CN(C)N=O,false
-CCOP(=S)(OCC)SCSC(C)(C)C,false
-FC1=C(C=CC=C1)C2=CC=CC=C2,false
-ClC2=CC1=CC=CC=C1C=C2,false
-OC(=O)C1CSCN1,false
-OC1=NSC2=CC=CC=C12,false
-NC1=C(C(=CC=C1)[N+]([O-])=O)CO,false
-N#CC1=CC(=CC=C1)C#N,false
-CCOC(=O)CNC(=O)CCCCSC2=C1N=C[NH]C1=NC=N2,false
-CCOCCOC(=O)C=CC1=CC=C(C=C1)OC,false
-CCCCCCCCCC=C,false
-CC(=O)CC(C)(C)O,false
-CCNC1=NC(=NC(=N1)N)Cl,false
-CC(C)=CCCC(C)=CCO,false
-CCCCC(CC)COC(=O)CCCCCCCCC(=O)OCC(CC)CCCC,false
-CC1=CC=C(C=C1)CO,false
-CCC(C)(C)OC,false
-ClC1=C(C=CC=C1)Cl,false
-CCOC1=C(C=CC=C1)N,false
-OCC1=CC4=C3C(=C1)C2=CC=CC=C2C3=CC=C4,false
-OCC1OC(CC1O)N2C=C(C=CBr)C(=O)NC2=O,false
-CC(=O)OC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,false
-CCN(C(=O)N(CC)C1=CC=CC=C1)C2=CC=CC=C2,false
-CC(=O)NC1=CC=CC=C1,false
-CC1=CC(=CC=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,false
-CCNC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,false
-OCC(COC(=O)C=C)(COC(=O)C=C)COC(=O)C=C,false
-ClC1=CC(=C(C(=C1)Cl)Cl)Cl,false
-CC(CCC(O)=O)C1CCC2C4C(CCC12C)C3(C)CCC(O)CC3CC4=O,false
-CCCCCCOC(=O)C(C)=C,false
-ClC1=CC=C(C=C1)N2C(=O)CCC2=O,false
-NC1=C(C=CC=C1O)C(O)=O,false
-CCCCOP(=O)(OCCCC)OCCCC,false
-C[N+]1=CC=C(C=C1)C2=CC=CC=C2,false
-CC(OC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false
-[O-][N+](=O)C1=CC=C(C=C1)COC2=CC=CC=C2,false
-COC1=CC(=O)C=CC1=O,false
-CN(C)CCCN,false
-ON=CC1=CC=NC=C1,false
-OC(=O)CC1=CC(=CC=C1)[N+]([O-])=O,false
-CC1(C)C2CCC1(C)C(C)(O)C2,false
-C1=CC=C(C=C1)N(C2=CC=CC=C2)C3=CC=CC=C3,false
-CC(Br)(CCl)CBr,false
-COC1=CC(=C(C=C1)O)C(C)(C)C,false
-CCCCCNCCCCC,false
-OC1C(=O)C(=O)C1=O,false
-OCC1=CC=C(C=C1)C(F)(F)F,false
-OC2=C(C1=CC=CC=C1C=C2)N=NC4=C(C3=CC=CC=C3C=C4)S(O)(=O)=O,false
-CCOCC(O)=O,false
-CCC3=C2C1=CC=CC=C1C=CC2=CC4=CC=CC=C34,false
-CC(C)=C,false
-OC1=C(C=CC=C1[N+]([O-])=O)[N+]([O-])=O,false
-COC1=C(C2=C(C(=C1)OC)C(=O)C3(O2)C(C)CC(=O)C=C3OC)Cl,false
-O[N+]([O-])=C,false
-CCCCN(CC)CC,false
-NC(CCC(=O)NC1=CC=C(C=C1)[N+]([O-])=O)C(O)=O,false
-COP(=O)(OC)N1CCOCC1,false
-CC1=C(C=C(C=C1O)[N+]([O-])=O)[N+]([O-])=O,false
-[NH]1C=CC2=CC=CC=C12,false
-CCCCOC(=O)C1=C(C=CC=C1)C(=O)OCC2=CC=CC=C2,false
-FC(F)(F)C1=CC(=CC=C1)Cl,false
-OC2=C1C(C5=C(OC1=CC=C2)C=C4OC3OC=CC3C4=C5O)=O,false
-CC(C)CC(C)N,false
-CC(O)CN1CC(C)OC1=O,false
-CC1=CC(=C(C=C1)N)S(O)(=O)=O,false
-CC1=CC=C(C=C1)NC(=O)CBr,false
-[NH]1C=NC2=CC=CC=C12,false
-CCCCCCC(=O)OCC,false
-C1=CC3=C(N=C1)C2=NC=CC=C2C=C3,false
-CC(=O)NC1=CC=C(C=C1)CC2=CC=C(C=C2)NC(C)=O,false
-CC1=CC(=CC=C1)C#N,false
-NN(C1=CC=CC=C1)C2=CC=CC=C2,false
-CN(C)C1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false
-C=CN1CCCC1=O,false
-CC(C)CCCCCCCOP(=O)(OC1=CC=CC=C1)OC2=CC=CC=C2,false
-CC1=CC=C(C=C1)C(C)(C)C,false
-NC(=N)C1=CC=C(C=C1)C3=CC2=CC=C(C=C2[NH]3)C(N)=N,false
-CCCCC(CC)COC(=O)C1=C(C=CC=C1)C(O)=O,false
-CCN(CC)C(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)(C)C)C(C)=O,false
-CCCCCCCCCCCC=C,false
-S=C(NC1=CC=CC=C1)NC2=CC=CC=C2,false
-CCOC4=C2C1=CC=CC=C1C=CC2=C3CCC(C3=C4)=O,false
-CCCCCCCCCCCCCC=C,false
-OC(=O)C1=C(C=CC=C1)C(O)=O,false
-CC(=O)NC1=CC=C(C=C1)[N+]([O-])=O,false
-CN(C)[P+](O[N]1N=NC2=CC=CC=C12)(N(C)C)N(C)C,false
-CC(=C)C#N,false
-CCSCCC(N)C(O)=O,false
-CN(C)NC(=O)CCC(O)=O,false
-CSC(C)(C)C=NO,false
-CNC(=O)C1=CC(=CC=C1)NCC(=O)NCCC2=CC(=C(C=C2)OC)OC,false
-OC(=O)C1=CC=CO1,false
-ClC1=C(Cl)C(=O)C(=C(C#N)C1=O)C#N,false
-CC1=C(C=CC=C1)C#N,false
-CN(C)C(=S)N(C)C,false
-ClC1=CC(=O)C=CC1=O,false
-CCCCCCCCCC1=CC=C(C=C1)O,false
-CC([N]1C=CN=C1)=C(OCCOC2=CC=C(C=C2)Cl)C3=C(C=C(C=C3)Cl)Cl,false
-CC1=NC(=C(N=C1)C)C,false
-ONC1=CC=C(C=C1)Cl,false
-CC(CNC(=O)C1=CN=CC=C1)NC(=O)C2=CN=CC=C2,false
-CCOC(=O)CCl,false
-OC1=C(C=CC(=C1)Cl)Cl,false
-CC(C=CC(O)C1CC1)C2CCC3C(CCCC23C)=CC=C4CC(O)CC(O)C4=C,false
-CC1=C(N=CC=N1)C,false
-CCOC(=O)C1C(C=C(C)C)C1(C)C,false
-OC3N=C(C1=CC=CC=C1)C2=C(C=CC(=C2)Cl)NC3=O,false
-NCCS(O)(=O)=O,false
-CN1CCN(CC1)C3=CC=C2[NH]C(=NC2=C3)C5=CC=C4[NH]C(=NC4=C5)C6=CC=C(C=C6)O,false
-CC(CO)=[N+](O)[O-],false
-CC(C)NCC(O)COC3=C2C1=CC=CC=C1[NH]C2=CC=C3,false
-OCCOC(=O)C=C,false
-CC(C)(C)N(CCO)CCO,false
-C1CN=C(N1)C2=CC=C(C=C2)C4=CC3=CC=C(C=C3[NH]4)C5=NCCN5,false
-CCCCO,false
-CC1=C(C(=CC=C1)C)NC(=O)CN2CCCC2=O,false
-CCCCCOC1=CC(=CC=C1)NC(=O)OC2CCCCC2N3CCCC3,false
-CC(=O)NC1=CC(=CC=C1)C,false
-OC1=N[NH]C2=CC=CC=C12,false
-CCN(CC)C1=CC2=C(C=C1)C(=CC(O2)=O)C(F)(F)F,false
-CSCCC(NC=O)C(=O)NC(CC1=CC=CC=C1)C(O)=O,false
-CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)CCCO)C5CC=C3CC(=O)CCC3=C45,false
-[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=C(C=C2)N=C=S,false
-CC1=CC(=C(C(=C1)CC2=C(C(=CC(=C2)C)C(C)(C)C)O)O)C(C)(C)C,false
-CC1SCC(NC1=O)C(=O)NC(CC2=C[NH]C=N2)C(=O)N3CCCC3C(N)=O,false
-CC(=O)NC1=CC=C(C=C1)OC2=CC=C(C=C2)NC(C)=O,false
-CON(C)C(=O)NC1=CC=C(C=C1)Br,false
-CC(=O)OC1=C(C=CC=C1)C(=O)OC2=C(C=CC=C2)C(O)=O,false
-CC1=CC(=C(C=C1)OP(=O)(OC2=C(C=C(C=C2)C)C)OC3=C(C=C(C=C3)C)C)C,false
-NC(=O)CN1CC(O)CC1=O,false
-CC(N)=S,false
-CCC1=NC=CN=C1,false
-CC(C)(S)C(=O)NC(CS)C(O)=O,false
-NN(CC1=CC=CC=C1)CC2=CC=CC=C2,false
-OC(=O)C(=O)NC1=CC(=CC=C1)C2=N[NH]N=N2,false
-OCCN1C(=O)N(CCO)C(=O)N(CCO)C1=O,false
-CC(=C)C1CCC(=CC1)C,false
-[O-][N+](=O)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,false
-ClC1=CC(=CC=C1)C=O,false
-NC1=CC(=CC=C1)S(O)(=O)=O,false
-C1=CC=C(C=C1)C=CC2=CC=CC=C2,false
-O=C1OC(=O)C2=C1C=CC=C2,false
-COC(=O)C1=C(C=CC=C1)N,false
-OC(=O)C1CSCN1C(=O)C2CCC(=O)N2,false
-CNC(=O)N(C)C2=NC1=CC=CC=C1S2,false
-CCCCOC(=O)C1=C(C=CC=C1)C(=O)OC2CCCCC2,false
-COCCO,false
-CCCCCCCCCCCCC1CO1,false
-CNC(=O)NC,false
-COC1=CC=C(C=C1)NC2=CC=C(C=C2)OC,false
-[O-][N+](=O)C3=C2C=CC1=CC=CC=C1C2=CC4=CC=CC=C34,false
-CCCCOCC(O)=O,false
-NC1=C(C=CC=C1)Cl,false
-CN1CCNCC1,false
-COC(=O)CC(C)=O,false
-FC(F)(F)C(Cl)Br,false
-CCC(C)(C)C,false
-O=C(C=CC1=CC=CC=C1)C2=CC=C(C=C2)C3=CC=CC=C3,false
-CC(C)OC(C)=O,false
-CC3(C)C(C(=O)OC(C#N)C1=CC(=CC=C1)OC2=CC=CC=C2)C3(C)C,false
-CC(=O)C1=C2C(=CC(=C1)C(C)(C)C)C(CC2)(C)C,false
-NC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)O)N=NC3=C(C=C(C=C3)[N+]([O-])=O)S(O)(=O)=O,false
-C1=NC=CN=C1,false
-[O-][N+](=O)C1=CC(=CC=C1)C(F)(F)F,false
-COC5=C1OC2C(C=CC3C4CC(=C1C23CCN4C)C=C5)O,false
-CC1=CC=CS1,false
-CC2CCC1C(OC(=O)C1=C)C3(C)C(=O)CC=C23,false
-OC1=C(C=CC=C1)[N+]([O-])=O,false
-NC1=CC(=C(C(=C1)Cl)Cl)Cl,false
-N(C1=CC=CC=C1)C3=C2C=CC=CC2=CC=C3,false
-OC1=C(C=C(C=C1)C2=CC=CC=C2)[N+]([O-])=O,false
-NC(=O)NNC(N)=O,false
-[O-][N+](=O)C1=C(C=CC(=C1)C(F)(F)F)Cl,false
-CCN(CC)C1=CC=C(C=C1)N=NC2=CC=CC=C2,false
-ON=C,false
-OC2=C1C=CC=CC1=NC=C2,false
-NCCN1CCNCC1,false
-O=C2C1=C(C=CC=C1)C3=C2C=CC=C3,false
-CC(C)(COC(=O)C=C)COC(=O)C=C,false
-CC(C)(Br)C(=O)NC1=CC=CC=C1,false
-CC(C)(OC1=CC=C(C=C1)C2CCCC3=C2C=CC=C3)C(O)=O,false
-CC(C)C1CCC(C)CC1OC(=O)C2=C(C=CC=C2)N,false
-OC1=C(C=C(C=C1Br)Br)C(=O)NC2=CC=C(C=C2)Br,false
-C1=CC=C(C=C1)P(C2=CC=CC=C2)C3=CC=CC=C3,false
-COC(=O)NC2=NC1=CC(=CC=C1[NH]2)SC3=CC=CC=C3,false
-O=NN(C1=CC=CC=C1)C2=CC=CC=C2,false
-O=C2NC1=C(CCC1)C(=O)N2C3CCCCC3,false
-NC1=C(C=CC=C1)C(=O)OCC=CC2=CC=CC=C2,false
-C1CSCCO1,false
-O=C(C=CC1=CC=CC=C1)C2=CC=CC=C2,false
-CC1=CC2=C(C(=C1)O)C(=O)C=C(C2=O)C3=C(C4=C(C=C3C)C(=O)C=CC4=O)O,false
-CC1=NN(C(=O)C1)C2=CC=CC=C2,false
-NC1=CC(=CC=C1)C(F)(F)F,false
-NC(=O)C1=CC=[N+](C=C1)COC[N+]2=C(C=CC=C2)C=NO,false
-NCC=C,false
-COP(=S)(OC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false
-CC1OCCC2=C1C=C3C(=C2)C(C(C3(C)C)C)(C)C,false
-NC1=CC(=C(C=C1)N)S(O)(=O)=O,false
-CCC1=C(C=CC=C1)O,false
-CCCCCC(=O)OCC=C,false
-CC1=C(C=C(C=C1)N=[N+]([O-])C2=CC(=C(C=C2)C)[N+]([O-])=O)[N+]([O-])=O,false
-NN2C(=O)C1=C(C=CC=C1)C2=O,false
-CC(=O)C1=NC=CC=C1,false
-COC4=C1C(C5=C(OC1=C3C2CCOC2OC3=C4)C=CC=C5O)=O,false
-CCOCN(C(=O)CCl)C1=C(C=CC=C1C)CC,false
-CC(N)=O,false
-OC(=O)COC1=CC=C(C=C1)Cl,false
-NC1=CC(=C(C=C1)Cl)Cl,false
-ClC1=CN=CC=C1,false
-O=C1CNC(=O)N1,false
-CCCC(O)C(CC)CO,false
-CC(=O)C1=C(C=CC(=C1)N)OCC(O)CNC(C)(C)C,false
-OC1(CCCCC1)C#N,false
-O=C(C1=CC=CC=C1)C(=O)C2=CC=CC=C2,false
-C=CC(=O)OCCOCCOCCOCCOC(=O)C=C,false
-CC(C)C=O,false
-[O-][N+](=O)C1=C(C=CC=C1)C2=CC=CC=C2,false
-CS(=O)C1=CC=C(C=C1)Cl,false
-OCC1OC(CC1O)N2CC(=O)C(=N)NC2=O,false
-OC(=O)C(Cl)(Cl)Cl,false
-CCC1=C(C=CC=C1)[N+]([O-])=O,false
-NC(=N)NC(N)=NCCC1=CC=CC=C1,false
-CC1=CC(C)(C)NC2=C1C=CC=C2,false
-COP(=S)(OC)SCC(=O)NCC=O,false
-CC(C)OC(=O)COC1=C(C=C(C=C1)Cl)Cl,false
-CC(C)[N]2C1=CC=CC=C1C(=C2C=CC(O)CC(O)CC(O)=O)C3=CC=C(C=C3)F,false
-CCOC(C)(C)C,false
-CCCCCCCCCCCCC=C,false
-CCCCCCCCCC,false
-C1COCCOCCOCCOCCO1,false
-CC2=NC1=C(C=CC=C1)C2(C)C,false
-CCCCCCCCCC(O)=O,false
-CCC=O,false
-CCCCCCCCCC=CCC1CC(=O)OC1=O,false
-COC3=C(C=C2C1C(C5=C(OC1COC2=C3)C4=C(OC(C4)C(C)=C)C=C5)=O)OC,false
-COC1=CC(=O)C(=O)C(=C1)C(C)(C)C,false
-CC(=O)OCC(=O)NCCCOC1=CC(=CC=C1)CN2CCCCC2,false
-CC1=C(C=CC=C1)Br,false
-C[N+]1([O-])CCCC1C2=CN=CC=C2,false
-CC(C)NC(=O)NS(=O)(=O)C1=C(C=CN=C1)NC2=CC(=CC=C2)C,false
-CCNC3=C(C=C2C(=C1C=C(C(C=C1OC2=C3)=NCC)C)C4=C(C=CC=C4)C(=O)OCC)C,false
-O=C4C2=CC=C1N=C(SC1=C2C(=O)C5=CC=C3N=C(SC3=C45)C6=CC=CC=C6)C7=CC=CC=C7,false
-CC5=C2C1=CC=CC=C1C=CC2=C4C3OC3C(C(C4=C5)O)O,false
-CC(C)CC1NC(=O)CNC1=O,false
-OC2=CC1=CC=CC=C1N=C2,false
-CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N(CC(O)=O)C3CC2=C(C=CC=C2)C3,false
-CCCCN(CCO)CCCC,false
-ClNC1=NC(=NC(=N1)NCl)NCl,false
-CC1CN(CCN1)C3=C(C(=C2C(C(=CN(C2=C3)C4CC4)C(O)=O)=O)C)F,false
-OCC(O)CO,false
-CNC(=O)C1=CC=CC=C1,false
-CCC1=C(C=CC=C1)N,false
-OC(=O)C1=CC2=C(C=C1)C(=O)OC2=O,false
-CC(C)CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,false
-O=C3OC2=C(C=C1C=COC1=C2)C=C3,false
-NC1=C(C=CC(=C1)Cl)Cl,false
-CCCCOC(=O)C=CC(=O)OCCCC,false
-CNNC,false
-O=C1C=CC(=O)C(=C1)C2=CC=CC=C2,false
-CC(N)CN,false
-CCOC2=C1N=CC=CC1=CC=C2,false
-CC1=C(C=CC=C1)C3=NC2=CC=CC=C2O3,false
-NC(N)=S,false
-BrCC1=CC=C(C=C1)CBr,false
-OC(=O)C(=O)C(O)=O,false
-OC(=O)C1=CC3=C(C(=C1)O)C(=O)C2=C(C=C(C=C2O)O)C3=O,false
-ClCC1=CC=NC=C1,false
-CC(N(C)C)C1=CC=CC=C1,false
-CC2COC1=C(C(=CC3=C1N2C=C(C(O)=O)C3=O)F)C4(N)CC4,false
-[O-][N+](=O)C1=CC=C(C=C1)NC2=CC=CC=C2,false
-O=C(OOC(=O)C1=CC=CC=C1)C2=CC=CC=C2,false
-CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(C)CC,false
-COC2=CC1=CC=C(C=C1C=C2)C(C)C(O)=O,false
-CN1C(CCC1=O)C2=CN=CC=C2,false
-CCCCCC=CC=CC=O,false
-COC1=C(C=CC(=C1)C3OC2=C(C(=CC(=C2)O)O)C(=O)C3=O)O,false
-COC(C)(C)C,false
-O=C2CCC1=C(C=CC=C1)O2,false
-CC=CC=CC(O)=O,false
-CCN(CC)S(=O)(=O)C1=CC=C(C=C1)N,false
-OCNC(=O)C=C,false
-CC(C)=CCCC(C)=CC=O,false
-CC2=NC1=CC=CC=C1N=C2,false
-CC(O)CCC(=O)C1=COC=C1,false
-CN(C)C(C)=O,false
-CN1CCOCC1,false
-CC(=C)OC(C)=O,false
-CCOC(=O)CC(C)=O,false
-OS(=O)(=O)C1=CC(=CC=C1)[N+]([O-])=O,false
-CSC(C)(C)C(=O)NC(CS)C(O)=O,false
-ClC1=NC(=NC(=N1)Cl)NC2=C(C=CC=C2)Cl,false
-CC1COC3=C2N1C=C(C(C2=CC(=C3N4CCN(C)CC4)F)=O)C(O)=O,false
-COC(=O)C(=CC1=CC=CO1)C#N,false
-CC(=C)C=C,false
-C1=CC=CC=C1,false
-CCCCC(CC)COCCCN,false
-[O-][N+](=O)C1=CC(=CC=C1)CBr,false
-CN(C)C=NC1=C(C=C(C=C1)Cl)C,false
-COC(=O)C1=C(C)NC(=C(C1C2=C(C=CC=C2)[N+]([O-])=O)C(=O)OCC(C)=O)C,false
-NCC1CCC(CC1)C(=O)C2=CC=C(C=C2)CCC(O)=O,false
-CCOC(=O)C1OC1C(=O)NC(CC(C)C)C(=O)NCCC(C)C,false
-CC1=CC(=O)OC2=C1C(=CC(=C2)O)O,false
-CN(C)C1=CC=C(C=C1)N=NC2=C(C=CC=C2)C,false
-CC(=O)NC1=CC=C(C=C1)OC(=O)C2=C(C=CC=C2)OC(C)=O,false
-C1CCC2(CC1)CO2,false
-NC(=S)NCC=C,false
-CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(O)C34C,false
-CC(=O)NC1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,false
-CCCCCC(C)(O)C=CC1C(O)CC(=O)C1CC=CCCCC(O)=O,false
-CC(=C)C1=CC=CC=C1,false
-O=CC=CC1=CC=CO1,false
-CCCCCCCCCCCCCCCCCC(O)=O,false
-CCCCCCCCCCCCCCCCN,false
-CCNC1=NC(=NC(=N1)Cl)NCC,false
-COP(=S)(OC)OC,false
-ClC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false
-CCCC=[N+](O)[O-],false
-CNC1=CC=CC=C1,false
-OC(=O)C=C,false
-CCCCCCCCCCCCCCCCCCN,false
-COC1=CC2=C(C=C1)C(=CC(=O)O2)CBr,false
-CCC#N,false
-CC=C1CC2CC1C=C2,false
-CC(C)C(C)C,false
-COCC(O)=O,false
-CNC(=O)NC1=CC=CC=C1,false
-O2C1=C(C=CC=C1)SC3=C2C=CC=C3,false
-C=CC(=O)OCCOC(=O)C=C,false
-CC1=CC=C(C=C1)S(=O)(=O)NC2CCCCC2,false
-CCC(C)NC1=CC=C(C=C1)NC(C)CC,false
-CC(C)OC(=O)C(C)(C)OC1=CC=C(C=C1)C(=O)C2=CC=C(C=C2)Cl,false
-OC1=CC(=C(C=C1)Cl)Cl,false
-CCNC2=C(C=C1C(=CC(OC1=C2)=O)C)C,false
-CCOP(=O)(OCC)OC(=CCl)C1=C(C=C(C=C1)Cl)Cl,false
-OC1=NC(=NC(=N1)Cl)Cl,false
-COC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false
-COC1=C(C=C(C(=C1)S(O)(=O)=O)C)N=NC3=C2C=CC(=CC2=CC=C3O)S(O)(=O)=O,false
-CC(=O)CC(=O)NC1=CC=C(C=C1)C,false
-CCCCNCC,false
-NS(=O)(=O)C1=C(C=C(C(=C1)C(O)=O)NCC2=CC=CO2)Cl,false
-CC(C)NCC(O)COC1=CC=C(C=C1)NC(C)=O,false
-CC(F)(F)F,false
-CCCCCCCCC=O,false
-C1=CC=C(C=C1)C2=CC=CC=C2,false
-FC(F)(F)C1=C(C=CC=C1)Cl,false
-CC(C)CC(=O)CC(C)C,false
-CCCCCC(C=O)=CC1=CC=CC=C1,false
-CN(C)CC(O)=O,false
-CCOC(=O)CC(=O)CCl,false
-OC(=O)COC1=CC=CC=C1,false
-BrC1=CC(=CC=C1)C2=CC=CC=C2,false
-CC1=C(C=CC=C1)C,false
-CCC1=C4C(=C(C2=CC=CC=C12)C)C3=CC=CC=C3C=C4,false
-CC(C)CCCCCCOC(=O)CCCCC(=O)OCCCCCCC(C)C,false
-OC1=C(C=CC=C1)O,false
-NC1=C(C=CC=C1)C(=O)OC2CCCCC2,false
-C1CCNC1,false
-CCCCN(CCCC)CCCC,false
-CC(C)C2=C(C)N(C)N(C1=CC=CC=C1)C2=O,false
-C(SCC1=CC=CC=C1)C2=CC=CC=C2,false
-COC(=O)C1=CC=CO1,false
-OC1=C(C=C(C=C1I)C#N)[N+]([O-])=O,false
-COC1=C(C=C(C=C1)C=O)OC,false
-O=C2C(=O)C1=C(C=CC=C1)C3=C2C=CC=C3,false
-CCO,false
-CC(=O)N=C1C=CC(=O)C=C1,false
-CC(C)(C)OOC(C)(C)C1=CC(=CC=C1)C(C)(C)OOC(C)(C)C,false
-CSC1=CC=C(C=C1)Cl,false
-O=C2C1=C(C=CC=C1)C6=C4C2=CC=C5C3=CC=CC=C3C(C(=C45)C=C6)=O,false
-OC1=CC=C(C=C1)C2(OC(=O)C3=C2C=CC=C3)C4=CC=C(C=C4)O,false
-ClCC1=CC=C(C=C1)CCl,false
-S=C1SSC2=NCCN12,false
-CC(O)C(C)O,false
-NCCO,false
-CCNC1=NC(=NC(=N1)Cl)NC(C)C,false
-OC(=O)CCC(=O)NC1=CC=C(C=C1)Cl,false
-OCC1NC(CC2=C1[NH]C3=CC=CC=C23)C(O)=O,false
-COC(=O)C=C,false
-CC(C)NC1=CC=C(C=C1)NC2=CC=CC=C2,false
-CCCC(=O)OCCC(C)C,false
-COC(=O)C1=C(C)NC(=C(C1C2=CC(=CC=C2)[N+]([O-])=O)C(=O)OCC=CC3=CC=CC=C3)C,false
-CCN=[N+]([O-])CC,false
-CNC(=O)OC2=C1OC(CC1=CC=C2)(C)C,false
-CN(C)C1=CC=NC=C1,false
-CCCCCCCCCCCC(=O)NCCO,false
-CC(=C)C(O)=O,false
-CC1=CC(=CC(=C1)C)N=NC3=C2C=CC=CC2=CC=C3O,false
-CCCCCCCC1CCC(=O)O1,false
-NC1=CC(=C(C=C1)O)C(O)=O,false
-CCOP(=O)(C#N)N(C)C,false
-CC(C)(C)C1=C(C(=CC(=C1)C=CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,false
-NC1=C(C=C(C=C1Cl)Cl)Cl,false
-OC(=O)CS,false
-CC(C)COC(=O)C=C,false
-CC1(C)CC(N)CC(C)(CN)C1,false
-CC1=C(C=C(C=C1)NO)[N+]([O-])=O,false
-ClC(Cl)=C(Cl)C1=C(C(=C(C(=C1Cl)Cl)Cl)Cl)Cl,false
-CNC(=O)OC1=CC=CC=C1,false
-NC1=CC=C(C=C1)C=CC(O)=O,false
-OC2(O)C(=O)C1=C(C=CC=C1)C2=O,false
-CC1=N[N](C(=C1)C)C2=C4C(=C(N=N2)NN)C3=CC=CC=C3[NH]4,false
-NC1=NC(=NC(=N1)N)N,false
-CC1=C(C(=C(C=C1)C)C)C,false
-CC1=C(C(=C(C(=C1C)N)C)C)N,false
-CC(C)COC(=O)C1=C(C=CC=C1)N,false
-CCOC1=C(C=CC=C1)OCC2CNCCO2,false
-CC1=CC=C(C=C1)NC(N)=O,false
-OC(=O)CCl,false
-OC(=O)C1CSC(N1C(=O)CCS)C2=C(C=CC=C2)O,false
-CC2=NC1=CC=CC=C1S2,false
-[O-][N+](=O)C1=CC=C(C=C1)S(=O)(=O)NC2=NC=CC=C2,false
-CC1(C)CCCC(C)(C)N1O,false
-CCCCCCCCCCC=CC1CC(=O)OC1=O,false
-CCOP(=O)(OCC)OC1=C(C=C(C(=N1)Cl)Cl)Cl,false
-CC(O)C(O)=O,false
-NCCCCC(NC(CCC1=CC=CC=C1)C(O)=O)C(=O)N2CCCC2C(O)=O,false
-NC1=CC(=C(C=C1)C=CC2=C(C=C(C=C2)N)S(O)(=O)=O)S(O)(=O)=O,false
-C1CN(CCO1)SC3=NC2=CC=CC=C2S3,false
-CCCCOCCOC(=O)COC1=C(C=C(C=C1)Cl)Cl,false
-CCOC(=O)C(CCC1=CC=CC=C1)NC(C)C(=O)N3C2CCCCC2CC3C(O)=O,false
-OC1=C(C=CC=C1)C=O,false
-ClC1=CN=C(C=C1)Cl,false
-CCC(=O)NC1=CC(=C(C=C1)Cl)Cl,false
-N#CCCNCCC#N,false
-COC(=O)C(C)(C)OC1=CC=C(C=C1)C2=CC=C(C=C2)Cl,false
-CCCNCCC,false
-CCCCCCC(CC=CCCCCCCCC(=O)OC)OC(C)=O,false
-[O-][N+](=O)C1=C(C(=CC(=C1)C(F)(F)F)[N+]([O-])=O)Cl,false
-CCOC(=O)CC(SP(=O)(OC)SC)C(=O)OCC,false
-OCC3OC1C(OC2=NC(=N)C=CN12)C3O,false
-OC(C(COC(=O)CCC(O)=O)NC(=O)C(Cl)Cl)C1=CC=C(C=C1)[N+]([O-])=O,false
-CC(C)(C)C(=O)C2C(=O)C1=C(C=CC=C1)C2=O,false
-CC(=O)NS(=O)(=O)C1=CC=C(C=C1)N,false
-CC(=C)C(=O)OCCOC(=O)NNC(=O)OCCOC(=O)C(C)=C,false
-FC1=CC=C(C=C1)C(=O)CCCN2CCN(CC2)C3=NC=CC=C3,false
-CNCCS(O)(=O)=O,false
-[O-][N+](=O)C1=C(C=CC=C1)C#N,false
-CC=C(C)C#N,false
-OC(=O)C1=C(C=CC(=C1)N=NC2=CC=C(C=C2)S(=O)(=O)NC3=NC=CC=C3)O,false
-CCCCCCCCC1OC1CCCCCCCC(=O)OCC(CC)CCCC,false
-O=C(C1=CC=CC=C1)C2=CC=CC=C2,false
-BrCCCBr,false
-CC(=O)OC(C)(C)C3CC2=C(C=C1OC(C(=CC1=C2)C(C)(C)C=C)=O)O3,false
-OC1=C5C(=CC=C1)C4=CC3=C2C=CC=CC2=CC=C3N=C4C=C5,false
-CN3CCC14C5OC2=C1C(=CC=C2O)CC3C4C=CC5O,false
-NC1=C(C=CC=C1)C(F)(F)F,false
-CN(C)CCN(CC1=CC=C(S1)Cl)C2=NC=CC=C2,false
-C2COCCOC1=C(C=CC=C1)OCCOCCO2,false
-CC1CS1,false
-CC(CCC(O)=O)C3CCC4C2CCC1CC(O)CCC1(C)C2CC(=O)C34C,false
-OC1=C(C=C(C(=C1)Cl)O)Cl,false
-OCC(CO)NC1CC(O)(CO)C(O)C(O)C1O,false
-CC(=O)NC1=CC=C(C=C1)S(N)(=O)=O,false
-CCCCCCCCC1=CC=C(C=C1)NC2=CC=C(C=C2)CCCCCCCC,false
-CCOC(=O)C(=C)C#N,false
-CC1=CC(=O)C=CC1=O,false
-CC34CCC1C(CCC2=C1C=CC(=C2)O)C35CCC4(O)C(O)C5,false
-OC3C(O)C1=C(C=CC2=CC=CC=C12)C4=C3C=CC=C4,false
-CC(=C)C(=O)OCCCCOC(=O)C(C)=C,false
-OC(=O)C1=CC(=CC=C1)Cl,false
-OC(=O)C(Cl)CCl,false
-CNS(=O)(=O)C1=CC=C(C=C1)N,false
-CC(C)NC(C)C,false
-OC1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false
-BrCC#N,false
-OCNC(=O)CCl,false
-CCCCCCCCC=CCCCCCCCC(O)=O,false
-CC1=C(C=C(C(=C1)N)S(O)(=O)=O)Cl,false
-OC1=CC=C(C=C1)[N+]([O-])=O,false
-NC(=O)NCC(O)=O,false
-CN1CCN(C)CC1,false
-CN(C)N=NC1=CC=C(C=C1)C(O)=O,false
-CC(OC1=C(C=C(C=C1)Cl)C)C(O)=O,false
-ClC2=C(N=C1C=CC=CC1=N2)Cl,false
-CN(C)CCN(C)C,false
-OC=O,false
-CCCCCCOC(=O)C=C,false
-COC1=C(OC)C(=O)C(=CC1=O)C,false
-COC(=O)C1=C(C2=C(C(=C1)OC)OCO2)C3=C(C=C(C4=C3OCO4)OC)C(=O)OC,false
-C1CC3=C2C1=CC=CC2=CC=C3,false
-OC(=O)C=CC1=CN=C[NH]1,false
-N(C1=CC=CC=C1)C3=CC2=CC=CC=C2C=C3,false
-CC(C)CC1=CC=C(C=C1)C(C)C(O)=O,false
-COC(=O)NC2=NC1=CC(=CC=C1[NH]2)C(=O)C3=CC=C(C=C3)F,false
-OC(=O)C1=C(C=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,false
-ClC1=CC=C(C=C1)C(=C(Cl)Cl)C2=CC=C(C=C2)Cl,false
-CC(C)N,false
-OCC1CCCO1,false
-CC(O)C(C)=O,false
-CC2C(C)(C)C1=C(C(=O)CCC1)C2(C)C,false
-CC2C(C)(C)C1=C(C=C(C(=C1)C)C(C)=O)C2(C)C,false
-CCCCCC,false
-CCCSSCC=C,false
-C[N]2C(=NC3=NC1=CC=NC=C1C=C23)N,false
-NC1=CC=C(C=C1)S(N)(=O)=O,false
-NC1=C(C(=CC(=C1)Cl)S(O)(=O)=O)O,false
-ClC1=CC=CC=C1,false
-COC(=O)C1=CC=CC=C1,false
-CC4=C2C1=CC=CC=C1C=CC2=C3CCCC3=C4,false
-CCNCC,false
-CCC(C1=CC=C(C=C1)O)=C(CC)C2=CC=C(C=C2)O,false
-CC(=O)NC1=CC=C(C=C1)S(=O)(=O)C2=CC=C(C=C2)NC(C)=O,false
-COC(=O)CCl,false
-CC(=C)C(C)=O,false
-CC(C)OC1=CC=C(C=C1)NC2=CC=CC=C2,false
-CC1=CC(=O)C(=CC1=O)C,false
-O=C3N2CC1=C(C=CC=C1)C(=O)N2CC4=C3C=CC=C4,false
-CCCCCCCCOC(=O)C(C)=C,false
-CC(C)OC(=O)CCl,false
-CC(C)(O)C#N,false
-CC1=C(C=CC(=C1)Cl)OCC(O)=O,false
-CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O,false
-[O-][N+](=O)C1=CC=C(C=C1)CNC3=C2[NH]C=NC2=NC=N3,false
-CC(=O)OC(C)=O,false
-CC(C)(C)CBr,false
-OC(=O)COC1=C(C=C(C=C1)Cl)Cl,false
-NC1=C(N=CC(=C1)C2=CC=NC=C2)O,false
-CC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,false
-BrCC1=C(C=CC=C1)CBr,false
-CC(C)OP(C)(F)=O,false
-O=C1C(=O)C4=C3C2=C1C=CC=C2C=CC3=CC=C4,false
-CC(C)(C)CC(C)(S)CC(C)(C)C,false
-C=CCOC(=O)C1=C(C=CC=C1)C(=O)OCC=C,false
-OC1=CC2=C(C(=C1)O)C(=O)C=C(O2)C3=CC(=C(C=C3)O)O,false
-OCC1OC(CC1O)[N]2C=NC3=C2N=C[N]4C=CN=C34,false
-CN(C)P(=O)(N(C)C)N(C)C,false
-CC(=O)NC2=CC1=CC=CC=C1N=C2,false
-CC(O)C1=CC=CC=C1,false
-[O-][N+](=O)C1=CC=C(C=C1)C#N,false
-NCCNCCN,false
-CC(CC(O)=O)C(O)=O,false
-CCCCCCCCCCCCOCC1CO1,false
-OCC1=CC=CO1,false
-CCC=CCCC=CC=O,false
-CN1CCC(=CC1)C2=CC=CC=C2,false
-ClCC#N,false
-OC(=O)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)C(F)(Cl)C(F)(F)Cl,false
-COCCCN,false
-N2C1=C(C=CC=C1)SC3=C2C=CC=C3,false
-CC3(C)SC2C(NC(=O)C(N)C1=CC=CC=C1)C(=O)N2C3C(O)=O,false
-CC(C)(C)[N+]([O-])=O,false
-CC(C)C(O)CCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CC(O)C3=C,false
-OC(=O)CC1=C(C=CC=C1)Cl,false
-OC2=CC1=CC=C(C=C1C=C2)SSC4=CC3=CC=C(C=C3C=C4)O,false
-CC(=O)OCC1=CC2=C(C=C1)OCO2,false
-CN(C)C#N,false
-CCCCC(CC)COC(=O)C1=CC=C(C=C1)C(=O)OCC(CC)CCCC,false
-O=C1CCC(=O)O1,false
-COC(=O)C1=CC=C(C=C1)C=O,false
-CC(=O)C=CC1=CC2=C(C=C1)OCO2,false
-COC1=CC(=CC=C1)[N+]([O-])=O,false
-OCC1OC(C(O)C1O)[N]4C=NC5=C(NCC(O)COC3=C2C=CC=CC2=CC=C3)N=CN=C45,false
-C1=CC=C(C=C1)C(C2=CC=CC=C2)C3=CC=CC=C3,false
-CC1=CCC(CC1)C(C)(C)O,false
-COC1=C(C=C(C=C1)C(=O)N2CCN(CC2)C3=CC4=C(C=C3)NC(=O)CC4)OC,false
-NC(=N)C1=CC=C(C=C1)OCCCCCOC2=CC=C(C=C2)C(N)=N,false
-OCC1=C(C=CC=C1)[N+]([O-])=O,false
-CC(=O)NC3=C(C=C2C1=CC=CC=C1CC2=C3)O,false
-CC(=O)C1=C(C=CC(=C1)NC(=O)NC(C)(C)C)OCC(O)CNC(C)(C)C,false
-BrCC(=O)NC1=CC=CC=C1,false
-C2CC=CCCC1OC1CCC=C2,false
-CC(=O)NC1=CC(=CC=C1)O,false
-C=CCNCC=C,false
-C[N]1C=NC2=C1C(N(C(N2C)=O)C)=O,false
-ClC1=C(C=C(C=C1)C=O)Cl,false
-CC(C)NCC(O)COC2=C1OCC(CC1=CC=C2)O[N+]([O-])=O,false
-CC=NN(C)C=O,false
-CC2=C(C=C1C=CC=CC1=C2)[N+]([O-])=O,false
-CC(C)(C)C1=C(C(=CC(=C1)CC2=CC(=C(C(=C2)C(C)(C)C)O)C(C)(C)C)C(C)(C)C)O,false
-C1CN(CCN1)C2=CC=CC=C2,false
-FC1=NC(=CC=C1)F,false
-CCCCCCCCCCCCCCC1CO1,false
-ClC1=CC(=C(C=C1)Cl)Cl,false
-C1CNCCN1,false
-CC=C1CC(C)C(O)(CO)C(=O)OCC2=CC[N+]3([O-])CCC(OC1=O)C23,false
-CC1=C(C=CC=C1)Cl,false
-CCC1=C4C(=C(C2=CC=CC=C12)CC)C3=CC=CC=C3C=C4,false
-CCSCCOP(=S)(OC)OC,false
-CCOC(=O)C(Cl)C(C)=O,false
-CC2=C1C=CC=CC1=C3C(=C2)C4=C(C=C3)C(O)C(O)C5OC45,false
-NC1=CC=C(C=C1)Br,false
-C1COCCOCCOCCO1,false
-O=C1CCCCCN1,false
-[O-][N+](=O)C1=C(C(=C(C(=C1)Cl)Cl)Cl)Cl,false
-OCC1OC(C(O)C1O)N2CC(=O)C(=N)NC2=O,false
-OCCCC1=CC=CC=C1,false
-CC1=NC(=NC(=C1)C)SC(=O)OC(C)(C)C,false
-OC(=O)C=CC1=CC=CC=C1,false
-CCOP(=O)(OCC)OC1=NOC(=C1)C2=CC=CC=C2,false
-CC(O)=O,false
-N#CCC1=CC=CC=C1,false
-CC1(C)N(Cl)C(=O)N(Cl)C1=O,false
-CCC(C)=O,false
-OC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,false
-CCN(CC)C1=CC2=C(C=C1)C(=CC(=O)O2)C,false
-NCCCNCCCN,false
-CCOC1=C(C=CC(=C1)C=O)O,false
-CN1N(C(=O)C=C1C)C2=CC=CC=C2,false
-COC1=C(C=C(C(=C1)OC)C=O)OC,false
-CCCNC(=O)NS(=O)(=O)C1=CC=C(C=C1)Cl,false
-CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false
-C[N]2C(=NC3=NC1=CC=CN=C1C=C23)N,false
-OS(=O)(=O)C2=C1N=CC=CC1=CC=C2,false
-CC1=NC2=C(C=N1)CCC2,false
-CN(C1CCN(CC1)C3=NC2=CC=CC=C2[N]3CC4=CC=C(C=C4)F)C5=NC(=CC=N5)O,false
-OC1=CC=C(C=C1)C3CC(=O)C2=C(C=C(C=C2O)O)O3,false
-CC(=O)C(=O)C1=CC=CC=C1,false
-O=C(CN1C(=O)SC2=C1C=CC=C2)OCC3=CC=CC=C3,false
-ClC1=C(Cl)C(Cl)(Cl)C(=C1Cl)Cl,false
-BrCC(=O)C1=CC=CC=C1,false
-CCCCCCC=O,false
-O2C1=CC=CC=C1C3=CC=CC=C23,false
-CC1=CC=C(O1)C=O,false
-C2CCCC1OC1CC2,false
-C1COCCN1,false
-OC2=NC1=CC=CC=C1O2,false
-NC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=CC=C3,false
-O=CNC1=CC=CC=C1,false
-CCSCCSP(=S)(OC)OC,false
-COP(O)(SC)=NC(C)=O,false
-CC(C)(C)OOC(C)(C)CCC(C)(C)OOC(C)(C)C,false
-CC1=C(C=C(C=C1)Cl)[N+]([O-])=O,false
-CCOC(=O)C1OC1(C)C2=CC=CC=C2,false
-COC(=O)CCC(=O)OC,false
-CCCCCCCOC1=C(C=CC=C1)NC(=O)OCCN2CCCCC2,false
-CC(=C)C1=C(C=C(C(=C1)O)C)O,false
-O1C=CC2=CC=CC=C12,false
-CC(=O)C1=CC=CC=C1,false
-CCCCSCCC(N)C(O)=O,false
-OCC1=CC=C(C=C1)[N+]([O-])=O,false
-CC(C)(C)OC(=O)ON=C(C#N)C1=CC=CC=C1,false
-CCCOC(=O)C(C)=C,false
-CC(=O)[N]1C=CN=C1,false
-OC(=O)C2=NC1=C(C=CC=C1C(=C2)O)O,false
-ON=CC=NO,false
-N#CCCC#N,false
-NC1=CC=C(C=C1)S(O)(=O)=O,false
-OC2=C1C=C(C(OC1=CC=C2)=O)C4CCC3=C(C=CC=C3)C4,false
-CC1=CC(=O)OC2=C1C=CC(=C2)N,false
-CC(=O)NC1=C(C3=C(C=C1)C2=CC=CC=C2C3)O,false
-CC(O)CN(CCN(CC(C)O)CC(C)O)CC(C)O,false
-CCCCOCCOCCOCC2=C(C=C1OCOC1=C2)CCC,false
-CC(=O)OC1=CC=C(C=C1)CO,false
-CO,false
-COCCOCCOC,false
-CCC(=O)C(C)=O,false
-CC1(C)CC(C(N)=O)C(C)(C)N1O,false
-CC1=C(C=CC(=C1)Cl)OCCCC(O)=O,false
-O=C1OC(=O)C=C1,false
-CCCCC(CC)CN,false
-CC(C)C1=CC3=C(C=C1)OC2=C(C=C(C(=N2)N)C(O)=O)C3=O,false
-FC(F)(F)C1=CC=C(C=C1)Cl,false
-CC1=NN=C(S1)NS(=O)(=O)C2=CC=C(C=C2)N,false
-CCN(CC)S(=O)(=O)C1=CC=C(C=C1)NC(C)=O,false
-OC1=CC2=C(C=C1)OCO2,false
-CCC(C)C(C)CO,false
-OC1(O)C(=O)NC(=O)NC1=O,false
-NC(CC(O)=O)C(O)=O,false
-CC(C)OC(=O)C(C)=C,false
-COC1=C(C=CC(=C1)C=C)O,false
-CCCCCCCCCCC,false
-CC(=O)OC1=C(C=CC=C1)C(O)=O,false
-CCCCOC(=O)C1=C(C=CC=C1)N,false
-CC3=C(C2=C1C=CC=CC1=CC=C2C=C3)C,false
-NC(=O)C1=CN=CC=C1,false
-CC2(C)C3CCC1(CO1)C2C3,false
-BrC1=CC=CC=C1,false
-CCCCCCCCCCCCCC(O)=O,false
-NC(C#N)C(=N)C#N,false
-ClC2=NC1=CC=CC=C1C=C2,false
-OC1=CC(=C(C=C1)N=NC2=CC=C(C=C2)[N+]([O-])=O)O,false
-O=C4C=CC3=C2C=CC1=CC=CC=C1C2=CC=C3C4=O,false
-CC1=CC=C(C=C1)C(=O)C2=CC(=C(C(=C2)O)O)[N+]([O-])=O,false
-CN(C)C1=CC=C(C=C1)C4CC2(C)C(CCC2(O)C=CCO)C5CC=C3CC(=O)CCC3=C45,false
-CCCC(C1=C(C=C(C(=C1)C(C)(C)C)O)C)C2=C(C=C(C(=C2)C(C)(C)C)O)C,false
-CN(C)CCO,false
-OC1=C(C=C(C=C1)Cl)Cl,false
-OC(=O)C2=C1N=CC=CC1=CC=C2,false
-C1=CC=NC=C1,false
-ON=CC1=NC=CC=C1,false
-OCCOC1=C(C=C(C(=C1)Cl)Cl)Cl,false
-OCCO,false
-OS(=O)(=O)C1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,false
-OC1=C(C=C(C=C1)[N+]([O-])=O)[N+]([O-])=O,false
-CCN(CC)C(=O)CC1=CC=CC=C1,false
-OC1COC(O)(CN(CC(O)=O)N=O)C(O)C1O,false
-C[N+]1=CC=C(C=C1)C2=CC=[N+](C=C2)C,false
-COC4=C1C5=C(C(OC1=C3C2CCOC2OC3=C4)=O)C(OCC5)=O,false
-CC(C)CCCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCCC(C)C,false
-CC(=O)OCC1=CC=CC=C1,false
-OC2=CC=C1[NH]C=CC1=C2,false
-CC(Br)Br,false
-COC(=O)C1=C(C)NC(=C(C1C2=C(C(=CC=C2)Cl)Cl)C(=O)OC(C)C)COC(N)=O,false
-OCC(CO)(CO)CO,false
-OC1=CC(=CC(=C1)Cl)Cl,false
-CC1=C(C=C(C=C1)N)Cl,false
-CCCCCCCCCCOC(=O)C(C)=C,false
-COC1=CC(=CC(=C1)OC2=C(C=C(C=C2)Cl)Cl)[N+]([O-])=O,false
-ClC1=CC=C(C=C1)NC(=O)NC2=CC(=C(C=C2)Cl)Cl,false
-C=CC1CCC=CC1,false
-NCCC1=C[NH]C2=CC=C(O)C=C12,false
-COC1=C(C=CC(=C1)C=O)O,false
-COP(=O)(OC)OC(=CCl)C1=C(C=C(C(=C1)Cl)Cl)Cl,false
-CC(C=O)=CC1=CC=CC=C1,false
-CC(C)C1=CC3=C(C=C1)C2=CC=CC(=C2C=C3)C,false
-OC1=CC=C(C=C1)C2(CCCCC2)C3=CC=C(C=C3)O,false
-COC(=CC(O)=O)C(=O)C(C)=C,false
-C=CC(=O)OCCOCCOC(=O)C=C,false
-C=CC(=O)OCCCCCCOC(=O)C=C,false
-OCC=O,false
-CN(C)C=O,false
-COC2=C1OC3=C(C(C1=C(C=C2)O)=O)C(=CC5=C3C4CCOC4O5)OC,false
-CC(C)CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCCC(C)C,false
-C1COCCOCCOCCOCCOCCO1,false
-CC1CCCC(C)N1CCCC(O)(C2=CC=CC=C2)C3=NC=CC=C3,false
-CC(C)COC(=O)C1=C(C=CC=C1)C(=O)OCC(C)C,false
-CCCCCCCCCCCCCl,false
-CNC(=O)N(C1=CC=CC=C1)C2=CC=CC=C2,false
-CCCCCC(O)=O,false
-CCCCC(CC)COP(OCC(CC)CCCC)OCC(CC)CCCC,false
-OC2=NC1=CC=CC=C1C=C2,false
-OC1=C(C(=C(C=C1)Cl)Cl)Cl,false
-OCC1=CC=C(C=C1)Br,false
-CC1=NC=CC=C1,false
-COC1=C(C2=C(C=C1O)OC(=CC2=O)C3=CC=C(C=C3)O)O,false
-CC(C)NCC(O)COC1=C(C=CC=C1)OCC=C,false
-CCCCCC1=CC(=CC(=C1)O)O,false
-C=CC(=O)OCCCCCOC(=O)C=C,false
-CC(=O)C(C)=NO,false
-CCC1(CC(O)=O)OCCC2=C1[N](C3=CC=CC=C23)C,false
-COC3=C1C=COC1=NC4=C(O)C2=C(OCO2)C(=C34)CC=C(C)C,false
-COC3=C(C=C2C16CCN7CC5=CCOC4C(C1N(C2=C3)C(C4)=O)C5CC67)OC,false
-OC(=O)COC2=CC1=CC=CC=C1C=C2,false
-CCC=CC#N,false
-CC1=C(C=CC(=C1C)N)N,false
-OC1=C2C=CC3=CC=CC4=CC=C(C=N1)C2=C34,false
-CNCC1=CC=C(O1)CSCCNC(NS(C)(=O)=O)=NCC(O)C2=CC=C(C=C2)O,false
-CNNCC1=CC=C(C=C1)C(=O)NC(C)C,false
-CC1=CC=C(C=C1)N(CCCl)CCCl,false
-CN(C)S(=O)(=O)N(SC(F)(Cl)Cl)C1=CC=CC=C1,false
-OCCNCCO,false
-CC(C)(C)C1CCC2(CC1)CO2,false
-COC(F)(F)C(Cl)Cl,false
-OC2=C1N=CC=CC1=C(C=C2Cl)Cl,false
-CCCCC=O,false
-CC(=O)C=CC1=C(C)CCCC1(C)C,false
-CC1=C(C=C(C=C1)S(O)(=O)=O)C,false
-CCC2=C1OC(=CC1=CC=C2)C(O)CNC(C)(C)C,false
-CC(C)=CCCC(C)(OC(=O)C1=C(C=CC=C1)N)C=C,false
-CC4=C3N=C2C1=CC=CC=C1C=CC2=CC3=CC=C4,false
-ClCC1=C3C=CC4=CC=CC5=CC=C(C2=CC=CC=C12)C3=C45,false
-OC1=CC=C(C=C1)C3=COC2=C(C=CC(=C2)O)C3=O,false
-O=C1NC(=O)C(N1)(C2=CC=CC=C2)C3=CC=CC=C3,false
-CCCCCCOC(=O)C1=C(C=CC=C1)C(=O)OCCCCCC,false
-[NH]1C=CC=C1,false
-CCC1=C(C(=CC(=C1)N)C)CC2=C(C=C(C=C2C)N)CC,false
-OCC#N,false
-CC(=O)CC(C)=O,false
-OC(=O)CC1=C[NH]C2=CC=CC=C12,false
-O=C2CN(CCCN1CC(=O)NC(=O)C1)CC(=O)N2,false
-CC(C)C2=CC=C(C)C1=C(C=C(C)C1=C2)S(O)(=O)=O,false
-CC(=O)C1=C(C(=C(C(=C1C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O)C,false
-ClCC1(CCl)C2CC(Cl)(Cl)C1(CCl)C(Cl)C2Cl,false
-ClC1=C(C(=C(C=C1)Cl)Cl)Cl,false
-COC1=C(C=CC=C1)O,false
-FC(F)(F)C1=CC=C(C=C1)CCl,false
-OC(=O)CCC1=CC=CC=C1,false
-COC4=CC2C3CC1=C(C(=C(C=C1)OC)O)C2(CCN3C)CC4=O,false
-OC2=C(C1=CC=CC=C1C=C2)N=O,false
-COC3=CC=C2C1=C(C(=NCC1)C)[NH]C2=C3,false
-CNC1=C(C=CC=C1)C(=O)OC,false
-OC(=O)CCCOC1=C(C=C(C=C1)Cl)Cl,false
-ClC(Cl)C(C1=CC=C(C=C1)Cl)C2=C(C=CC=C2)Cl,false
-CCCCC(CC)CO,false
-CC(C)=CCCC(C)(O)C=C,false
-CC(C)(C)C(Br)C(=O)NC1=CC=CC=C1,false
-OS(=O)(=O)C1=CC=C(C=C1)[N+]([O-])=O,false
-CS(=O)(=O)C1=CC=C(C=C1)Cl,false
-CCC2=C1[NH]C3=C(C1=CC=C2)CCOC3(CC)CC(O)=O,false
-CCCCOC(=O)CC(CC(=O)OCCCC)(OC(C)=O)C(=O)OCCCC,false
-CC(=O)C1(CCNCC1)C2=CC=CC=C2,false
-CCN(CC)C(=S)SSC(=S)N(CC)CC,false
-NC1=CC=C(C=C1)C(O)=O,false
-CC(C(O)=O)C1=CC(=CC=C1)C(=O)C2=CC=CC=C2,false
-ClC1=C(C=CC=C1)C=C,false
-CN(C)C(=N)N(C)C,false
-CC4=C(COC(=O)C1N3C(SC1(C)C)C(NC(=O)C(N)C2=CC=CC=C2)C3=O)OC(=O)O4,false
-N#CSCSC#N,false
-OC(=O)C1=C(C=CC(=C1)Cl)Cl,false
-CCCCC(CC)COC(=O)C=C,false
-OC(=O)CCCCC(O)=O,false
-BrCC(=O)C1=CC=C(C=C1)Br,false
-C2CCC1=C(C=CC=C1)C2,false
-CCC(C1=CC=CC=C1)=C(C2=CC=CC=C2)C3=CC=C(C=C3)OCCN(C)C,false
-CC(=C)C1CCC(=CC1)C=O,false
-OC(C(F)(F)F)C(F)(F)F,false
-CC(C)CC=O,false
-ClC1C=CC2C1C3(Cl)C(=C(Cl)C2(Cl)C3(Cl)Cl)Cl,false
-CC1(CO1)C=C,false
-CC(C)CCC(C)NC1=CC=C(C=C1)NC(C)CCC(C)C,false
-COC(C)=O,false
-CC(C)(C)N,false
-CNC,false
-CC1=CC(O)C2CC1C2(C)C,false
-CN(C)C(=O)NC1=CC=C(C=C1)Cl,false
-CCOP(=O)(OCC)OCC,false
-CC(OC1=C(C=C(C(=C1)Cl)Cl)Cl)C(O)=O,false
-NC1=NC(=O)N(C=C1)C2OC(COP(O)(O)=O)C(O)C2O,false
-CC(C)O,false
-CC1=CC(=O)CC(C)(C)C1,false
-CCCN(CCC)S(=O)(=O)C1=CC=C(C=C1)C(O)=O,false
-OC(=O)C1=C(C=CC=C1Cl)Cl,false
-CC1=CC=C(C=C1)C,false
-CCCO,false
-S1C=CC=C1,false
-O=S1(=O)CC=CC1,false
-NC1=C(C(=CC(=C1)[N+]([O-])=O)S(O)(=O)=O)O,false
-CC(=O)OC2C1OC(=O)C(OC(C)=O)C1OC2=O,false
-ClCC1=CC=C(C=C1)C#N,false
-OC(=O)CN(CCN(CC(O)=O)CC(O)=O)CC(O)=O,false
-CCCCCCCCC=C,false
-ClC2=C(C=C1OC3=C(OC1=C2)C=C(Cl)C(=C3)Cl)Cl,false
-OC1=CC=C(C=C1)C2(NC(=O)NC2=O)C3=CC=CC=C3,false
-C1=CC=C(C=C1)C2=C(C=CC=C2)C3=CC=CC=C3,false
-CC1=CC=C(C=C1)CCl,false
-O=C([N]1C=CN=C1)[N]2C=CN=C2,false
-CC(=O)CC(=O)NC1=CC=CC=C1,false
-[O-][N+](=O)C1=CC=C(C=C1)[N]2N=C(N=[N+]2C3=CC=C(C=C3)I)C4=CC=CC=C4,false
-CCC(C)C1=C(C=CC=C1)O,false
-C1CN2CCN1CC2,false
-COP(=O)(OC)OC(=CBr)C1=C(C=C(C=C1)Cl)Cl,false
-CC(O)COCC(C)O,false
-COP(=S)(OC)OC1=CC(=C(C=C1)[N+]([O-])=O)C,false
-CCCCCCCCCCCC(O)=O,false
-NC(=O)C1=CC=CC=C1,false
-CC(=O)CCl,false
-NC(CC1=CC=C(C=C1)F)C(O)=O,false
-COC1=CC=C(C=C1)C=CC(=O)C2=CC=CC=C2,false
-ClC2=C1C=CC=CC1=CN=N2,false
-CCC1=CC=CC=C1,false
-COC1=C(C=CC(=C1)C=CC(=O)CC(=O)C=CC2=CC(=C(C=C2)O)OC)O,false
-CC(=O)NNC(=O)C1=NC=CC=C1,false
-COC2=C(C=C1[NH]C=C(C1=C2)CCNC(C)=O)O,false
-BrCC(Br)C1CCC(Br)C(Br)C1,false
-NCCC#N,false
-OC1=CC=C(C=C1)CCC(=O)C2=C(C=C(C=C2O)O)O,false
-CC(Cl)Cl,false
-OC2=C1C=CC=CC1=NC3=CC=CC=C23,false
-OC4C(O)C3=C(C=C2C1=CC=CC=C1C=CC2=N3)C5=C4C=CC=C5,false
-CCC1=NC=CC(=C1)C(N)=S,false
-CCCC,false
-OC(=O)C=CC1=CC=C(C=C1)Cl,false
-CCCCN,false
-CCC(C)(C)C1=CC(=C(C(=C1)N3NC2=C(C=CC=C2)N3)O)C(C)(C)CC,false
-NC1=CC=C(C=C1)O,false
-OC1CCCCC1,false
-[O-][N+](=O)C1=CC(=CC=C1)C=CC(=O)C2=CC=CC=C2,false
-COP(C)(=O)OC,false
-CCCCCCCCCCCCO,false
-ClC1=C(C2=C(C(=C1Cl)Cl)C(=O)OC2=O)Cl,false
-S=C1SC=C(S1)C2=CC=CC=C2,false
-OC(=O)C1=C(N=CC=C1)NC2=CC(=CC=C2)C(F)(F)F,false
-CC1CCCC1,false
-OC2CC13OC1(C2)C=CC=C3,false
-CC(C)(C)OC(=O)C=C,false
-CC1=CSC=C1,false
-COP(=O)(OC)C(OC(=O)CCl)C(Cl)(Cl)Cl,false
-OCC1=CC=C(C=C1)Cl,false
-ClC1=C(Cl)C(=O)C(Cl)(Cl)C1=O,false
-CCCCCCCCOP(=O)(OCCCCCCCC)OCCCCCCCC,false
-CCC1=CC=CO1,false
-OC4=C2C1=CC=CC=C1C=CC2=C3C=CC=CC3=C4,false
-CC1=C(C=CC(=C1)S(O)(=O)=O)N,false
-CCN(CC)C(=O)C1=CC(=CC=C1)C,false
-CC(C(O)=O)C1=CC3=C(C=C1)C2=CC(=CC=C2[NH]3)Cl,false
-OCC(O)C(O)C(OC1OC(CO)C(O)C(O)C1O)C(O)CO,false
-CCN,false
-NS(=O)(=O)C2=C1N=CC=CC1=CC=C2,false
-CC1=C(C(=CC=C1)NC2=NC(=NC(=C2)Cl)SCC(O)=O)C,false
-CC1=C(C=C(C(=C1)C)C)C,false
-CCCCOC(=O)CCCCCCCCC(=O)OCCCC,false
-CCCCCCC1=C(C=C(C=C1)O)O,false
-CC(O)CN(CC(C)O)CC(C)O,false
-OC(=O)C2=N[N](CC1=C(C=C(C=C1)Cl)Cl)C3=CC=CC=C23,false
-OC1=C(C=C(C=C1Br)Br)Br,false
-NC2=NC=C1N=C[NH]C1=N2,false
-N(C1=CC=CC=C1)C2=CC=CC=C2,false
-CCOC(=O)C(C)(C)OC1=CC=C(C=C1)Cl,false
-OCCCCO,false
-CCCCOP(=O)(OCCCC)OC1=CC=CC=C1,false
-NC2=C1C(C4=C(C(C1=C(C=C2S(O)(=O)=O)NC3CCCCC3)=O)C=CC=C4)=O,false
-NC(=O)CBr,false
-[O-][N+](=NC1=CC(=C(C=C1)Cl)Cl)C2=CC(=C(C=C2)Cl)Cl,false
-FC(F)C(F)(F)F,false
-CCC1=CC(=C(C(=C1)C(C)(C)C)O)C(C)(C)C,false
-O=C1OC4=C3C2=C1C=CC=C2C=CC3=CC=C4,false
-NC(=O)CI,false
-CC1=C(SSC1=S)C2=NC=CN=C2,false
-NC1=C(C(=C(C=C1)Cl)Cl)Cl,false
-CC1=C(C(=C(C(=C1[N+]([O-])=O)C)[N+]([O-])=O)C(C)(C)C)[N+]([O-])=O,false
-O=C2C1=C(C=CC=C1)CCC3=C2C=CC=C3,false
-CC1=CC(=C(C=C1)C)C,false
-ClC(=O)OCC1=CC=CC=C1,false
-OC2=C1C(C5=C(OC1=CC=C2)C3=C(OC4OCCC34)C=C5O)=O,false
-OC(=O)CC(Cl)C(O)=O,false
-CC1=CCC(=O)O1,false
-ClC2=C1C=CC=CC1=C(N=N2)Cl,false
-OCC4=C2C=CC=C3C1=CC=CC=C1C(=C23)C=C4,false
-CC1=C(C(=CC(=C1)[N+]([O-])=O)[N+]([O-])=O)C,false
-C1COCCO1,false
-CC1=CC=C(O1)C,false
-OCC1=CC=C(C=C1)O,false
-O[N+]([O-])=C2C1=C(C=CC=C1)C(=O)C3=C2C=CC=C3,false
-CC(=O)OC3CC2C1(C)CCCC(C)(C)C1CCC2(C)C4(O)CC(=C(C=O)C34C)C=O,false
-COC2=C(C(=C1C(OCC1=C2C)=O)O)CC=C(C)CCC(O)=O,false
-CC(C)C(=O)NC1=CC=CC=C1,false
-OC(=O)CC1=CC=C(C=C1)Cl,false
-C2=CC1=CC=NC=C1C=C2,false
-OC1=C(C4=C2C(=C1)C(=O)OC3=C2C(=CC(=C3O)O)C(=O)O4)O,false
-OC1=C(C(=CC(=C1Cl)Cl)Cl)Cl,false
-CC1=CC=CC=C1,false
-ClC1=C(C(=CC=C1)Cl)C#N,false
-CC(C)OC1=CC2=C(C=C1)C(C(=CO2)C3=CC=CC=C3)=O,false
-[O-][N+]2=C1C=CC=CC1=CC=C2,false
-CCN(CC)CC1=C(C=CC(=C1)NC3=C2C=CC(=CC2=NC=C3)Cl)O,false
-C1CCC(CC1)NSC3=NC2=CC=CC=C2S3,false
-CCN(N=O)C1=CC=CC=C1,false
-O=C1CC(=O)C1=O,false
-CC(C)(C1=CC=C(C=C1)O)C2=CC=C(C=C2)O,false
-CC(=O)NC1=CC=C(C=C1)C(=O)C=CC2=CC=CC=C2,false
-CC(=O)OO,false
-CC(=O)C1=CC=C(C=C1)S(=O)(=O)NC(=O)NC2CCCCC2,false
-CC(C)(C)O,false
-CC(C)(OC1=CC=C(C=C1)C2CC2(Cl)Cl)C(O)=O,false
-CC1=CC(=CC=C1)[N+]([O-])=O,false
-CCC=[N+](O)[O-],false
-C1OCOCO1,false
-CCC3=C2C1=CC=CC=C1C=CC2=C(C4=CC=CC=C34)C,false
-CCOC(C)=O,false
-CCOC1=CC=C(C=C1)NC(N)=O,false
-CC(C)=O,false
-CC1=CC=C(C=C1)Cl,false
-CCCCC(CC)COCCC#N,false
-ClCC1=CC=C(C=C1)Cl,false
-OC1=C(C=CC=C1)C(=O)OC2=CC=CC=C2,false
-ClC(=C)C#N,false
-CCOC(=O)OC(=O)OCC,false
-CC(CCN(C)C)N(C)C,false
-CC1=C(C)C(=O)C(=C(C)C1=O)C,false
-C=CCN1C(=O)N(CC=C)C(=O)N(CC=C)C1=O,false
-OC(=O)C1CC2=C(CN1)[NH]C3=CC=CC=C23,false
-CCCCCN,false
-[O-][N+](=O)OCC(CO[N+]([O-])=O)(CO[N+]([O-])=O)CO[N+]([O-])=O,false
-COC1=C(C5=C(C(=C1)O)C(=O)C2=C(C3=C(C=C2OC)OC4OCCC34)O5)OC,false
-OC(=O)C1=C(C=CC=C1)Cl,false
-O=C1CCCCC1,false
-CC1=CC=C(C=C1)OP(=O)(OC2=CC(=CC=C2)C)OC3=CC(=CC=C3)C,false
-OC(=O)C1=C(C=CC=C1)NC2=C(C=CC(=C2)Cl)C(O)=O,false
-CCCCCC(N)=O,false
-CCCCCCCCCCCC(=O)OCCS(O)(=O)=O,false
-OC1=C(C=C(C=C1Cl)Cl)SC2=C(C(=CC(=C2)Cl)Cl)O,false
-[O-][N+]4=C2C=CC1=CC=CC=C1C2=CC5=C3C=CC=CC3=CC=C45,false
-ClC1=CC=C(C=C1)S(=O)(=O)C2=C(C=C(C(=C2)Cl)Cl)Cl,false
-CC(OP(C)(Cl)=O)C(C)(C)C,false
-ClC1=CC(=CC(=C1)Cl)N2C(=O)CCC2=O,false
-NCC1=CC(=CC=C1)CN,false
-OC(=O)COC1=C(C(=C(C=C1)C(=O)C2=CC=CS2)Cl)Cl,false
-O=C1C5=C4C3=C2C1=CC=CC2=CC=C3C=CC4=CC=C5,false
-CC1=NC=CN=C1,false
-CCC(O)CN,false
-CC(=O)C3C(=O)C=C2OC1=C(C(=C(C(=C1C(C)=O)O)C)O)C2(C)C3=O,false
-O=C1CSC(=S)N1,false
-FC2=CC1=CC=CC=C1N=C2,false
-OC1=CC=C(C=C1)C3=CC(=O)C2=C(C=C(C=C2O)O)O3,false
-OC(=O)C1=CC(=C(C(=C1)O)O)O,false
-C=COC(=O)C=C,false
-CC(CCl)OP(=O)(OC(C)CCl)OC(C)CCl,false
-CC1(C)C2CCC1(C)C(=O)C2=O,false
-NC1=CC=C(C=C1)C(=O)OCCCOC(=O)C2=CC=C(C=C2)N,false
-COC1=C(C=CC(=C1)C=CC)O,false
-CC(C)CC(NC(=O)COC1=C(C=C(C=C1)Cl)Cl)C(O)=O,false
-OC(=O)C1=CC(=CC(=C1)Cl)Cl,false
-CCCCOC(C)=O,false
-C2CCC1CCCCC1C2,false
-CCC1=CC=C(C=C1)[N+]([O-])=O,false
-CC1=C(C(=C(C(=C1Br)Br)Br)Br)Br,false
-C[N+](C)(C)CC1=CC=CC=C1,false
-CC#N,false
-CC(C)(C)CC(C)(C)C1=CC=C(C=C1)OCCOCC[N+](C)(C)CC2=CC=CC=C2,false
-CCCCCCCCCCCCCCCCCC[N+](C)(C)CC1=CC=CC=C1,false
-CCCCC(CC)COS(O)(=O)=O,false
-OCCN4CCN(CCCN2C1=C(C=CC=C1)SC3=C2C=C(C=C3)C(F)(F)F)CC4,false
-OC(COC2=C1C(C=C(OC1=CC=C2)C(O)=O)=O)COC4=C3C(C=C(OC3=CC=C4)C(O)=O)=O,false
-OC2=C(C1=CC=C(C=C1C=C2)S(O)(=O)=O)N=NC3=CC=CC=C3,false
-OC2=C(C1=C(C=C(C=C1C=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3,false
-CN(C)CCN(CC1=CC=CC=C1)C2=CC=CC=C2,false
-CC(C)C1CCC(C)CC1O,false
-COC(=O)C(C1CCCCN1)C2=CC=CC=C2,false
-CC(CCC1=CC=CC=C1)NCC(O)C2=CC(=C(C=C2)O)C(N)=O,false
-NC2=C1C(=C(C(=CC1=CC(=C2)S(O)(=O)=O)S(O)(=O)=O)N=NC3=CC=CC=C3)O,false
-CC3=C(OC1=C(C=CC=C1C(=O)OCCN2CCCCC2)C3=O)C4=CC=CC=C4,false
-CC(CN2C1=C(C=CC=C1)SC3=C2C=CC=C3)N(C)C,false
-CC(C)CCCC(C)CCCC(C)CCCC2(C)CCC1=C(C(=C(C(=C1C)O)C)C)O2,false
-C[N+](C)(C)CC(O)=O,false
-CON,false
-OC2=C(C1=CC=CC=C1C=C2)N=NC3=CC=C(C=C3)S(O)(=O)=O,false
-CC1=NC(=C(C=N1)C[N+]2=CSC(=C2C)CCO)N,false
-OC1=NC(=NC(=N1)O)O,false
-OC2=C1[N+](=CC=CC1=CC=C2)[O-],false
-OC(=O)C1C(C(O)=O)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,false
-OC2=C1C=CC=CC1=CN=N2,false
-C(NC2=C1[NH]C=NC1=NC=N2)C3=CC=CC=C3,false
-CC=C1CC(C)C(C)(O)C(=O)OCC2=CCN3CCC(OC1=O)C23,false
-NC2=NC1=N[NH]N=C1C(=N2)O,false
-CCCCCCCCCCCCCCCC(=O)OCC(O)C1=C(C(=C(O1)O)O)O,false
-CCCCCC(CC)OC(=O)C1=CC(=CC=C1)C(=O)OC(CC)CCCCC,false
-OC2=C1C=CC=CC1=C(N=N2)O,false
-SC2=NC1=CC=CC=C1S2,false
-OCC(O)C(O)CO,false
-CC2(C)C3CC1OC1(C)C2C3,false
-CC(=O)C1=C(O)[N]5C(=C1O)C2C(CC4=C3C2=C[NH]C3=CC=C4)C5(C)C,false
-CC(C)CC(=O)OC4CC1(OC(C)=O)C(OC2C(O)C(OC(C)=O)C1(C)C23CO3)C=C4C,false
-CC(=O)OCC12CCC(=CC1OC3C(O)C(OC(C)=O)C2(C)C34CO4)C,false
-CC4CC3OC1C(O)C(OC(C)=O)C(C)(C12CO2)C3(CO)C(=O)C4=O,false
-CC4CC3OC1C(O)C(O)C(C)(C12CO2)C3(CO)C(=O)C4=O,false
-NC1=NN=C(S1)S,false
-ClCC1C(CCl)C2(Cl)C(=C(Cl)C1(Cl)C2(Cl)Cl)Cl,false
-ClC1=CC3=C(C=C1)N2C=NNC2=CN=C3C4=CC=CC=C4,false
-C=CC1CC2CC1C=C2,false
-ClC3=C(Cl)C4(Cl)C2C1CC(C=C1)C2C3(Cl)C4(Cl)Cl,false
-CC1C(=O)OC2CCN3CC=C(COC(=O)C(C)(O)C1(C)O)C23,false
-OC2CC(O)(CC(OC(=O)C=CC1=CC(=C(C=C1)O)O)C2O)C(O)=O,false
-CN(C=NC=NC1=C(C=C(C=C1)C)C)C2=C(C=C(C=C2)C)C,false
-NC3=NC(=C2N=C(O)[N](C1OC(CO)C(O)C1O)C2=N3)O,false
-CC1(CO)C(O)CCC2(C)C1CCC3CC4CC23CCC4(O)CO,false
-CNC(=N)N[N+]([O-])=O,false
-CC(=O)OC4(CCC5C3C=C(Cl)C2=CC(=O)C1CC1C2(C)C3CCC45C)C(C)=O,false
-CC12CCC(CC1)C(C)(C)O2,false
-CC12CCCC(C)(C1CCC34CC(=C)C(O)(CCC23)C4)C(O)=O,false
-CNC3=C1CC(=O)C(=CC=C1C2=C(C(=C(C=C2CC3)OC)OC)OC)OC,false
-CC34CC(O)C1C(CCC2=CC(=O)C=CC12C)C3CCC4(O)C(O)C=O,false
-CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CC(O)C4O,false
-CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4O,false
-CC2=CN(C1CC(O)C(CO)O1)C(=O)NC2=O,false
-OC1=NC(=C(C=N1)F)O,false
-CC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C#C,false
-CC1CCC6(OC1)OC5CC4C3CC=C2CC(O)CCC2(C)C3CCC4(C)C5C6C,false
-CC4CC3OC1C(O)CC(C)(C12CO2)C3(CO)C(=O)C4=O,false
-OC3=C(C=C2C1C4=C(OCC1(CC2=C3)O)C(=C(O)C=C4)O)O,false
-COC1=C(C(=CC(=C1)C3C2C(COC2=O)C(O)C5=C3C=C4OCOC4=C5)OC)OC,false
-CC2OC=C1C(=O)C(C(O)=O)C(=O)C(=C1C2C)C,false
-NC2=C1C(=NN=C(C1=CC=C2)O)O,false
-CC34CCC1C(CC=C2CC(O)CCC12C)C3CCC4=O,false
-CN1CCCC1C2=CN=CC=C2,false
-OCC1OC(CC1O)N2C=C(I)C(=O)NC2=O,false
-CC(C)C12CC1C(C)C(=O)C2,false
-CC(N)(CC1=CC(=C(C=C1)O)O)C(O)=O,false
-CC1=NC(=NC(=C1)O)S,false
-CC34CCC1C(CCC2=C1C=CC(=C2)O)C3CCC4(O)C#C,false
-CC(=O)C3CCC4C2CC=C1CC(=O)CCC1(C)C2CCC34C,false
-NC2=C1N=C[N](C1=NC=N2)C3OC(CO)C(O)C3O,false
-OC(=O)CCCCC1SCC2NC(=O)NC12,false
-NS(=O)(=O)C1=C(C=C2C(=C1)S(NC=N2)(=O)=O)Cl,false
-SC2=NC1=CC=CC=C1[NH]2,false
-OCC1OC(CC1O)N2C=C(Br)C(=O)NC2=O,false
-NC2=NC1=NC=C(N=C1C(=N2)O)CNC3=CC=C(C=C3)C(=O)NC(CCC(O)=O)C(O)=O,false
-CC1=C(N=C(N=C1)S)O,false
-CC=CC(=O)OC2CC3OC1=CC(C)C(=O)CC1(C)C2(C)C34CO4,false
-CC(C)CCCC(C)C1CCC2C(CCCC12C)=CC=C3CC(O)CCC3=C,false
-NC(CC1=CC=CC=C1)C(O)=O,false
-CC34CCC1C(CC=C2CC(=O)CCC12)C3CCC4(O)C#C,false
-CC(=O)OC3(CCC4C2CC(=C1CC(=O)CCC1(C)C2CCC34C)C)C(C)=O,false
-CC14C(O)C=CC5(OC1=O)C2CCC3(O)CC2(CC3=C)C(C45)C(O)=O,false
-C2C=CC3C1CC(C=C1)C23,false
-CC1=CCC2CC1C2(C)C,false
-CC6CCC5C(C)C3C(CC4C2CC=C1CC(O)CCC1(C)C2CCC34C)N5C6,false
-CC(CCC(O)=O)C3CCC4C2C(O)CC1CC(O)CCC1(C)C2CC(O)C34C,false
-[O-][N+](=O)OC1COC2C(COC12)O[N+]([O-])=O,false
-CC2=CCCC(=C)C1CC(C)(C)C1CC2,false
-CC1=C(N=C(N=N1)O)O,false
-OCC1OC(CC1O)N2C=CC(=O)NC2=O,false
-NC2=C1N=C[N](C1=NC=N2)C3CC(O)C(CO)O3,false
-CCCC(=O)OCC,false
-CC(=O)C1=CC=NC=C1,false
-ClC1=NC(=CC=C1)Cl,false
-CC(O)CO,false
-CC(C)CO,false
-CC1CCC(=O)C1=O,false
-CC1=CC(=O)OC2=C1C=CC(=C2)O,false
-CCN(CC)C1=CC=CC=C1,false
-CCCCOC(=O)C(C)=C,false
-CN(C)C(=O)OC1=C[N+](=CC=C1)C,false
-CCC(CO)NCCNC(CC)CO,false
-CC12CCC(CC1O2)C=C,false
-NC2=C1C=CC=CC1=CC=C2O,false
-CN1CCC(C1)CN3C2=C(C=CC=C2)SC4=C3C=CC=C4,false
-CCCCCC(=O)OC3(CCC4C2CCC1=C(CCC(=O)C1)C2CCC34C)C(C)=O,false
-O=C1NS(=O)(=O)C2=C1C=CC=C2,false
-OC2=C(C=C1C=C(C=CC1=C2)S(O)(=O)=O)S(O)(=O)=O,false
-NC1=CC=CC=C1,false
-COC1=C(C4=C(C=C1Cl)C3(C(C25SSC(C(N2C3N4C)=O)(C)N(C5=O)C)O)O)OC,false
-CCCCCCCCCCCCOS(O)(=O)=O,false
-OC(=O)CC1=C(C=CC=C1)NC2=C(C=CC=C2Cl)Cl,false
-NC2=C1N=C[N](C1=NC(=N2)O)C3OC(CO)C(O)C3O,false
-COC1=C(C(=CC(=C1)CC2NCCC3=C2C=C(C(=C3)O)O)OC)OC,false
-OC(=O)C2=NN(C1=CC=C(C=C1)S(O)(=O)=O)C(=O)C2N=NC3=CC=C(C=C3)S(O)(=O)=O,false
-CN(C)C4C3C(O)C2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,false
-CCNC1=NC(=NC(=N1)O)NC(C)C,false
-ON1CN(Cl)CN(Cl)C1,false
-C[N+]1(C)CCOCC1,false
-ClC1=CC=C(C=C1)COC(C[N]2C=CN=C2)C3=C(C=C(C=C3)Cl)Cl,false
-O[N]1N=NC2=CC=CC=C12,false
-CN2CCN=C(C1=CC=CC=C1)C3=C2C=CC(=C3)Cl,false
-CC(CCC(O)=O)C3CCC4C2CCC1CC(=O)CCC1(C)C2CC(=O)C34C,false
-NC(CSCC1=CC=CC=C1)C(O)=O,false
-CCNC(=O)CCC(N)C(O)=O,false
-CCC3CN2CCC1=C(C=C(C(=C1)OC)OC)C2CC3CC4NCCC5=C4C=C(C(=C5)OC)OC,false
-NC1=CC(=C(C=C1)Cl)C(F)(F)F,false
-CCN(CC)CCCN(C2CC1=C(C=CC=C1)C2)C3=CC=CC=C3,false
-OC1C(O)C(OC1COP(O)(O)=O)N2C=CC(=O)NC2=O,false
-NCCC1=C[NH]C2=CC=CC=C12,false
-CCCC(=O)NC1=CC(=C(C=C1)OCC(O)CNC(C)C)C(C)=O,false
-FC1=CC=C(C=C1)CCl,false
-CCCC(=O)NC2=C1N=C[N](C1=NC=N2)C4OC3COP(O)(=O)OC3C4OC(=O)CCC,false
-FC1=CN=CC=C1,false
-CCCCCCC(=O)OC3(CCC4C2CCC1=CC(=O)CCC1C2CCC34C)C#C,false
-OCC1OC(C(O)C1O)[N]3C=NC4=C(NCC2=CC=C(C=C2)[N+]([O-])=O)N=CN=C34,false
-OCC1OC(CC1O)N2C=C(C=O)C(=O)NC2=O,false
-OC1C(O)C(OC1COP(O)(O)=O)[N]2C=NC3=C(O)N=CN=C23,false
-OC2=C1C=CC=CC1=NC=N2,false
-CCC5=C(CC1NCCC2=C1C=C(C(=C2)OC)OC)CC3N(CCC4=C3C=C(C(=C4)OC)OC)C5,false
-CC(C)C3=CC2=CCC1C(C)(CCCC1(C)C(O)=O)C2CC3,false
-OC1=CC2=C(C=C1)C4(C3=C(O2)C=C(O)C=C3)OC(=O)C5=C4C=CC=C5,false
-OC2=CC(=C1C=C(O)C(=[O+]C1=C2)C3=CC(=C(C(=C3)O)O)O)O,false
-CCCCCCC(O)CC=CCCCCCCCC(O)=O,false
-C[N+]1=CC(=CC=C1)C(O)=O,false
-OC(=O)C1=C(C=CC=C1)O,false
-NC2=NC1=CC=C(C=C1[NH]2)Cl,false
-CCCOC(C(=O)OC1CCN(C)CC1)(C2=CC=CC=C2)C3=CC=CC=C3,false
-NC3=NC(=C2N=C[N](C1OC(COP(O)(O)=O)C(O)C1O)C2=N3)O,false
-CNC(=O)OC1=CC2=C(C=C1)N(C)C3N(C)CCC23C,false
-CC(C)CCCC(C)C3CCC4C2CC=C1CCCCC1(C)C2CCC34C,false
-CC4CC2(C)C(CCC3C1CCC(O)C1(C)CCC23)CC4=O,false
-CC1=C(C(=C(C=N1)CO)CO)O,false
-CC1=CC(=C(C=C1)N=NC3=C2C=CC=CC2=CC(=C3O)C(O)=O)S(O)(=O)=O,false
-CN,false
-CC1=C(C(=CC=C1)OCC(O)CNC(C)(C)C)C,false
-CN[N+]([O-])=O,false
-ClC4=C(Cl)C5(Cl)C3C1CC(C2OC12)C3C4(Cl)C5(Cl)Cl,false
-CC(C)CC(NC(=O)C(CC1=CC=CC=C1)NC(=O)CNC(=O)CN)C(O)=O,false
-CC1=NCCC2=C1[NH]C3=CC(=CC=C23)O,false
-CC(C)CCCC(C)C3CCC4C2CC=C1CC(CCC1(C)C2CCC34C)OC(C)=O,false
-CNCC(O)C1=CC(=CC=C1)O,false
-NC1=NC=N[NH]1,false
-NC1=NC(=O)N(C=C1I)C2CC(O)C(CO)O2,false
-NC(CC1=CC(=C(C=C1)O)[N+]([O-])=O)C(O)=O,false
-COC1=CC=C(C=C1)CN(CCN(C)C)C2=NC=CC=N2,false
-CN(C)C4C3CC2C(C(=O)C1=C(C=CC=C1O)C2(C)O)C(=O)C3(O)C(=O)C(C(N)=O)C4=O,false
-COC1=CC=C2C(=CC1=O)C(CCC3=C2C(=C(C(=C3)OC)OC)OC)NC(C)=O,false
-CN1C2CC(CC1C3OC23)OC(=O)C(CO)C4=CC=CC=C4,false
-CNC(C=[N+](O)[O-])=NCCSCC1=CC=C(O1)CN(C)C,false
-OCC1OC(C(O)C1O)N2C=CC(=N)NC2=O,false
-OC1=NC(=NC=N1)O,false
-CC2(C)C1CCC(C1)C2=C,false
-CCCCCCCCCCCCOCCOCCOCCOCCOCCOCCOCCO,false
-OCC1=CC(C(O)C1O)N2C=CC(=N)NC2=O,false
-O=C1NC(=S)NC(=O)C1C(=O)NC2=CC=CC=C2,false
diff --git a/features/data/kazius.rdf b/features/data/kazius.rdf
deleted file mode 100644
index a22adb6..0000000
--- a/features/data/kazius.rdf
+++ /dev/null
@@ -1,12207 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H18N2O/c1-25-19-14-12-18(13-15-19)22-23-20(16-8-4-2-5-9-16)21(24-22)17-10-6-3-7-11-17/h2-15H,1H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O2/c1-7-8(10-5-12)3-2-4-9(7)11-6-13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2O2/c13-6-5-8-7-12(11-14)10-4-2-1-3-9(8)10/h1-4,7,13H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7BrN2O3S/c12-8-2-1-3-9(5-8)13-11(15)7-4-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O/c1-9(8-10)7-5-3-2-4-6-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17NO4/c1-19(9-23-19)15-7-11-14(24-15)8-13(21)16-17(11)20(2)12-6-4-3-5-10(12)18(16)22/h3-6,8,15,21H,7,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H17N3O2S/c1-26(24,25)23-15-12-10-14(11-13-15)21-20-16-6-2-4-8-18(16)22-19-9-5-3-7-17(19)20/h2-13,23H,1H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7Cl2NO3/c13-8-1-6-12(11(14)7-8)18-10-4-2-9(3-5-10)15(16)17/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-6-3-4(7(10)11)1-2-5(6)8(12)13/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-7(2)11-10(16-12(13)17(11)3)9-8(6)14-4-5-15-9/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14N2S2/c1-5-8(10)6(12-2)4-7(13-3)9(5)11/h4H,10-11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c23-16-9-10-19-21-12-15-6-2-1-5-14(15)11-20(21)17-7-3-4-8-18(17)22(19)13-16/h1-13,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5BrO/c1-3(5)4(2)6/h1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H18N4/c7-1-3-9-5-6-10-4-2-8/h9-10H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15NO/c1-11(2)10-5-3-9(4-6-10)7-8-12/h3-6,12H,7-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9N3O3/c1-21-11-4-10(19)12-13-8(6-17-14(12)15(11)20)7-5-16-3-2-9(7)18-13/h2-6,18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NS2/c1-5-6-2-13-4-8(6)10-9(11-10)7(5)3-12-1/h1-4,9-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N4/c1-9-7-13(12(15)8-11(9)14)17-16-10-5-3-2-4-6-10/h2-8H,14-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N3/c14-10-3-1-8-5-9-2-4-11(15)7-13(9)16-12(8)6-10/h1-7H,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c14-13(15)11-7-5-9-3-1-2-8-4-6-10(11)12(8)9/h1-3,5,7H,4,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O2/c15-13-7-3-11(4-8-13)1-2-12-5-9-14(10-6-12)16(17)18/h1-10H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H17NO5/c1-5(2)6(12)9(3)10(16-9,7(11)13)8(14)15-4/h5-6,12H,1-4H3,(H2,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11IO3/c1-4(7)6-9-3-5(2-8)10-6/h4-6,8H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N4O/c1-21(2)11-10-18-17(22)12-6-5-9-15-16(12)20-14-8-4-3-7-13(14)19-15/h3-9H,10-11H2,1-2H3,(H,18,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-6-3-4-8(9)5-7(6)2/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2/c1-8-12-10(6-7-13-8)9-4-2-3-5-11(9)14-12/h2-7,14H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O3/c7-4-3-6(5-8)1-2-9-4/h4,7H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClNO3/c8-7(10)5-3-1-2-4-6(5)9(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12Cl3O3P/c7-1-4-10-13(11-5-2-8)12-6-3-9/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9N3O2/c1-14-9(13)12-8-10-6-4-2-3-5-7(6)11-8/h2-5H,1H3,(H2,10,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N3O4/c1-2-19-12(17)15(14-18)8-4-6-11(16)10-5-3-7-13-9-10/h3,5,7,9H,2,4,6,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8S2/c1-2-6-4-3-5-1/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10ClN/c13-11-5-1-9(2-6-11)10-3-7-12(14)8-4-10/h1-8H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N6/c9-11-7-5-3-1-2-4-6(5)8(12-10)14-13-7/h1-4H,9-10H2,(H,11,13)(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-10-18-15-8-6-12-4-3-11-5-7-13(20)9-14(11)16(12)17(15)19(10)2/h3-9,20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9ClO2/c1-7(11)12-9-4-2-8(6-10)3-5-9/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O3/c13-9-1-5-11(6-2-9)17-12-7-3-10(4-8-12)14(15)16/h1-8H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O6/c16-13(17)9-3-1-8(2-4-9)11-6-5-10(14(18)19)7-12(11)15(20)21/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c1-11-7-5-3-2-4-6(7)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-6-14-12(4-1)7-10-16-15(14)9-8-13-5-3-11-18-17(13)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO3/c22-17-10-8-14-12-3-1-2-4-13(12)20-16(21(23)24)9-6-11-5-7-15(17)19(14)18(11)20/h1-10,22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2ClN3O6/c7-6-4(9(13)14)1-3(8(11)12)2-5(6)10(15)16/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7NO4/c15-13-10-5-2-1-4-8(10)9-6-3-7-11(14(16)17)12(9)18-13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O/c1-13-15-7-4-5-9-17(15)19(12-21)18-11-10-14-6-2-3-8-16(14)20(13)18/h2-11,21H,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-16-8-4-3-7-15(16)12-19-17(13)11-10-14-6-2-5-9-18(14)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO5S/c1-11-2-8-14(9-3-11)21(18,19)20-10-12-4-6-13(7-5-12)15(16)17/h2-9H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20N4O2/c1-12-17-13-5-3-4-6-14(13)23-20(17)18-19(22-12)16(26)11-15(21(18)27)25-9-7-24(2)8-10-25/h3-6,11,23H,7-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O3/c1-8-6-7-11-12(13(8)16)15(18)10-5-3-2-4-9(10)14(11)17/h2-7,16H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10F2/c1-8-13-6-9(15)2-4-11(13)12-5-3-10(16)7-14(8)12/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO/c15-14-11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)13/h1-6,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O6/c21-7-3-1-5-9-11(7)14-10-6(18-20(26-18)16(14)24)2-4-8(22)12(10)13(9)15(23)19-17(5)25-19/h1-4,15,17-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClNO4/c8-5-2-1-4(7(10)11)3-6(5)9(12)13/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2/c1-3-7-15(8-4-1)19-17-11-13-18(14-12-17)20-16-9-5-2-6-10-16/h1-14,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10NO/c1-11-6-2-3-7-8(11)4-5-9-10(7)12-9/h2-6,9-10H,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O/c1-10-7-3-2-5(8)4-6(7)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO3/c1-11(19)18-14-9-7-12(8-10-14)15(20)17-16(21-17)13-5-3-2-4-6-13/h2-10,16-17H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15N5/c1-10-8-13-15(21-17(18)22(13)2)16-14(10)20-12(9-19-16)11-6-4-3-5-7-11/h3-9H,1-2H3,(H2,18,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8NO2/c7-6(8)5-3-1-2-4-5/h1-4H2/q-1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14Cl2N2O4/c1-20-11-3-2-10(16(6-4-14)7-5-15)9-8-12(17(18)19)21-13(9)11/h2-3,8H,4-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N4O2/c1-19-13-5-11-9(3-7(13)15)18-12-6-14(20-2)8(16)4-10(12)17-11/h3-6H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-9-6-7-4-2-3-5-8(7)13-10(9)14-11(15)12/h2-6H,1H3,(H2,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO3/c23-18-14-8-7-12-9-11-6-5-10-3-1-2-4-13(10)16(11)22-17(12)15(14)20-21(25-20)19(18)24/h1-9,18-21,23-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2/c14-11-5-3-7-13-10(11)8-9-4-1-2-6-12(9)15-13/h1-8H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O4/c19-17(20)13-5-9-1-2-10-6-14(18(21)22)8-12-4-3-11(7-13)15(9)16(10)12/h5-8H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O2/c16-15(17)8-5-6-11-12(7-8)14-10-4-2-1-3-9(10)13-11/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14NO5P/c1-2-19-21(18,14-6-4-3-5-7-14)20-13-10-8-12(9-11-13)15(16)17/h3-11H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H7NO4/c18-15-10-3-1-2-8-4-5-9-12(17(20)21)7-6-11(16(15)19)14(9)13(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7ClO2S/c1-3(2)7(4,5)6/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3/c1-7-12-8-4-2-3-5-9(8)15-10(12)6-11(13)14-7/h2-6,15H,1H3,(H2,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5BrCl2/c4-1-3(6)2-5/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3/c1-6-9(12)4-5-10-11(6)14-8(3)7(2)13-10/h4-5H,12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H16/c1-15-10-11-20-21(12-15)23-13-16-6-2-4-8-18(16)22-14-17-7-3-5-9-19(17)24(20)25(22)23/h2-14H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O2/c7-5-2-1-3-6(4-5)8(9)10/h1-4H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3ClN2O2S/c8-7-4-2-1-3-5(10(11)12)6(4)13-9-7/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-8-14(18(21)22)16-11-5-2-1-4-9(11)10-6-3-7-12(13)15(10)16/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl3NO2S2/c9-7(10)8(11)16-15-6-4-2-1-3-5(6)12(13)14/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19ClN4O2/c1-22(2)11-5-10-20-17-12-6-3-4-7-14(12)21-18-13(19)8-9-15(16(17)18)23(24)25/h3-4,6-9H,5,10-11H2,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H16N2O3/c1-8-13-9-5-3-4-6-10(9)19-15(13)14-11(20)7-12(22-2)17(21)16(14)18-8/h7,19H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O/c1-2-3-4-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N2/c1-16-13-5-3-2-4-10(13)8-11-9-12(15)6-7-14(11)16/h2-9H,15H2,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15NO3S/c1-12(18)17(20-13(2)19)14-8-10-16(11-9-14)21-15-6-4-3-5-7-15/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O3/c1-10-4-11(7-16)12(8-17)5-15(18)9-14(2,3)6-13(10)15/h4-5,7-8,10,13,18H,6,9H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-7-17-15(4-1)12-16-9-8-13-5-3-6-14-10-11-18(17)20(16)19(13)14/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7Cl/c11-10-7-3-5-8-4-1-2-6-9(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-4-8-18-14(5-1)9-10-15-11-12-19-17-7-3-2-6-16(17)13-20(19)21(15)18/h1-12H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-4-6(8)2-3-7(5)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O3/c1-22-13-8-10-17(23-2)15(11-13)19-20-18-14-6-4-3-5-12(14)7-9-16(18)21/h3-11,21H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17N3/c1-21(2)16-12-10-15(11-13-16)19-20-18-9-5-7-14-6-3-4-8-17(14)18/h3-13H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O4P/c1-5-8(4,6-2)7-3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HCl2N/c3-2(4)1-5/h2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O2/c11-10(12)7-1-2-8-6(5-7)3-4-9-8/h1-2,5,9H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7FN2O3S/c12-8-3-1-2-4-9(8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14N4O5/c1-12-6(13(16)17)2-10-7(12)8-11-9(3-14,4-15)5-18-8/h2,8,11,14-15H,3-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16N2O2/c1-24-19-12-13(23)10-11-18(19)22-20-14-6-2-4-8-16(14)21-17-9-5-3-7-15(17)20/h2-12,23H,1H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O3/c1-11-8(10)6-4-2-3-5-7(6)9/h2-5,9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c1-2-6-12-11(5-1)9-10-14-13-7-3-4-8-15(13)17-18(19-17)16(12)14/h1-10,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c1-5-2-3-6(8(10)11)7(4-5)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10O2/c21-18-10-17-16-9-12-5-2-1-4-11(12)8-15(16)13-6-3-7-14(19(13)17)20(18)22/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N4O5/c15-8-6-13(10(16)12-8)11-5-1-2-7-3-4-9(19-7)14(17)18/h1-5H,6H2,(H,12,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4/c1-17-11-7-10(9-5-3-2-4-6-9)8-15-12(11)16-13(17)14/h2-8H,1H3,(H2,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3BrO/c1-3(4)2-5/h2H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8Cl5NO3S/c1-3(16)15-4(9(17)18)2-19-8(14)6(11)5(10)7(12)13/h4H,2H2,1H3,(H,15,16)(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6N2O4/c13-11(14)8-5-1-3-7-4-2-6-9(10(7)8)12(15)16/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O6/c1-20-10-6-11-14(8-4-5-21-17(8)22-11)15-13(10)7-2-3-9(18)12(7)16(19)23-15/h4-6,8-9,17-18H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O/c1-10(2)12-5-4-11(3)14-7-6-13(9-16)15(14)8-12/h4-9H,1H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-7-3-2-6-15-10(7)13-8-4-5-9(12)14-11(8)15/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H11N/c1-2-6-15-13(4-1)10-14-9-8-12-5-3-7-17-19(12)18(14)16(15)11-20-17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O7/c1-16-8(11)6(9(12)13)4-5-2-3-7(17-5)10(14)15/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-11-7-8-13-14-5-1-3-12-4-2-6-15(17(12)14)16(13)9-11/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3ClN2O4/c7-5-2-1-4(8(10)11)3-6(5)9(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O5/c1-15-9(12)6(5-10)4-7-2-3-8(16-7)11(13)14/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H17N/c1-2-8-15(9-3-1)14-22-20-18-12-6-4-10-16(18)17-11-5-7-13-19(17)21(20)22/h1-13,20-21H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO4/c22-19-13-7-3-6-11-10-4-1-2-5-12(10)17-15(21(24)25)9-8-14(20(19)23)18(17)16(11)13/h1-9,19-20,22-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17N3O/c1-14-10-16(17(12-20)13-21)11-19(23-14)9-6-15-4-7-18(8-5-15)22(2)3/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-2-3-4-8-5-7-6-9-7/h7H,2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO4/c11-9(12)5-4-7-2-1-3-8(6-7)10(13)14/h1-6H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4N2O2/c2-1(4)3-5/h5H,(H3,2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5FO/c4-1-3-2-5-3/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14ClNO/c16-14(13-9-5-2-6-10-13)15(18)17-11-12-7-3-1-4-8-12/h1-10,14H,11H2,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H19NO2/c1-8(2)5-7(11)6-9(3,4)10(8)12/h7,11-12H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NOS/c1-11(16)15-12-7-9-14(10-8-12)17-13-5-3-2-4-6-13/h2-10H,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O5/c16-12-4-2-1-3-10(12)13-9-6-5-8(14(17)18)7-11(9)15(19)20/h1-7,13,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15NO2/c1-2-15(17)16(18)14-10-8-13(9-11-14)12-6-4-3-5-7-12/h3-11,18H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O4/c7-2-4-1-5(8)6(9)3-10-4/h2,4H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O4/c1(9-3-7-5-11-7)2-10-4-8-6-12-8/h7-8H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5N/c1-2-3-1/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9Br3O/c6-1-5(2-7,3-8)4-9/h9H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C33H52O2/c1-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19-20-33(34)35-26-30-23-24-31-28(4)21-22-29(27(2)3)25-32(30)31/h21,23-25,29H,2,5-20,22,26H2,1,3-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N5O3/c23-16-15-14(12-3-1-2-4-13(12)19-15)20-21-22(16)18-9-10-5-7-11(8-6-10)17(24)25/h1-9,19H,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NOS/c14-13-10-6-8-12(9-7-10)15-11-4-2-1-3-5-11/h1-9,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4O/c1-7-3-2-6-15-10(7)12-8-4-5-9(14-16)13-11(8)15/h2-6,16H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4ClN/c6-5-3-1-2-4-7-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-4-3-7-2-1-5-11-9(7)6-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H18N2O3/c1-21(2)11-10-20-19(24)15-9-5-8-14-16(15)18(23)13-7-4-3-6-12(13)17(14)22/h3-9H,10-11H2,1-2H3,(H,20,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c7-5-1-2-6(8)4-3-5/h1-4H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)10-5-6-12-11-4-2-1-3-9(11)7-14(16(19)20)13(12)8-10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-8-9-4-3-7-11-10-5-1-2-6-12(10)15(14(9)11)16(13)18(21)22/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO2/c1-2-7-3-5-8(6-4-7)9(10)11/h2-6H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H17N3O4S/c1-10-12(14(2)9-21(18,19)20)13(17)16(15(10)3)11-7-5-4-6-8-11/h4-8H,9H2,1-3H3,(H,18,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H15N/c1-3-9-15-13(7-1)14-8-2-4-10-16(14)20-19(15)17-11-5-6-12-18(17)21-22(20)23-21/h1-12,21-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N2O5/c12-11(14)8(9-2-1-5-17-9)6-7-3-4-10(18-7)13(15)16/h1-6H,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClN2S/c8-7-5-3-4(9)1-2-6(5)11-10-7/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4BrClO/c4-1-2-3(5)6-2/h2-3H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-9-5-1-4-8-7(9)3-2-6-10-8/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4/c13-7-4-5-9-11(6-7)15-10-3-1-2-8(14)12(10)16-9/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7BrN2O3S/c12-8-3-1-2-4-9(8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N2/c1-2-6-12-10(3-1)9-4-7-11-8-5-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-7(2)9-5-4-8(3)6-10(9)11/h7-9H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O3S/c1-3-6-7(2,4)5/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O2/c7-5-6-1-3-8-4-2-6/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10N2O2/c16-11-14-5-3-12(4-6-14)1-2-13-7-9-15(10-8-13)17(18)19/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O/c1-2-3-4-5-6-7-8/h4-5,7H,2-3,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7N5O2/c5-8-2-3(10)7-1-4(11)9-6/h2H,1,6H2,(H,7,10)(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O/c1-2-3-4-5-6-8-7-9-8/h2,8H,1,3-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-6(11)10-8-4-2-3-7(9)5-8/h2-5H,9H2,1H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-6(8)3-2-4-7(5)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c21-18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1-11,21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12/c1-11-6-9-15-13(10-11)8-7-12-4-2-3-5-14(12)15/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3FN4O2/c7-5-2-1-4(9-10-8)3-6(5)11(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N3O3/c1-7-12-8-6-17-4-3-9(8)19-14(12)13-10(20)5-11(22-2)16(21)15(13)18-7/h3-6,19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22O3/c1-2-3-4-5-6-7-8-9-10-11-12-18-14-15(17)13-16/h3-12,15-17H,2,13-14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11N3O4/c1-4(10)9(5(11)7-2)13-6(12)8-3/h1-3H3,(H,7,11)(H,8,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3IN2O4/c7-5-2-1-4(8(10)11)3-6(5)9(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-10-16-8-4-5-9-17(16)19-12-15-7-3-2-6-14(15)11-18(13)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O/c1-2-4-7(5-3-1)8-6-9-8/h1-5,8H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClN2O4/c8-4-5-1-6(9(11)12)3-7(2-5)10(13)14/h1-3H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O2/c1-12(18)19-11-17-15-8-4-2-6-13(15)10-14-7-3-5-9-16(14)17/h2-10H,11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2/c4-2-1-3-5/h1-2H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c1-10-7-4-2-6(8-9)3-5-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N/c13-12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N/c1-15-13-8-11-6-2-4-10-5-3-7-12(9-13)14(10)11/h2-7,13,15H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O4/c1-8(14)16-6-10-5-15-7-12-9(4-13)2-3-11(10)12/h2-5,7H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9N3O4/c10-2-1-8-5(4-11)7-3-6(8)9(12)13/h3,10-11H,1-2,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO5/c1-2-14-5-8(13(16)17)12(15)7-3-10-11(4-9(7)14)19-6-18-10/h3-5H,2,6H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2/c1-10-14-9-18-8-7-12(14)11(2)17-16(10)13-5-3-4-6-15(13)19-17/h3-9,19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H19N3O2/c16-10-12(4-2-1-3-5-12)13-11(17)15(10)9-8-14-6-7-14/h1-9H2,(H,13,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2/c14-10-1-3-12-8(6-10)5-9-7-11(15)2-4-13(9)12/h1-4,6-7H,5,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c1-2-10(9)8-6-4-3-5-7-8/h3-7H,2,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO2/c1-13(19)18-16-10-7-14(8-11-16)9-12-17(20)15-5-3-2-4-6-15/h2-12H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H24N2/c1-4-8-21-12-14-10-18-16(9-13(2)11-20(18)3)15-6-5-7-17(21)19(14)15/h5-7,9,12,16,18H,4,8,10-11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5N3O/c1-7-3-2-5-4(7)6-8/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2/c11-10(12)6-3-1-2-5-4-8-9-7(5)6/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-17-11-15-6-3-5-13-8-9-16-10-14-4-1-2-7-18(14)20(17)21(16)19(13)15/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2S2/c15-11-5-1-3-7-13(11)17-9-10-18-14-8-4-2-6-12(14)16/h1-8H,9-10,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-7-16-13(4-1)8-10-17-18-11-9-14-5-3-6-15(20(14)18)12-19(16)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO2/c20-19(21)16-7-8-17-15(10-16)6-5-14-9-12-3-1-2-4-13(12)11-18(14)17/h7-11H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O2/c12-11(13)8-5-1-3-7-4-2-6-10-9(7)8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2S/c6-3-4-1-2-5-3/h1-2H2,(H2,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-5-15-12-19-17(10-14(15)4-1)11-16-7-3-6-13-8-9-18(19)20(13)16/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c19-14-7-10-16-13(11-14)6-9-17-15-4-2-1-3-12(15)5-8-18(16)17/h1-11H,19H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO/c22-21-18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h5-11H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H17Cl2NOS/c1-7(2)13(8(3)4)10(14)15-6-9(12)5-11/h5,7-8H,6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O3/c1-18-13-9-7-12(8-10-13)15-16(19-15)14(17)11-5-3-2-4-6-11/h2-10,15-16H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13NO/c1-5-3-7-4-6(2)8-5/h5-7H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7ClO/c1-4(2)5(6)3-7/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14Cl2N2O3/c17-5-7-19(8-6-18)12-2-3-13-11(9-12)1-4-15-14(13)10-16(23-15)20(21)22/h1-4,9-10H,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO/c9-8(10)6-7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N3/c14-8-5-6-10-12(7-8)16-11-4-2-1-3-9(11)13(10)15/h1-7H,14H2,(H2,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-3-7-16-14(5-1)9-11-20-18(16)13-19-17-8-4-2-6-15(17)10-12-21(19)22-20/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-18-7-3-6-14-16-9-8-12-4-1-2-5-13(12)15(16)10-11-17(14)18/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12/c1-3-7-15-13(5-1)9-11-18-16-8-4-2-6-14(16)10-12-17(15)18/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10ClNO2/c15-13-7-3-11(4-8-13)1-2-12-5-9-14(10-6-12)16(17)18/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3O2/c13-9-1-3-10(4-2-9)14-11-5-7-12(8-6-11)15(16)17/h1-8,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O5/c16-9-3-1-8(2-4-9)12(17)14-13-7-10-5-6-11(20-10)15(18)19/h1-7,16H,(H,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9N3O4/c15-7-4-5-8(16)12-11(7)13(18)6-2-1-3-9(17(20)21)10(6)14(12)19/h1-5H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O6/c16-13(17)8-5-6-10(12(7-8)15(20)21)9-3-1-2-4-11(9)14(18)19/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO3/c22-16-10-8-12-6-5-11-7-9-15(21(23)24)19-13-3-1-2-4-14(13)20(16)18(12)17(11)19/h1-10,22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O/c1-12-7-9-16(13(2)11-12)19-20-18-15-6-4-3-5-14(15)8-10-17(18)21/h3-11,21H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3N3O7/c10-6-4(8(13)14)1-3(7(11)12)2-5(6)9(15)16/h1-2,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10/c1-2-8-13-12(7-1)14-9-3-5-11-6-4-10-15(13)16(11)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11F/c1-9-11-4-2-3-5-12(11)13-7-6-10(15)8-14(9)13/h2-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O2/c19-17-10-9-15-14-6-5-11-3-1-2-4-12(11)13(14)7-8-16(15)18(17)20/h1-10,17-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2O/c1-3-6(4-2)5-7/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O/c15-14-12-7-3-1-5-10(12)9-11-6-2-4-8-13(11)14/h1-9,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-8-4-10-2-6-12-14(18(21)22)7-3-9-1-5-11(13)16(10)15(9)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO4/c22-17-8-6-12-13-4-1-10-3-7-16(21(24)25)14-5-2-11(19(13)18(10)14)9-15(12)20(17)23/h1-9,17,20,22-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H18O11/c20-5-11-14(24)16(26)17(27)19(30-11)29-10-4-6(21)3-9-13(10)15(25)12-7(22)1-2-8(23)18(12)28-9/h1-4,11,14,16-17,19-24,26-27H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18Cl3N2O2P/c10-2-6-13-5-1-9-16-17(13,15)14(7-3-11)8-4-12/h1-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4ClN3O4/c7-4-1-3(9(11)12)2-5(6(4)8)10(13)14/h1-2H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O3/c19-11-3-1-10-2-4-12-13-7-8-17(20)18(21)15(13)6-5-14(12)16(10)9-11/h1-9,17-21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H17N5O6/c22-9-7-19(8-10-23)13-3-1-12(2-4-13)17-18-15-6-5-14(20(24)25)11-16(15)21(26)27/h1-6,11,22-23H,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N6O/c6-5-9-3-2(7-1-8-3)4(10-5)11-12/h1,12H,(H4,6,7,8,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H8N2/c1-4(2)3/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N3O2/c1-8-10(12-16)11(15)14(13(8)2)9-6-4-3-5-7-9/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9Cl2N3O2/c6-1-3-8-5(11)10(9-12)4-2-7/h1-4H2,(H,8,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10/c1-2-7-14-12(4-1)10-13-6-3-5-11-8-9-15(14)16(11)13/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O/c18-10-14-7-6-13-5-4-11-2-1-3-12-8-9-15(14)17(13)16(11)12/h1-9,18H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H16/c1-11-8-9-16-12(2)14-6-4-5-7-15(14)13(3)17(16)10-11/h4-10H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4O/c1-18-13-6-12-11(5-8(13)15)16-9-3-2-7(14)4-10(9)17-12/h2-6H,14-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5BrO/c4-1-3-2-5-3/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O/c1-4(2)3-5/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O4/c9-7(10)5-3-1-2-4-6(5)8(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO4/c1-12(20)17-15(13-8-4-2-5-9-13)16(18(23-17)19(21)22)14-10-6-3-7-11-14/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10O3S/c17-20(18,19)14-9-7-12-5-4-10-2-1-3-11-6-8-13(14)16(12)15(10)11/h1-9H,(H,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c1-3(5-1)4-2-6-4/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3BrN2O4/c7-5-2-1-4(8(10)11)3-6(5)9(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN3O2/c7-3-1-5(9)6(10(11)12)2-4(3)8/h1-2H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11NO2/c18-17(19)14-8-12-6-4-10-2-1-3-11-5-7-13(9-14)16(12)15(10)11/h1-4,6,8-9H,5,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O3/c19-17-13-7-3-9-1-2-10-4-8-14(18(20)21)12-6-5-11(13)15(9)16(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H26N3O/c1-5-22(6-2)15-9-11-17-19(13-15)24-20-14-16(23(7-3)8-4)10-12-18(20)21-17/h9-14H,5-8H2,1-4H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13NO/c1-2-7-3-5-8-6-4-7/h2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7BrO/c4-2-1-3-5/h5H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9N/c1-2-6-12-10(4-1)7-8-11-5-3-9-14-13(11)12/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O/c13-7-5-10-11(6-12(7)16)15-9-4-2-1-3-8(9)14-10/h1-6,16H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H17N3/c1-8-12(16(4)5)7-6-11-13(8)15-10(3)9(2)14-11/h6-7H,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-2-3-6(8)7(9)4-5/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O2/c8-4-2-1-3-5(9)6(4)7(10)11/h1-3H,8-9H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO5/c9-7(10)4-2-5-1-3-6(13-5)8(11)12/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl2FNO2S2/c9-7(10)8(11)16-15-6-4-2-1-3-5(6)12(13)14/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO/c15-14-11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)13/h1-6,8,14-15H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13FN4O3/c1-24-16(22)20-15-18-12-7-4-10(8-13(12)19-15)14(21-23)9-2-5-11(17)6-3-9/h2-8,23H,1H3,(H2,18,19,20,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9N/c1-2-10-4-5-12-8-9-16-13-7-6-11(3-1)14(10)15(12)13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c8-6-3-4(9(12)13)1-2-5(6)7(10)11/h1-3H,8H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19FN4O2/c1-22(2)11-5-10-20-17-12-6-3-4-7-14(12)21-18-13(19)8-9-15(16(17)18)23(24)25/h3-4,6-9H,5,10-11H2,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16N2/c1-11-12(2)17-18(20)15-9-5-6-10-16(15)21-19(17)14-8-4-3-7-13(11)14/h3-10H,1-2H3,(H2,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-11-7-8-12-13-5-1-3-10-4-2-6-14(16(10)13)15(12)9-11/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18O3/c1-2-11-12-6-4-3-5-10(12)9-15-13(11)7-8-14-16(15)19-20(23-19)18(22)17(14)21/h3-9,17-22H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c10-5-8(11)6-1-3-7(4-2-6)9(12)13/h1-5,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2O2/c1-3(6)5(2)4-7/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7BrO/c10-9(7-11)6-8-4-2-1-3-5-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14O4/c1-2-9(13-5-11-7-15-11)4-10(3-1)14-6-12-8-16-12/h1-4,11-12H,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O2/c1-7-2-3-8(10-5-12)4-9(7)11-6-13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-2-6-12-11(5-1)9-10-14-13-7-3-4-8-15(13)17-18(19-17)16(12)14/h1-10,17-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19Cl2NO2/c15-8-10-17(11-9-16)13-6-4-12(5-7-13)2-1-3-14(18)19/h4-7H,1-3,8-11H2,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H28N6/c11-1-3-13-5-7-15-9-10-16-8-6-14-4-2-12/h13-16H,1-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H21N3O3/c1-9(2)15-7-12-4-3-10-5-11(8-18)14(17(19)20)6-13(10)16-12/h5-6,9,12,15-16,18H,3-4,7-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7ClN2O3S/c12-8-1-3-9(4-2-8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N3/c1-12-7-9-14(10-8-12)16-17-15-11-13-5-3-2-4-6-13/h2-10H,11H2,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO2/c1-13-12(14)15-11-8-4-6-9-5-2-3-7-10(9)11/h2-8H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO2/c1-4-8-5(7)6(2)3/h4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl3O/c8-4-1-2-5(7(10)11)6(9)3-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H4N4O8/c15-11(16)6-1-5-2-7(12(17)18)4-9(14(21)22)10(5)8(3-6)13(19)20/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3F3O3S/c1-8-9(6,7)2(3,4)5/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-4-8(9-10)7(2)5-6/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl2O2/c9-7(11)5-3-1-2-4-6(5)8(10)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O2/c1-3(5)2-4/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10O2/c20-19-15-10-12-4-1-2-6-13(12)14-9-8-11-5-3-7-16(21-19)17(11)18(14)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Cl/c8-6-7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-7(2)15-10-8(14-6)4-5-9-11(10)16-12(13)17(9)3/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5Br2Cl/c4-1-3(6)2-5/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO4/c1-10(20)23-16-9-15(19(21)22)13-7-5-11-3-2-4-12-6-8-14(16)18(13)17(11)12/h2-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4/c1-7-4-3-5-16-11(7)15-10-8(2)9(13)6-14-12(10)16/h3-6H,13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10N2O2/c19-15-9-5-1-3-7-11(9)17-13(15)14-16(20)10-6-2-4-8-12(10)18-14/h1-8,17,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O2/c21-11-18-15-7-3-4-8-16(15)19(12-22)20-14-6-2-1-5-13(14)9-10-17(18)20/h1-10,21-22H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO/c13-8-5-6-10-9-3-1-2-4-11(9)14-12(10)7-8/h1-7H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-5-4-7-15-11-16-10-9-14-6-2-3-8-17(14)19(16)12-18(13)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21N/c1-2-8-14(9-3-1)21-19-17-12-6-4-10-15(17)16-11-5-7-13-18(16)20(19)21/h4-7,10-14,19-20H,1-3,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-9-7-5-3-2-4-6(7)8/h2-5H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO/c14-13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19BrN2/c1-19-9-10(7-17)5-13-12-3-2-4-14-16(12)11(8-18-14)6-15(13)19/h2-4,8,10,13,15,18H,5-7,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24N2OS/c1-4-22(5-2)13-12-21-16-11-10-14(3)20-18(16)19(23)15-8-6-7-9-17(15)24-20/h6-11,21H,4-5,12-13H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14O/c22-12-19-16-7-2-1-6-15(16)17-10-8-13-4-3-5-14-9-11-18(19)21(17)20(13)14/h1-11,22H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-5-13-6-2-11-17-18-12-4-8-14-7-3-10-16(20(14)18)15(9-1)19(13)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-4-8-9(15-7(2)5-14-8)10-11(6)17(3)12(13)16-10/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4N2O/c1-2-3-4/h1H3,(H,2,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5NO2/c1-4(3-6)5(7)8-2/h1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14N4S/c1-19(2)13-6-3-11(4-7-13)17-18-12-5-8-14-15(9-12)20-10-16-14/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N3O3PS2/c1-15-17(18,16-2)19-7-13-10(14)8-5-3-4-6-9(8)11-12-13/h3-6H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O2S/c7-3-4-6(5-8)1-2-9-4/h4,7H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O5/c10-4-5-6(8(11)12)2-1-3-7(5)9(13)14/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8-5-6-10-9(7-8)3-2-4-11(10)12(13)14/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-5-3-1-2-4(7(10)11)6(5)8(12)13/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O3/c15-12-6-5-10-11(14(12)17)7-8-3-1-2-4-9(8)13(10)16/h1-7,15-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c21-19-6-2-5-14-16(19)10-9-15-17-8-7-12-3-1-4-13(20(12)17)11-18(14)15/h1-11,21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12FN3O3/c1-19-14-7-6-10(20(22)23)8-12(14)16(18-9-15(19)21)11-4-2-3-5-13(11)17/h2-8H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H3NO5/c10-7-5-2-1-4(9(12)13)3-6(5)8(11)14-7/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N5O3/c1-26-18(25)12-8-6-11(7-9-12)10-19-23-17(24)16-15(21-22-23)13-4-2-3-5-14(13)20-16/h2-10,20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-17-6-2-5-15-11-16-8-7-13-3-1-4-14-9-10-18(19(15)17)21(16)20(13)14/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N3/c6-4-2-1-3-5(7)8-4/h1-3H,(H4,6,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N4O7/c17-10(4-1-8-2-5-11(22-8)15(18)19)14-13-7-9-3-6-12(23-9)16(20)21/h1-7H,(H,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c11-12-10-7-3-5-8-4-1-2-6-9(8)10/h1-2,4,6,10-11H,3,5,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3ClN2O2S/c8-7-5-3-4(10(11)12)1-2-6(5)13-9-7/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClNO2/c8-5-6-2-1-3-7(4-6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO2/c1-2(4)3-5/h5H,1H3,(H,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H18N2O2S/c1-20(2)11-10-19-18(22)14-8-5-7-13-16(21)12-6-3-4-9-15(12)23-17(13)14/h3-9H,10-11H2,1-2H3,(H,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14BrNO2/c1-8(12)11(14)13-7-9-3-5-10(15-2)6-4-9/h3-6,8H,7H2,1-2H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4/c13-7-1-3-9-11(5-7)16-10-4-2-8(14)6-12(10)15-9/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2O3/c13-4-3-7-6-11-10-5-8(12(14)15)1-2-9(7)10/h1-2,5-6,11,13H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N3/c1-10-5-3-4-6-14(10)17-16-12-7-8-13(15)11(2)9-12/h3-9H,15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO2/c1-8-6-7-11-12(13(8)16)15(18)10-5-3-2-4-9(10)14(11)17/h2-7H,16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)11-7-6-9-4-5-10-2-1-3-13(16(19)20)14(10)12(9)8-11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2/c1-2-4-8-7(3-1)9-5-6-10-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClNO2/c8-5-6-1-3-7(4-2-6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13N5O2/c21-25-24-14-9-10-16-18(11-14)23-17-4-2-1-3-15(17)19(16)22-13-7-5-12(6-8-13)20(26)27/h1-11H,(H,22,23)(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O5/c1-20-13-4-2-3-10-9(13)5-6-11-12(17(18)19)7-14-16(15(10)11)22-8-21-14/h2-7H,8H2,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N3O4/c1-8-11(12(17)13-6-7-16)15(19)10-5-3-2-4-9(10)14(8)18/h2-5,16H,6-7H2,1H3,(H,13,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-10(2,3)8-6-7(11)4-5-9(8)12/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O2/c1-21(2)11-5-10-19-18-14-6-3-4-7-16(14)20-17-9-8-13(22(23)24)12-15(17)18/h3-4,6-9,12H,5,10-11H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO/c22-21-18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O/c1-9(7-10-9)8-5-3-2-4-6-8/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClN2S/c8-7-4-2-1-3-5(9)6(4)11-10-7/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16/c1-10-8-15-12(3)13-6-4-5-7-14(13)16(15)9-11(10)2/h4-9,12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O/c1-11(19)16-9-14-7-5-12-3-2-4-13-6-8-15(10-16)18(14)17(12)13/h2-11,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7N3O5S/c15-11(7-5-10(14(18)19)20-6-7)12-8-1-3-9(4-2-8)13(16)17/h1-6H,(H,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12/c1-2-6-17-16(5-1)18-7-3-4-14-12-15-9-8-13-10-11-19(17)22(20(13)15)21(14)18/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)16-10-14-6-5-13-9-12-3-1-2-4-17(12)18-8-7-15(11-16)19(14)20(13)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O2/c1-5-4-6(9(10)11)2-3-7(5)8/h2-4H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO2/c8-6-3-1-5(7-9)2-4-6/h1-4,8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2S/c8-6-1-2-7-5(3-6)4-9-10-7/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O/c7-8-5-1-3-6(9)4-2-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11NO2/c18-15-10-14(17-11-6-2-1-3-7-11)16(19)13-9-5-4-8-12(13)15/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12Cl2N2O3/c13-3-5-15(6-4-14)10-1-2-11-9(7-10)8-12(19-11)16(17)18/h1-2,7-8H,3-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2Br2O3/c5-2(1-7)3(6)4(8)9/h1H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11NO4/c1-20-12-4-2-3-8-9(12)5-11-14-10(17(19)18-11)6-13-16(15(8)14)22-7-21-13/h2-6H,7H2,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N4O2/c1-11(2)10-9-7-3-5-8(6-4-7)12(13)14/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14/c1-3-7-18-15(5-1)11-14-21-20(18)13-12-17-10-9-16-6-2-4-8-19(16)22(17)21/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12N2O3/c1-20-10-6-9(16)11-12(13(10)17)15(19)8-5-3-2-4-7(8)14(11)18/h2-6H,16-17H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N3O/c13-8-1-3-9(4-2-8)16-10-5-6-11(14)12(15)7-10/h1-7H,13-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N3O5/c1-6(13)11-4-2-3-7(11)9(16)12(10-17)5-8(14)15/h7H,2-5H2,1H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O3/c1-12-10-5-7(2-3-9(10)11)4-8-6-13-8/h2-3,5,8,11H,4,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H21N3/c1-21(2)13-7-12-19-18-14-8-3-5-10-16(14)20-17-11-6-4-9-15(17)18/h3-6,8-11H,7,12-13H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11NO4/c1-2-9-7-8-12-13(14(9)17(20)21)16(19)11-6-4-3-5-10(11)15(12)18/h3-8H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O3/c21-17-13-7-3-6-12-15-11-5-2-1-4-10(11)8-9-14(15)20(16(12)13)19(23-20)18(17)22/h1-9,17-19,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6Cl5NO2S/c7-3(6(9,10)11)4(8)15-1-2(12)5(13)14/h2H,1,12H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2/c1-15-12-5-3-2-4-10(12)11-8-9(14)6-7-13(11)15/h2-8H,14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9Cl2NO/c13-8-1-6-12(11(14)7-8)16-10-4-2-9(15)3-5-10/h1-7H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14/c1-3-7-19-15(5-1)9-11-17-14-22-18(13-21(17)19)12-10-16-6-2-4-8-20(16)22/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O2/c7-5-3-1-2-4-6(5)8/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O/c1-2-3-4-5/h2H2,1H3,(H,3,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10S/c1-2-6-12-11(5-1)9-10-14-13-7-3-4-8-15(13)17-16(12)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H18N2O4/c1-13(21)23-11-15-3-7-17(8-4-15)19-20-18-9-5-16(6-10-18)12-24-14(2)22/h3-10H,11-12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H20O8/c1-3-22(29)8-13(24)15-10(17(22)21(28)30-2)7-11-16(20(15)27)19(26)14-9(18(11)25)5-4-6-12(14)23/h4-7,13,17,23-24,27,29H,3,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO4/c22-16-8-4-12-9-11-2-5-13-15(21(24)25)7-3-10-1-6-14(18(11)17(10)13)19(12)20(16)23/h1-9,16,20,22-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-7(10)4-3-5-1-2-6(13-5)8(11)12/h1-3H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO2S/c4-2(1-7)3(5)6/h2,7H,1,4H2,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18O3/c1-2-10-9-11-5-3-4-6-12(11)13-7-8-14-16(15(10)13)19-20(23-19)18(22)17(14)21/h3-9,17-22H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H12N4O2/c31-25-15-12-10-14-22-16(26(32)30-20-8-4-2-6-18(20)28-24(14)30)11-9-13(21(15)22)23-27-17-5-1-3-7-19(17)29(23)25/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7ClO/c4-2-1-3-5/h5H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17NO3/c1-3-16-11-6-4-10(5-7-11)13-12(15)8-9(2)14/h4-7,9,14H,3,8H2,1-2H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N4O6/c1-3-4(9(12)13)2-5(10(14)15)6(8)7(3)11(16)17/h2H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5ClO/c4-1-3-2-5-3/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H26O3/c1-7-8-13-12(4)16(10-15(13)20)22-18(21)17-14(9-11(2)3)19(17,5)6/h7,9,13-14,17H,1,8,10H2,2-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c14-13-10-6-8-12(9-7-10)15-11-4-2-1-3-5-11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-11-12-5-3-8-15-13-6-1-2-7-14(13)16-9-4-10-17(18)20(16)19(12)15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16Cl3NOS/c1-6(2)14(7(3)4)10(15)16-5-8(11)9(12)13/h6-7H,5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O4/c1-11-5-3-6-12(9-11)18-16(20)22-14-8-4-7-13(10-14)17-15(19)21-2/h3-10H,1-2H3,(H,17,19)(H,18,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11F/c21-18-11-10-15-14-9-8-12-4-1-2-5-13(12)19(14)17-7-3-6-16(18)20(15)17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11ClO2/c16-15(17)18-9-14-12-7-3-1-5-10(12)11-6-2-4-8-13(11)14/h1-8,14H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12N2O3/c1-8-13-9-5-3-4-6-10(9)19-16(13)14-15(18-8)11(20)7-12(22-2)17(14)21/h3-7,19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-5-2-3-6(8)7(9)4-5/h2-4,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H17ClN3O3PS/c1-5-14-17(18,15-6-2)16-9-11-8(10)13(12-9)7(3)4/h7H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19NO2/c22-21(23)16-10-14-6-5-13-9-12-3-1-2-4-17(12)18-8-7-15(11-16)19(14)20(13)18/h9-11H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N3PS/c11-10(7-1-2-7,8-3-4-8)9-5-6-9/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-4-14-12(3-1)5-7-17-15-9-10-18-11-13(15)6-8-16(14)17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19N3O2/c1-20(2)11-10-18-17(21)12-6-5-9-15-16(12)19-13-7-3-4-8-14(13)22-15/h3-9,19H,10-11H2,1-2H3,(H,18,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O/c1-9-2-4-10(5-3-9)6-7-11-8-12-11/h2-5,11H,6-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-14-8-5-13-7-9-16-15-4-2-1-3-12(15)6-10-17(16)18(13)11-14/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N5/c13-11-10-12(15-7-14-11)17(8-16-10)6-9-4-2-1-3-5-9/h1-5,7-8H,6H2,(H2,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7IO2/c4-1-3(6)2-5/h3,5-6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2/c14-11-6-3-5-10-8-9-4-1-2-7-12(9)15-13(10)11/h3,5-6,8H,1-2,4,7,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19FN4O4/c1-19-3-5-21(6-4-19)14-12(18)7-10-13-16(14)26-9-20(2)22(13)8-11(15(10)23)17(24)25/h7-8H,3-6,9H2,1-2H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-4-16-12(3-1)5-6-14-9-15-11-18-8-7-13(15)10-17(14)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N3O2/c1-3-6(4-2)7(9)5-8/h9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15NO4/c1-22-11-4-5-12-13(9-11)18(21)16-15-10(6-7-20-17(12)15)8-14(23-2)19(16)24-3/h4-9H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl2O2/c9-7(11)5-1-2-6(4-3-5)8(10)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c14-11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)13/h1-6,8H,7,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2/c11-10(12)6-1-2-7-5(3-6)4-8-9-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3O7/c15-5-8-9(16)10(17)11(21-8)13(12-18)6-1-3-7(4-2-6)14(19)20/h1-4,8-11,15-17H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H29N2S/c1-3-4-5-6-7-8-9-10-13-18-15-17-12-11-16(2)14-17/h11-12,14H,3-10,13,15H2,1-2H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O2/c19-16-10-7-12-6-8-14-13-4-2-1-3-11(13)5-9-15(14)17(12)18(16)20/h1-10,16,18-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-4-2-5-9-6-3-7-11-10(8)9/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O5/c15-8-5-9(16)14(19)11-10(8)12(17)6-3-1-2-4-7(6)13(11)18/h1-5,15-16,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2/c14-13-9-5-1-3-7-11(9)15-12-8-4-2-6-10(12)13/h1-8H,(H2,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-7-3-9-1-2-10-4-8-14(18(21)22)12-6-5-11(13)15(9)16(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Br/c8-6-7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClNO2/c10-5-11-8(12)6-3-1-2-4-7(6)9(11)13/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H17N/c1-17(2)16-12-10-15(11-13-16)9-8-14-6-4-3-5-7-14/h3-13H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-6-12-20-14(7-1)13-19-17-10-3-2-8-15(17)16-9-4-5-11-18(16)21(19)22-20/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-11-8-9-16-14-5-2-1-4-13(14)15-7-3-6-12(11)17(15)16/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10N2O4/c23-21(24)16-10-8-13-12-4-1-3-11-7-9-17(22(25)26)20(18(11)12)15-6-2-5-14(16)19(13)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15NO4/c1-22-11-4-5-12-13(9-11)18(21)17-15-10(6-7-20-17)8-14(23-2)19(24-3)16(12)15/h4-9H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N/c1-6-4-7(2)9(10)8(3)5-6/h4-5H,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12/c1-11-14-8-4-2-6-12(14)10-13-7-3-5-9-15(11)13/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10NO5PS/c1-12-15(16,13-2)14-8-5-3-7(4-6-8)9(10)11/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO6/c1-21-12-6-10-9(4-5-13(24-2)18(10)25-3)16-15(12)11(17(22)20(21)23)7-14-19(16)27-8-26-14/h4-7H,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O2/c9-7-5-1-2-6(8-10)4-3-5/h1-4,9-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N5O8/c1-8(12(19)20)7-5(10(15)16)2-4(9(13)14)3-6(7)11(17)18/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO/c12-11-10-6-5-8-3-1-2-4-9(8)7-10/h1-7,11-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-5-9-1-2-10-6-14(18(21)22)8-12-4-3-11(7-13)15(9)16(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O6/c1-20-10-6-11-14(8-4-5-21-17(8)22-11)15-13(10)7-2-3-9(18)12(7)16(19)23-15/h2-3,6,8,17-19H,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Cl2O/c4-1-3(5)2-6/h3,6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10N2O/c8-6-7-4-2-1-3-5-7/h1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N2/c1-3-7-11-9(5-1)10-6-2-4-8-12-10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13NO2/c1-12-18-14-7-3-2-6-13(14)10-11-16(18)15-8-4-5-9-17(15)19(12)20(21)22/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3/c1-11-7-5-3-2-4-6(7)10-8(11)9/h2-5H,1H3,(H2,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H18O2/c1-13-7-8-16-11-20-17-6-4-3-5-15(17)9-10-18(20)23-21(25-14(2)24)12-19(13)22(16)23/h3-11,21H,12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6ClN3O2S/c12-8-3-1-7(2-4-8)9-10(15(16)17)14-5-6-18-11(14)13-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17NO3/c1-10(2)15-8-12-16(23-15)9-14(21)17-18(12)20(3)13-7-5-4-6-11(13)19(17)22/h4-7,9,15,21H,1,8H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H4Cl2F3NO2S2/c10-7(9(12,13)14)8(11)19-18-6-4-2-1-3-5(6)15(16)17/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-10(17)16(18)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9,18H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O4/c1-20-13-8-7-10(9-12(13)16(18)19)14(17)15-11-5-3-2-4-6-11/h2-9H,1H3,(H,15,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H25N5O2/c1-23(2)13-7-12-21-19-14-8-5-6-9-15(14)22-20-17(24(3)4)11-10-16(18(19)20)25(26)27/h5-6,8-11H,7,12-13H2,1-4H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN/c7-5-1-3-6(8)4-2-5/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9Cl/c15-14-6-5-12-7-10-3-1-2-4-11(10)8-13(12)9-14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl3O4/c6-2(5(11)12)1(3(7)8)4(9)10/h3H,(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HBrClN/c3-2(4)1-5/h2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)14-9-10-5-1-2-6-11(10)12-7-3-4-8-13(12)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8Cl3NO/c13-7-5-10(14)12(11(15)6-7)17-9-3-1-8(16)2-4-9/h1-6H,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)10-6-4-9-5-7-12-11(13(9)8-10)2-1-3-14(12)16(19)20/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-5-1-3-7-4-2-6-11-9(7)8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6ClNO2/c1-2-3(4)5(6)7/h2H2,1H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H24O3/c1-13(2,3)8-6-4-5-7-12(14)16-10-11-9-15-11/h11H,4-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-7(11)9-10-8-5-3-2-4-6-8/h2-6,10H,1H3,(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7ClN2O3S/c12-8-2-1-3-9(5-8)13-11(15)7-4-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO3/c12-9-6-5-7-3-1-2-4-8(7)10(9)11(13)14/h1-6,12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H19ClNO5P/c1-6-12(7-2)10(13)9(11)8(3)17-18(14,15-4)16-5/h6-7H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21NO4/c1-3-10-7-11(19)8-13-12-5-6-22-17(4-2,9-14(20)21)16(12)18-15(10)13/h7-8,18-19H,3-6,9H2,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO4/c16-13-4-2-9-5-10-6-11(15(18)19)3-1-8(10)7-12(9)14(13)17/h1-7,13-14,16-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N/c15-14-10-8-13(9-11-14)7-6-12-4-2-1-3-5-12/h1-11H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2/c1-5-2-4-3-6-4/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11N3O/c13-11-12-6-2-4-9(12)8-3-1-5-10-7-8/h1,3,5,7,9H,2,4,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14ClNS2/c1-4-10(5-2)8(11)12-6-7(3)9/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O/c1-2-3-6-4(5)7/h2H,1,3H2,(H3,5,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c1-3-9-15-13(7-1)14-8-2-4-10-16(14)20-19(15)17-11-5-6-12-18(17)21-22(20)23-21/h1-12,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO3/c23-18-13-7-5-11-9-14-12-4-2-1-3-10(12)6-8-15(14)22-17(11)16(13)20-21(25-20)19(18)24/h1-9,18-21,23-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H16/c1-13-16-9-3-4-10-17(16)14(2)21-19-12-6-8-15-7-5-11-18(20(13)21)22(15)19/h3-12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O2/c4-2-1-3-5/h2-3H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3O4/c7-5-2-1-4(8(10)11)3-6(5)9(12)13/h1-3H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6N2S/c1-3-2-4(5)7-6-3/h2H,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H20N2/c1-3-7-21-17-25(11-9-19(21)5-1)27-23-13-15-24(16-14-23)28-26-12-10-20-6-2-4-8-22(20)18-26/h1-18,27-28H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19N/c1-2-3-12-19-17-15-10-6-4-8-13(15)14-9-5-7-11-16(14)18(17)19/h4-11,17-18H,2-3,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11F/c21-15-8-7-13-10-18-16-5-1-3-12-4-2-6-17(20(12)16)19(18)11-14(13)9-15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO4/c1-7(11)14-6-8-2-4-9(5-3-8)10(12)13/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H22N2/c1-18(2)16-9-5-14(6-10-16)13-15-7-11-17(12-8-15)19(3)4/h5-12H,13H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H23N5/c9-1-3-11-5-7-13-8-6-12-4-2-10/h11-13H,1-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7NO3/c15-13-11-4-2-1-3-9(11)10-6-5-8(14(16)17)7-12(10)13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO2/c1-11(20)19(21)16-10-8-14-6-5-12-3-2-4-13-7-9-15(16)18(14)17(12)13/h2-10,21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO4/c11-10(12)7-1-3-8(4-2-7)13-5-9-6-14-9/h1-4,9H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12O2/c1-2-4-11-7-12(6-5-10(11)3-1)14-8-13-9-15-13/h1-7,13H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O/c18-17-14-8-4-3-7-13(14)15-9-11-5-1-2-6-12(11)10-16(15)17/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N3/c1-14-11-7-9-13(10-8-11)16-15-12-5-3-2-4-6-12/h2-10,14H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-4-2-7-16-12-17-9-8-14-5-3-6-15-10-11-18(19(13)16)21(17)20(14)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl2N/c6-4-2-1-3-8-5(4)7/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O2/c8-5-6-2-1-3-7(4-6)9(10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H18N2O3/c1-20(2)11-10-19-18(22)14-8-5-7-13-16(21)12-6-3-4-9-15(12)23-17(13)14/h3-9H,10-11H2,1-2H3,(H,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15Cl6O4P/c10-1-7(2-11)17-20(16,18-8(3-12)4-13)19-9(5-14)6-15/h7-9H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14BrNO3/c1-7(12)11(15)13-6-8-3-4-9(14)10(5-8)16-2/h3-5,7,14H,6H2,1-2H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H17N5O3/c1-2-18-8-10(13(21)22)11(20)9-7-16-14(17-12(9)18)19-5-3-15-4-6-19/h7-8,15H,2-6H2,1H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12NO6P/c1-7-6-8(4-5-9(7)10(11)12)16-17(13,14-2)15-3/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)10-5-6-12-13(8-10)11-4-2-1-3-9(11)7-14(12)16(19)20/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO2/c10-9(11)7-6-8-4-2-1-3-5-8/h1-6H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O5/c1-20-14-5-3-4-11-10(14)6-7-12-13(18(19)21-2)8-15-17(16(11)12)23-9-22-15/h3-8H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O3S/c1-13-8-6-3-2-5(10(11)12)4-7(6)14-9-8/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7Cl3O/c6-1-2-9-4-5(8)3-7/h3H,1-2,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7Br2NO2/c15-8-5-9(16)12(17)11-10(8)13(18)6-3-1-2-4-7(6)14(11)19/h1-5H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N5/c1-11-3-10-4-5(7)8-2-9-6(4)11/h2-3H,1H3,(H2,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9N3/c1-14-7-13-11-8-3-2-6-12-9(8)4-5-10(11)14/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14/c1-10-7-8-13-11(2)12-5-3-4-6-14(12)15(13)9-10/h3-9,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3ClN2O2S/c8-7-5-2-1-4(10(11)12)3-6(5)13-9-7/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7N3O5S/c15-11(7-4-10(14(18)19)20-6-7)12-8-2-1-3-9(5-8)13(16)17/h1-6H,(H,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9Cl/c15-14-12-7-3-1-5-10(12)9-11-6-2-4-8-13(11)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Cl2O2/c1-11-7-3-6(10)8(12-2)4-5(7)9/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10N6O3/c23-16-15-14(12-3-1-2-4-13(12)18-15)19-20-21(16)17-9-10-5-7-11(8-6-10)22(24)25/h1-9,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO7/c18-11-3-1-2-7-8(11)4-10(17(21)22)13-9(16(19)20)5-12-15(14(7)13)24-6-23-12/h1-5,18H,6H2,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15N3O3/c12-9(11(16)17)6-7-10(15)14-13-8-4-2-1-3-5-8/h1-5,9,13H,6-7,12H2,(H,14,15)(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO3/c1-2-12-8-5-3-7(4-6-8)9(10)11/h2-6H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12O2/c1-14(16-15)12-8-4-2-6-10(12)11-7-3-5-9-13(11)14/h2-9,15H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10N2O2/c16-11-14-3-1-2-13(10-14)5-4-12-6-8-15(9-7-12)17(18)19/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13NO2/c18-17(19)14-8-12-6-4-10-2-1-3-11-5-7-13(9-14)16(12)15(10)11/h1-3,8-9H,4-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-5-4-7-15-12-19-16(11-18(13)15)10-9-14-6-2-3-8-17(14)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2S/c1-9-2-7-12-13(8-9)17-14(16-12)10-3-5-11(15)6-4-10/h2-8H,15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N/c1-3-7-4-2-6-9-10(7)8(5-1)11-12(9)13-11/h1-6,11-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14N4O2/c1-7(2,3)13-6(12)5(8)4-10-11-9/h5H,4,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12Cl2N2O3/c13-3-5-15(6-4-14)10-2-1-9-7-12(16(17)18)19-11(9)8-10/h1-2,7-8H,3-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c17-12-16(18)15-10-8-14(9-11-15)7-6-13-4-2-1-3-5-13/h1-12,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11Cl2N/c1-8(4-2-6)5-3-7/h2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO/c1-11(16)15-14-9-7-13(8-10-14)12-5-3-2-4-6-12/h2-10H,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6O3S/c1-5-6(2,3)4/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-11-19-18-7-3-2-5-15(18)12-16-10-9-14-6-4-8-17(13)20(14)21(16)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10ClN/c14-15-11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)13/h1-6,8,15H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O/c1-8(14)13-10-4-5-11-9(7-10)3-2-6-12-11/h2-7H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)19-9-8-15-18-11-13-5-2-1-4-12(13)10-17(18)14-6-3-7-16(19)20(14)15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O/c1-2-4-13(5-3-1)14-8-6-12(7-9-14)10-15-11-16-15/h1-9,15H,10-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2O2/c1-14-12-5-3-2-4-10(12)11-8-9(15(16)17)6-7-13(11)14/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18O2/c1-2-3-4-5-6-10-7-9-8-11-9/h9H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O/c18-10-11-8-14-6-4-12-2-1-3-13-5-7-15(9-11)17(14)16(12)13/h1-9,18H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O4S/c1-3-7-9(5,6)8-4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Br2/c9-6-8(10)7-4-2-1-3-5-7/h1-5,8H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8N2O/c1-2-3-4-5-6/h2-3H2,1H3,(H,4,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O2/c11-8-4-5-9-7(6-8)2-1-3-10(9)12/h1-6,11-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3/c1-7-6-9-8-4-2-3-5-10(8)14-12(9)15-11(7)13/h2-6H,1H3,(H3,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-18-11-17-13-6-2-1-5-12(13)9-10-15(17)14-7-3-4-8-16(14)18/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5Cl3/c8-7(9,10)6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O/c1-2-3-4/h2-3H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O4/c1-2-11(18)14-9-5-3-7-12(19)15(9)17(21)16-10(14)6-4-8-13(16)20/h3-8,19-21H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13N/c21-18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h1-11H,21H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2O3/c1-6(5-9)2-4(8)3-7/h4,7-8H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12O2/c1-2-6-12-10(4-1)5-3-7-13(12)15-9-11-8-14-11/h1-7,11H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c1-2-4-8(5-3-1)10-6-9-7-11-9/h1-5,9H,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O7/c13-3-7-6(14)1-8(19-7)12-2-5(4-18-17)9(15)11-10(12)16/h2,6-8,13-14,17H,1,3-4H2,(H,11,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7Br2Cl/c1-3(7)4(6)2-5/h3-4H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2S/c8-6-3-1-2-5-4-9-10-7(5)6/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3ClO2/c4-2-1-3(5)6/h1-2H,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)11-5-3-9-1-2-10-4-6-12(16(19)20)8-14(10)13(9)7-11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-3-4(2)5-3/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H19Cl2NO7P2/c1-9-2-3-10(8-11(9)15(6-4-13)7-5-14)12(16,23(17,18)19)24(20,21)22/h2-3,8,16H,4-7H2,1H3,(H2,17,18,19)(H2,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2Cl2O3/c5-2(1-7)3(6)4(8)9/h1H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14N2O3/c1-21-12-6-11(19)13-14-9(7-17-15(13)16(12)20)8-4-2-3-5-10(8)18-14/h6-7,18H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24N2O2S/c1-3-22(4-2)12-11-21-16-10-9-14(13-23)20-18(16)19(24)15-7-5-6-8-17(15)25-20/h5-10,21,23H,3-4,11-13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H15NO6/c1-12(26)30-23-18-9-5-8-16-14-6-3-4-7-15(14)17-10-11-19(25(28)29)22(21(17)20(16)18)24(23)31-13(2)27/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2ClNO2/c2-1-3(4)5/h1H,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O2/c1-6(12)11-8-4-3-7(10)5-9(8)13-2/h3-5H,10H2,1-2H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16BrNO3S/c1-6(10)4-15-5-8(9(13)14-3)11-7(2)12/h6,8H,4-5H2,1-3H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10ClNO/c10-6-9(12)11-7-8-4-2-1-3-5-8/h1-5H,6-7H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11F/c21-14-8-10-15-13(11-14)7-9-17-16-5-1-3-12-4-2-6-18(19(12)16)20(15)17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N3O2/c1-9-14-10-4-2-3-5-11(10)20-17(14)15-16(19-9)13(22)8-12(18(15)23)21-6-7-21/h2-5,8,20H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11BrClNO/c1-7(11)10(14)13-6-8-2-4-9(12)5-3-8/h2-5,7H,6H2,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H32FN5O2/c1-16-9-6-7-13-29(16)14-8-12-25-15-20(30)26-23-21(17(2)27-28(23)3)22(31)18-10-4-5-11-19(18)24/h4-5,10-11,16,25H,6-9,12-15H2,1-3H3,(H,26,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO2/c20-19(21)14-7-10-16-13(11-14)6-9-17-15-4-2-1-3-12(15)5-8-18(16)17/h5,7-8,10-11H,1-4,6,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12N2/c16-11-14-3-1-2-13(10-14)5-4-12-6-8-15(17)9-7-12/h1-10H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO4/c1-2-10(12)15-7-8-3-5-9(6-4-8)11(13)14/h3-6H,2,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Br2/c1-3(5)2-4/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c1-5-2-3-6(8(10)11)4-7(5)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H23NO/c1-3-5-14-21-19-12-8-17(9-13-19)15-20-18-10-6-16(4-2)7-11-18/h6-13,15H,3-5,14H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O5/c10-4-5-1-2-6(8(11)12)3-7(5)9(13)14/h1-3,10H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3O7/c15-8-5-21-11(10(17)9(8)16)13(12-18)6-1-3-7(4-2-6)14(19)20/h1-4,8-11,15-17H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-10(9-11)7-8-5-3-2-4-6-8/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4N2O3S/c6-5(8)3-1-4(7(9)10)11-2-3/h1-2H,(H2,6,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H6N2O8/c17-7-3-1-5(15(21)22)9-11(7)14(20)12-8(18)4-2-6(16(23)24)10(12)13(9)19/h1-4,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10O2/c14-13-9-5-1-3-7-11(9)15-12-8-4-2-6-10(12)13/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8Cl2N2O4/c14-7-1-4-12(18)9(5-7)13(19)16-11-3-2-8(17(20)21)6-10(11)15/h1-6,18H,(H,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-8-5-1-3-7-4-2-6-11-9(7)8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O5/c1-7-3-9-13(11(17)4-7)16(20)14-10(15(9)19)5-8(21-2)6-12(14)18/h3-6,17-18H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4O4/c1-14(2,3)22-13(19)16-15-8-10-9-17(20)11-6-4-5-7-12(11)18(10)21/h4-9H,1-3H3,(H,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO2/c1-9(14)13(15)12-7-6-10-4-2-3-5-11(10)8-12/h2-8,15H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO4/c1-3-15-10-5-8(13)7(4-9(10)14)11-6(2)12/h5H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c1-2-6-15-13(5-1)9-10-14-11-19-16-7-3-4-8-17(16)21-22(23-21)20(19)12-18(14)15/h1-12,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-3-7-18-16(5-1)17-6-2-4-8-19(17)21-12-15-13-22-10-9-14(15)11-20(18)21/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O/c1-8-2-4-9(5-3-8)6-10-7-11-10/h2-5,10H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO4/c10-8(11)5-6-3-1-2-4-7(6)9(12)13/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O/c1-10-7-4-5(8)2-3-6(7)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-14-12-7-3-1-5-10(12)9-11-6-2-4-8-13(11)14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19NO4/c1-21-7-6-11-8-16-20(25-10-24-16)18-12-4-5-15(22-2)19(23-3)13(12)9-14(21)17(11)18/h4-5,8-9H,6-7,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-4-5-10-9(7-8)3-2-6-11-10/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15N5/c1-6-5-9-10(16-8(3)7(2)15-9)11-12(6)18(4)13(14)17-11/h5H,1-4H3,(H2,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5NO4/c5-3(6)1-2-4(7)8/h2H,1H2,(H,5,6)(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3/c7-4-1-2-5(8)6(9)3-4/h1-3,7-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO2/c15-11-6-5-9-10(13(11)16)4-3-8-2-1-7-14-12(8)9/h1-7,11,13,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO4/c1-21-10-2-3-11-12(7-10)17(20)16-14-9(4-5-19-16)6-13-18(15(11)14)23-8-22-13/h2-7H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl5O2/c6-2(5(11)12)1(3(7)8)4(9)10/h3-4H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N4O4S/c1-7-6-14-11(16(19)20)10(13-12(14)21-7)8-2-4-9(5-3-8)15(17)18/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O5/c1-18-9-4-5-12-11(6-9)16(17)15-13(20-3)7-10(19-2)8-14(15)21-12/h4-8H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO3/c11-7-1-2-8-3-5-9(6-4-8)10(12)13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14O/c20-12-19-16-8-4-2-6-14(16)11-18-15-7-3-1-5-13(15)9-10-17(18)19/h1-11,20H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12ClN/c15-13-7-3-11(4-8-13)1-2-12-5-9-14(16)10-6-12/h1-10H,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-12-7-8-14-11(9-12)6-5-10-3-1-2-4-13(10)14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12ClNO3/c1-10(17)16(18)12-4-8-14(9-5-12)19-13-6-2-11(15)3-7-13/h2-9,18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9N3O2/c1-2-3-7(6-9)4(5)8/h2-3H2,1H3,(H2,5,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2/c19-17-9-5-15(6-10-17)13-1-2-14(4-3-13)16-7-11-18(20)12-8-16/h1-12H,19-20H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO/c1-10(17)16-13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO/c14-13-12-8-4-7-11(9-12)10-5-2-1-3-6-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15N/c1-3-7-16-14(5-1)9-11-20-18(16)13-19-17-8-4-2-6-15(17)10-12-21(19)22-20/h1,3-5,7-13H,2,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O/c18-17-14-8-2-1-7-12(14)13-9-3-5-11-6-4-10-15(17)16(11)13/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-9-7-4-2-6(8)3-5-7/h2-5H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17N3O4/c13-10(12(18)19)5-6-11(17)15-14-9-3-1-8(7-16)2-4-9/h1-4,10,14,16H,5-7,13H2,(H,15,17)(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl5/c8-4-1-2-5(6(9)3-4)7(10,11)12/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O5/c15-12-5-4-9(7-11(12)14(18)19)8-2-1-3-10(6-8)13(16)17/h1-7,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14N2O4/c1-8(2)7-12-10(14)5-3-9-4-6-11(17-9)13(15)16/h3-6,8H,7H2,1-2H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-4-1-5-9-7(8)3-2-6-11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H30O8/c1-12(2)6-18(24)29-17-8-16-15(9-26-14(5)23)10-27-21(20(16)22(17)11-28-22)30-19(25)7-13(3)4/h8,10,12-13,17,20-21H,6-7,9,11H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO2/c16-15(17)14-10-8-13(9-11-14)7-6-12-4-2-1-3-5-12/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O2S/c10-9(11)6-3-1-2-5-4-8-12-7(5)6/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N3O2/c7-8-5-1-3-6(4-2-5)9(10)11/h1-4H/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14O/c1-11-13-7-3-2-6-12(13)10-16-14-8-4-5-9-15(14)18-19(20-18)17(11)16/h2-10,18-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O4/c1-5-3-4-7(9(11)12)6(2)8(5)10(13)14/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N5/c6-4-3-5(9-1-7-3)10-2-8-4/h1-2H,(H3,6,7,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-8-5-1-3-7-4-2-6-10-9(7)8/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO3/c9-5-6-1-3-7(4-2-6)8(10)11/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N3/c14-13(15-11-7-3-1-4-8-11)16-12-9-5-2-6-10-12/h1-10H,(H3,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21NO4/c1-3-10-13(19)6-5-11-12-7-8-22-17(4-2,9-14(20)21)16(12)18-15(10)11/h5-6,18-19H,3-4,7-9H2,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O6/c15-6-3-4-7(16)11-10(6)12(18)5-1-2-8(17)13(19)9(5)14(11)20/h1-4,17-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H16O2/c1-14(24)25-13-21-18-8-3-2-7-17(18)19-11-9-15-5-4-6-16-10-12-20(21)23(19)22(15)16/h2-12H,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c15-8-5-6-11-12(7-8)14(17)10-4-2-1-3-9(10)13(11)16/h1-7H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O3/c1-5(9)3-8(7-11)4-6(2)10/h5,9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O3/c21-17-13-7-6-11-12-5-4-9-2-1-3-10(15(9)12)8-14(11)16(13)19-20(23-19)18(17)22/h1-8,17-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-9-16-7-4-8-17-18-11-14-5-2-3-6-15(14)12-19(18)20(10-13)21(16)17/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-16-10-15-6-3-5-13-8-9-18-17-7-2-1-4-14(17)11-19(16)21(18)20(13)15/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO3/c14-13(15)8-5-6-12-10(7-8)9-3-1-2-4-11(9)16-12/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-5-14-11-16-15(10-13(14)4-1)8-7-12-6-3-9-18-17(12)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2/c11-9-5-7-3-1-2-4-8(7)6-10(9)12/h1-6H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-8-4-1-5-9-7(8)3-2-6-11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13N3O3/c1-22-16(21)19-15-17-12-8-7-11(9-13(12)18-15)14(20)10-5-3-2-4-6-10/h2-9H,1H3,(H2,17,18,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Cl2O/c4-1-3(6)2-5/h3,6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N/c13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl3O3/c6-3(5(10)11)2(1-9)4(7)8/h1,4H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO2/c20-19(21)18-11-17-13-6-2-1-5-12(13)9-10-15(17)14-7-3-4-8-16(14)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12NO4PS2/c1-15-17(18,16-2)19-7-12-10(13)8-5-3-4-6-9(8)11(12)14/h3-6H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O3/c1-3(7)6(9)4(8)5-2/h9H,1-2H3,(H,5,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O2/c1-7(13)10-11-9-4-2-8(6-12)3-5-9/h2-5,11-12H,6H2,1H3,(H,10,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7N3S/c1-2-4-8-7(3-1)12-10(13-8)9-5-14-6-11-9/h1-6H,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O2/c1-2-6-3-5-4-7-5/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20N4O/c1-13(22)21(4)17-11-7-15(8-12-17)19-18-14-5-9-16(10-6-14)20(2)3/h5-12H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O2/c1-9(2,11-10)8-6-4-3-5-7-8/h3-7,10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14S2/c1-3-7-13(8-4-1)11-15-16-12-14-9-5-2-6-10-14/h1-10H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-3-5(7)6(8)4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11ClS/c10-6-7-11-8-9-4-2-1-3-5-9/h1-5H,6-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21ClN4/c22-10-14-23-11-4-13-25-20-16-6-1-2-7-18(16)26-21-17(20)9-8-15-5-3-12-24-19(15)21/h1-3,5-9,12,23H,4,10-11,13-14H2,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H20O8/c1-21(2,26)6-5-10-3-4-11(23)14-17(24)15-12(29-19(10)14)9-13-16(18(15)25)22(27)7-8-28-20(22)30-13/h3-4,7-9,20,23,25-27H,5-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4N4/c3-1-6-2(4)5/h(H4,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2Br2/c2-1-3/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N3/c1-8-4-6-9(7-5-8)10-11-12(2)3/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N4O2/c1-20(2)11-9-18-16(22)13-7-5-10-21-15(13)19-14-8-4-3-6-12(14)17(21)23/h3-8,10H,9,11H2,1-2H3,(H,18,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-11-9-4-2-8(3-5-9)6-10-7-12-10/h2-5,10H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16BrNO3/c1-8(13)12(15)14-7-9-4-5-10(16-2)11(6-9)17-3/h4-6,8H,7H2,1-3H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl5/c8-5-2-1-4(3-6(5)9)7(10,11)12/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3N3O4S/c8-4-15-7-2-1-5(9(11)12)3-6(7)10(13)14/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N2/c1-5-11-6-2-9(1)10-3-7-12-8-4-10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O2/c7-8-5-1-3-6(4-2-5)9(10)11/h1-4,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5ClO3/c6-2-3-1-4(7)9-5(3)8/h1,5,8H,2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N4O2/c15-5-1-2-6(16)10-9(5)13(19)11-7(17)3-4-8(18)12(11)14(10)20/h1-4,15-16,19-20H,17-18H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O2/c1-21(2)11-5-10-19-18-14-6-3-4-7-16(14)20-17-12-13(22(23)24)8-9-15(17)18/h3-4,6-9,12H,5,10-11H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O6/c1-20-10-6-11-14(8-4-5-21-17(8)22-11)15-13(10)7-2-3-9(18)12(7)16(19)23-15/h2-6,8,17-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2OS/c1-11-8-6-3-2-5(9)4-7(6)12-10-8/h2-4H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2Cl2/c2-1-3/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-4-1-2-5(7(10)11)6(3-4)8(12)13/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4S/c1-2-3-1/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O/c1-2-4-8-6-9-5-7(8)3-1/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H28N4O6/c27-11-9-23-5-7-25-13-1-2-14(26-8-6-24-10-12-28)18-17(13)21(31)19-15(29)3-4-16(30)20(19)22(18)32/h1-4,23-28,31-32H,5-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14/c1-10-6-5-9-13-11(2)12-7-3-4-8-14(12)15(10)13/h3-9,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7N3O5S/c15-11(7-5-10(14(18)19)20-6-7)12-8-3-1-2-4-9(8)13(16)17/h1-6H,(H,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl2NO2/c7-5-2-1-4(9(10)11)3-6(5)8/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N5O/c22-16-15-14(12-8-4-5-9-13(12)18-15)19-20-21(16)17-10-11-6-2-1-3-7-11/h1-10,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N/c1-12-7-10-18-17(11-12)13(2)15-9-8-14-5-3-4-6-16(14)19(15)20-18/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14/c1-2-8-16-14-22-20-12-6-4-10-18(20)17-9-3-5-11-19(17)21(22)13-15(16)7-1/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O7/c1-23-12-8-13-15(10-6-7-25-20(10)27-13)18-16(12)17(21)14-9(19(22)24-2)4-3-5-11(14)26-18/h3-8,10,20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-7-8-14-10-13-5-3-4-6-15(13)12(2)16(14)9-11/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N4O2/c1-16-11-7-10(9-5-3-2-4-6-9)8-14-12(11)15-13(16)17(18)19/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4/c13-7-5-11-12(6-8(7)14)16-10-4-2-1-3-9(10)15-11/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14Cl2N2O4/c1-20-11-3-2-10(16(6-4-14)7-5-15)13-9(11)8-12(21-13)17(18)19/h2-3,8H,4-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O/c1-2-4-6-5(3-1)7-6/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O3/c21-17-13-8-7-11-10-5-1-3-9-4-2-6-12(14(9)10)15(11)16(13)19-20(23-19)18(17)22/h1-8,17-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20N4O2/c21-11-9-17-13-1-5-15(6-2-13)19-20-16-7-3-14(4-8-16)18-10-12-22/h1-8,17-18,21-22H,9-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO/c22-20(14-6-2-1-3-7-14)21-17-10-11-19-16(13-17)12-15-8-4-5-9-18(15)19/h1-11,13H,12H2,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8O2/c1-7-6-10(12)8-4-2-3-5-9(8)11(7)13/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H26O3/c1-16(2)13-20-21(23(20,3)4)22(24)25-15-17-9-8-12-19(14-17)26-18-10-6-5-7-11-18/h5-14,20-21H,15H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16O/c1-10(2)12-5-4-11(3)14-7-6-13(9-16)15(14)8-12/h4-8,16H,1,9H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O/c18-17-14-8-4-3-7-13(14)16-12-6-2-1-5-11(12)9-10-15(16)17/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12O3S/c1-4-5(2)8-9(3,6)7/h5H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16O4/c1-2-5-12(19)15-10-6-3-8-13(20)16(10)18(22)17-11(15)7-4-9-14(17)21/h3-4,6-9,20-22H,2,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H16O2/c23-21-10-9-17-18(22(21)24)8-7-15-11-19-14(12-20(15)17)6-5-13-3-1-2-4-16(13)19/h1-12,21-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N2O2/c15-16-11-7-3-6-10-12(11)14(18)9-5-2-1-4-8(9)13(10)17/h1-7H/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16O2/c1-2-6-13(7-3-1)10-14-8-4-5-9-16(14)18-12-15-11-17-15/h1-9,15H,10-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-15-9-8-13-11-5-2-1-4-10(11)12-6-3-7-14(15)16(12)13/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO3/c1-4(8)5(9)6-2-3-7/h4,7-8H,2-3H2,1H3,(H,6,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15Cl/c1-13-15-7-4-5-9-17(15)19(12-21)18-11-10-14-6-2-3-8-16(14)20(13)18/h2-11H,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO5/c1-16-11-7-3-4-18-14(7)15-10-8(11)5-9-12(13(10)17-2)20-6-19-9/h3-5H,6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl5O/c4-2(5)1(9)3(6,7)8/h2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5O/c1-6-4-14-8-3-7(5-18)11-10(9(8)15-6)16-12(13)17(11)2/h3-4,18H,5H2,1-2H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O4/c1-21-15-7-11(3-5-13(15)17-9-19)12-4-6-14(18-10-20)16(8-12)22-2/h3-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-6-7-14-8-9-16-12-15-4-2-3-5-18(15)19-11-10-17(13)20(14)21(16)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13N3O5/c1-2-3-4-7(8(10)11)5-6-14-9(12)13/h2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3ClO/c1-3(4)2-5/h2H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21NO4/c1-21-5-4-11-7-17-20(25-10-24-17)19-13-9-16(23-3)15(22-2)8-12(13)6-14(21)18(11)19/h7-9,14H,4-6,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO3/c1-11(16)15(17)12-7-9-14(10-8-12)18-13-5-3-2-4-6-13/h2-10,17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO4/c9-7(10)5-3-1-2-4-6(5)8(11)12/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO2/c22-21(23)18-11-12-5-3-8-15-13-6-1-2-7-14(13)16-9-4-10-17(18)20(16)19(12)15/h3-5,8-11H,1-2,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO5/c1-7(2)15-10(12)6-4-8-3-5-9(16-8)11(13)14/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-14-8-4-10-2-1-9-3-7-13(17(19)20)11-5-6-12(14)16(10)15(9)11/h1-8,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-6-3-4-8(9)7(2)5-6/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O5/c16-10-4-1-8(2-5-10)13-11-6-3-9(14(17)18)7-12(11)15(19)20/h1-7,13,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8-6-7-9-4-2-3-5-10(9)11(8)12(13)14/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2/c21-18-8-7-12-9-16-13-5-1-3-11-4-2-6-14(19(11)13)17(16)10-15(12)20(18)22/h1-10,18,20-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO3/c11-7-3-5-8-4-1-2-6-9(8)10(12)13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12N2/c16-11-14-5-3-12(4-6-14)1-2-13-7-9-15(17)10-8-13/h1-10H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO4/c9-7(10)5-1-3-6(4-2-5)8(11)12/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9N3O/c1-12(11-13)7-9-4-2-3-8(5-9)6-10/h2-5H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N3O2/c1-4-2-5(8)3-6(7(4)9)10(11)12/h2-3H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O5S/c11-8-5-9(16(13,14)15)6-3-1-2-4-7(6)10(8)12/h1-5H,(H,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO3/c1-19-15-4-2-3-13(11-15)6-5-12-7-9-14(10-8-12)16(17)18/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O2/c1-10(17)16-12-4-8-14(9-5-12)18-13-6-2-11(15)3-7-13/h2-9H,15H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O5/c1-6-2-8-12(10(17)3-6)15(20)13-9(14(8)19)4-7(16)5-11(13)18/h2-5,16-18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N5O/c11-10-5-3-4(7-1-6-3)8-2-9-5/h1-2,11H,(H2,6,7,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)9-4-5-10-11(7-9)13(17(22)23)6-8-2-1-3-12(14(8)10)16(20)21/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O5/c1-2-14-7-4-9-8(18-5-19-9)3-6(7)11(15)10(13-14)12(16)17/h3-4H,2,5H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2/c1-11(2)9-5-7-10(8-6-9)12(3)4/h5-8H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O6/c16-13(17)9-3-1-2-8(6-9)11-5-4-10(14(18)19)7-12(11)15(20)21/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-2-9-7-4-3-5-8(10)6-7/h3-6,9-10H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4O4/c14-10-3-1-8(12(6-10)16(18)19)5-9-2-4-11(15)7-13(9)17(20)21/h1-4,6-7H,5,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-8-4-1-5-9-7(8)3-2-6-11-9/h1-6H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H5F2N/c10-7-3-4-8(11)9-6(7)2-1-5-12-9/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2O2/c14-10-1-3-12-8(6-10)5-9-7-11(15(16)17)2-4-13(9)12/h1-4,6-7H,5,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)19-11-18-15-9-8-12-4-1-2-6-14(12)17(15)10-13-5-3-7-16(19)20(13)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O2/c1-12-10-5-2-9(3-6-10)4-7-11-8-13-11/h2-3,5-6,11H,4,7-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O2/c13-8-5-6-10-11(12(8)15(16)17)7-3-1-2-4-9(7)14-10/h1-6,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16N2O/c1-8-6-12(16)9(2)14-11-7-10(18-3)4-5-13(11)17-15(8)14/h4-7,17H,16H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO/c14-13-12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-6-7-9-4-2-3-5-10(9)11-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO3/c15-10-7-4-3-6-2-1-5-14-9(6)8(7)12-13(17-12)11(10)16/h1-5,10-13,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5Cl3/c4-1-3(6)2-5/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl3O3/c1-11-6-2(4(8)9)3(7)5(10)12-6/h4,6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO/c1-6-3-2-4-7(5-6)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N4O3S/c1-7-6-15-11(14-17)10(13-12(15)20-7)8-2-4-9(5-3-8)16(18)19/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-4-8(10-2)7(9)5-6/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15NO/c1-17-15-10-6-13(7-11-15)3-2-12-4-8-14(16)9-5-12/h2-11H,16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15Cl2N2O4P/c8-2-4-11(5-3-9)16(10,14)15-6-1-7(12)13/h1-6H2,(H2,10,14)(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7NS/c13-8-12-11-7-3-5-9-4-1-2-6-10(9)11/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9BrO3/c1-14-8-4-2-7(3-5-8)9(11)6-10(12)13/h2-6H,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2O/c1-2-11-8-4-3-6(9)5-7(8)10/h3-5H,2,9-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N4O/c1-12(21)17-13-4-6-14(7-5-13)18-19-15-8-10-16(11-9-15)20(2)3/h4-11H,1-3H3,(H,17,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11Cl2NO3/c1-9(18)17(19)11-3-5-12(6-4-11)20-14-7-2-10(15)8-13(14)16/h2-8,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N5/c1-6-5-7-8(14-4-3-13-7)9-10(6)16(2)11(12)15-9/h3-5H,1-2H3,(H2,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CBr3NO2/c2-1(3,4)5(6)7">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N4O4S/c21-9-7-19(8-10-22)16-11-3-1-2-4-12(11)17-15(18-16)13-5-6-14(25-13)20(23)24/h1-6,21-22H,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18O5/c1-12(2)4-9-13(19,6-12)3-8(5-16)14-7-15(9,14)11(18)20-10(14)17/h3,5,9-10,17,19H,4,6-7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4/c13-7-3-1-5-9-11(7)16-10-6-2-4-8(14)12(10)15-9/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13ClO2/c19-17-11-4-2-1-3-10(11)9-15-12-7-8-16(20)18(21)14(12)6-5-13(15)17/h1-9,16,18,20-21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O2S/c10-9(11)6-1-2-7-5(3-6)4-8-12-7/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2/c21-17-9-8-14-15-7-6-12-3-1-2-11-4-5-13(19(15)18(11)12)10-16(14)20(17)22/h1-10,17,20-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)11-5-6-13-10(7-11)2-1-9-3-4-12(16(19)20)8-14(9)13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O2/c15-14(16)8-5-6-10-9-3-1-2-4-11(9)13-12(10)7-8/h1-7,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2N2O2/c7-4-1-3(10(11)12)2-5(8)6(4)9/h1-2H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NS/c11-8-10-7-6-9-4-2-1-3-5-9/h1-5H,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H20O3/c1-2-3-4-5-6-7-8-9-10-16-12-13(15)11-14/h3-10,13-15H,2,11-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO2/c22-21(23)18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h1,3,5-11H,2,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14N2O4/c23-21(24)16-10-17(22(25)26)19-14-6-2-1-5-12(14)13-7-3-4-11-8-9-15(16)20(19)18(11)13/h3-4,7-10H,1-2,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O/c1-2-3-1/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4O2/c1-6-4-8-9(5-7(6)2)17(3)11-10(14-8)12(18)16-13(19)15-11/h4-5H,1-3H3,(H,16,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO4/c10-8(11)5-6-1-3-7(4-2-6)9(12)13/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8-10-5-3-2-4-9(10)6-7-11(8)12(13)14/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15NO3/c1-12(18)17(20-13(2)19)16-10-8-15(9-11-16)14-6-4-3-5-7-14/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-2-11-4-5-15-13-6-7-16-14(8-9-18-20(16)21-18)17(13)10-12(3-1)19(11)15/h1-10,18,20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N4O5/c10-9(14)5-3-7(11-1-2-11)8(13(17)18)4-6(5)12(15)16/h3-4H,1-2H2,(H2,10,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6Br2O2/c5-3(1-7)4(6)2-8/h7-8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8O6/c14-5-3-8(17)10-9(4-5)19-13-7(16)2-1-6(15)11(13)12(10)18/h1-4,14-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N2O6/c15-13(16)7-1-3-9-11(5-7)20-10-4-2-8(14(17)18)6-12(10)19-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O3/c7-3-1-2-4-6(9-4)5(3)8/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO6S/c11-10(12)7-2-1-3-9(4-7)17(13,14)16-6-8-5-15-8/h1-4,8H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N4O5/c13-6-4-11(8(14)10-6)9-3-5-1-2-7(17-5)12(15)16/h1-3H,4H2,(H,10,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO/c1-10(7-12-10)9-4-2-8(6-11)3-5-9/h2-5H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11F/c21-19-9-3-6-13-10-17-14-7-1-4-12-5-2-8-15(20(12)14)18(17)11-16(13)19/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7ClO2/c4-1-3(6)2-5/h3,5-6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O6/c1-4-6(9(13)14)2-5(8(11)12)3-7(4)10(15)16/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2O3/c1-2-12(8-6-4-3-5-7-8)9(15)13-11(17)14-10(12)16/h3-7H,2H2,1H3,(H2,13,14,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5N3O9/c7-4(8)13-1-3(15-6(11)12)2-14-5(9)10/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10Br2O2/c1-5(2)7(10)11-4-6(9)3-8/h6H,1,3-4H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19N3O/c1-21(2)11-10-19-18(22)14-7-5-9-17-15(14)12-13-6-3-4-8-16(13)20-17/h3-9,12H,10-11H2,1-2H3,(H,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2/c15-13-8-6-11(7-9-13)4-5-12-2-1-3-14(16)10-12/h1-10H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-12-2-4-13(5-3-12)6-7-14-8-10-15(11-9-14)16(17)18/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H30Cl2N4O/c1-3-5-15-30-21-10-9-19-23(28-21)22(18-8-7-17(25)16-20(18)27-19)26-12-6-13-29(4-2)14-11-24/h7-10,16H,3-6,11-15H2,1-2H3,(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5ClO/c4-2-1-3-5/h1-2,5H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16N2O6S/c11-3-4(12)5(13)6(14)7(15)8-10(9-16)1-2-17-8/h4-8,11-15H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO2S/c1-2-4-9-8(3-1)10(11-14-9)13-6-7-5-12-7/h1-4,7H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16O2/c1-2-4-13(5-3-1)10-14-6-8-15(9-7-14)17-11-16-12-18-16/h1-9,16H,10-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N4/c1-20(13-5-12-17)16-10-8-15(9-11-16)19-18-14-6-3-2-4-7-14/h2-4,6-11H,5,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H5N7O12/c20-14(21)5-1-7(16(24)25)11(8(2-5)17(26)27)13-12-9(18(28)29)3-6(15(22)23)4-10(12)19(30)31/h1-4,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14/c1-2-7-17-15(4-1)12-16-9-8-13-5-3-6-14-10-11-18(17)20(16)19(13)14/h2-3,5-12H,1,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13NO2/c1-2-3-8-13-10-6-4-9(11-12)5-7-10/h4-7H,2-3,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-7(2,3)9-5-6-4-8-6/h6H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H16O2/c25-21-10-9-17-20(24(21)26)12-19-14-6-2-1-5-13(14)11-18-15-7-3-4-8-16(15)22(17)23(18)19/h1-12,21,24-26H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-9-18-16(10-13)7-8-17-11-14-4-2-3-5-15(14)12-19(17)18/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O4/c16-14(17)7-1-3-11-9(5-7)10-6-8(15(18)19)2-4-12(10)13-11/h1-6,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-14-9-12-5-1-3-10-7-8-11-4-2-6-13(14)16(11)15(10)12/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5Br/c1-2-3/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O/c1-2-4-3-1/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)14-9-12-5-1-3-10-7-8-11-4-2-6-13(14)16(11)15(10)12/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16O/c1-2-4-14(5-3-1)15-9-6-13(7-10-15)8-11-16-12-17-16/h1-7,9-10,16H,8,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-3-1-2-5(4-6)7(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H18O7/c1-10(2)3-4-11-5-6-12(23)15-18(24)16-13(28-20(11)15)9-14-17(19(16)25)22(26)7-8-27-21(22)29-14/h3,5-9,21,23,25-26H,4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c1-11-7-4-2-6(3-5-7)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O3/c1-13(2)4-9-10(5-13)12(18)14(3)7-15(14,8-17)11(9)6-16/h6,8,11-12,18H,4-5,7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N4O4/c17-15(18)7-4-5-8-10(6-7)13-9-2-1-3-11(16(19)20)12(9)14-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-2-3-6(8)4-7(5)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O6/c10-7(11)5-2-1-4(8(12)13)3-6(5)9(14)15/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H16N2O3/c1-18-12-6-7-13(19-8-9-20)15-14(12)16(21)10-4-2-3-5-11(10)17(15)22/h2-7,18-20H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO3/c22-21(23)15-9-8-14-18-16-11(6-3-7-13(16)19-20(14)24-19)10-4-1-2-5-12(10)17(15)18/h1-9,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11NO3S/c1-13-11-9-4-7(14-5-8-6-15-8)2-3-10(9)16-12-11/h2-4,8H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O/c1-3-4-6(2)5-7/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-3-7-17-14(5-1)11-12-20-19(17)13-16-10-9-15-6-2-4-8-18(15)21(16)22-20/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4BrN3O4/c7-4-1-3(9(11)12)2-5(6(4)8)10(13)14/h1-2H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2/c4-1-3-2-5-3/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10ClN5O/c17-11-7-5-10(6-8-11)9-18-22-16(23)15-14(20-21-22)12-3-1-2-4-13(12)19-15/h1-9,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CHCl2NO2/c2-1(3)4(5)6/h(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6N4O2/c5-3(9)1-7-4(10)2-8-6/h2H,1H2,(H2,5,9)(H,7,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O3/c15-11-7-3-6-10-12(11)14(17)9-5-2-1-4-8(9)13(10)16/h1-7,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O2/c1-5-2-3-6(9(10)11)4-7(5)8/h2-4H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c1-5-3-7-4-6(2)8-5/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-14-7-3-6-12-8-10-4-1-2-5-11(10)9-13(12)14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10Cl2N2/c13-10-5-8(6-11(14)12(10)16)7-1-3-9(15)4-2-7/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8Br2O2/c1-2-6(9)10-4-5(8)3-7/h2,5H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NOS/c14-13-10-6-8-12(9-7-10)15-11-4-2-1-3-5-11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-4-2-1-3-5(6)7(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO/c13-10-6-8-12(9-7-10)14-11-4-2-1-3-5-11/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c6-4-2-1-3-5-7/h4-5H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14Cl2N2O4/c1-20-11-3-2-10-9(8-12(21-10)17(18)19)13(11)16(6-4-14)7-5-15/h2-3,8H,4-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O3/c1-2-6(7)9-4-5-3-8-5/h2,5H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3/c1-2-4-6-5(3-1)7-9-8-6/h1-4H,(H,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO4/c16-12-6-5-10-11(14(12)17)7-8-3-1-2-4-9(8)13(10)15(18)19/h1-7,12,14,16-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16N4O2/c1-18-10-4-3-8(6-11(10)19-2)5-9-7-16-13(15)17-12(9)14/h3-4,6-7H,5H2,1-2H3,(H4,14,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO/c1-10(17)16-14-8-4-6-12-9-11-5-2-3-7-13(11)15(12)14/h2-8H,9H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c1-5(3-7-5)4-2-6-4/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5NO2/c4-3(5)2-1-6-2/h2H,1H2,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N7S/c9-7(10)14-12-5-1-3-6(4-2-5)13-15-8(11)16/h1-4H,(H4,9,10,14)(H3,11,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6Cl2O/c9-7(8(10)11)6-4-2-1-3-5-6/h1-5,7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4/c13-9-1-5-11(6-2-9)15-16-12-7-3-10(14)4-8-12/h1-8H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N3O5/c12-8-10(3-4-15-8)9-5-6-1-2-7(16-6)11(13)14/h1-2,5H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-17(19)12-7-6-11-14-9(12)5-4-8-2-1-3-10(13(8)14)15-16(11)20-15/h1-7,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N4O4/c17-15(18)7-1-3-9-11(5-7)14-10-4-2-8(16(19)20)6-12(10)13-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N6O2/c12-10-9-11(14-5-13-10)16(6-15-9)7-1-3-8(4-2-7)17(18)19/h1-6H,(H2,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11N3/c1-3-10-16-12(6-1)14-8-5-9-15(18-14)13-7-2-4-11-17-13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10Cl2N2/c13-9-5-7(1-3-11(9)15)8-2-4-12(16)10(14)6-8/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N4O2/c1-14-9-5-4-8-7(3-2-6-12-8)10(9)13-11(14)15(16)17/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O4/c17-15(18)13-8-6-11(7-9-13)4-5-12-2-1-3-14(10-12)16(19)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13Br/c1-11-12-6-2-4-8-14(12)16(10-17)15-9-5-3-7-13(11)15/h2-9H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N/c1-2-7-3-5-8(9)6-4-7/h2-6H,1,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClN/c1-5-4-6(8)2-3-7(5)9/h2-4H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6Cl3NO2S/c6-3(7)4(8)12-1-2(9)5(10)11/h2H,1,9H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14O/c20-12-15-11-14-6-2-3-7-16(14)18-10-9-13-5-1-4-8-17(13)19(15)18/h1-11,20H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H,(H2,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-2-3-4-7-5-6/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4BrNO2/c7-5-1-3-6(4-2-5)8(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17N4S/c1-22-12-13-24-19(22)21-20-17-15-10-6-7-11-16(15)23(2)18(17)14-8-4-3-5-9-14/h3-13H,1-2H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N3O2/c1-4-3-6(9)5(2)8(7(4)10)11(12)13/h3H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-7-5-10-12(11(16)6-7)14(18)9-4-2-1-3-8(9)13(10)17/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)9-1-3-11-8(5-9)6-14(17(22)23)12-4-2-10(16(20)21)7-13(11)12/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O5S/c21-11-18-15-7-3-4-8-16(15)19(12-25-26(22,23)24)17-10-9-13-5-1-2-6-14(13)20(17)18/h1-10,21H,11-12H2,(H,22,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8ClN2O5P/c7-15(12,8-1-3-13-5(8)10)9-2-4-14-6(9)11/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8N2O4/c16-14(17)10-1-3-12-8(6-10)5-9-7-11(15(18)19)2-4-13(9)12/h1-4,6-7H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9ClO/c5-3-1-2-4-6/h6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N3O4/c1-4-6(9(11)12)2-5(8)3-7(4)10(13)14/h2-3H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-4(2)3-7-5-6/h4H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-8-5-6-11-9-4-2-1-3-7(8)9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N4O4/c17-15(18)7-1-3-9-11(5-7)14-12-6-8(16(19)20)2-4-10(12)13-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H12/c1-2-14-5-6-16-9-11-18-12-10-17-8-7-15-4-3-13(1)19-20(14)22(16)24(18)23(17)21(15)19/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10N2O3S/c6-3(2-11)5(10)7-1-4(8)9/h3,11H,1-2,6H2,(H,7,10)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO3/c9-5-6-2-1-3-7(4-6)8(10)11/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4O/c1-17-11-7-10(9-5-3-2-4-6-9)8-14-12(11)15-13(17)16-18/h2-8,18H,1H3,(H,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)13-8-9-15-17-7-3-6-16-14-5-2-1-4-12(14)10-19(20(16)17)18(15)11-13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7NO7S/c16-13-9-2-1-3-11(15(18)19)12(9)14(17)8-5-4-7(6-10(8)13)23(20,21)22/h1-6H,(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9Cl2N/c5-1-3-7-4-2-6/h7H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13Br/c20-12-19-16-8-4-2-6-14(16)11-18-15-7-3-1-5-13(15)9-10-17(18)19/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H24O4/c1-21(2,15-3-7-17(8-4-15)22-11-19-13-24-19)16-5-9-18(10-6-16)23-12-20-14-25-20/h3-10,19-20H,11-14H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10ClNO2/c1-7(13)12-9-4-2-8(3-5-9)10(14)6-11/h2-5H,6H2,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15N3/c1-9-14-8-19-6-5-12(14)10(2)17-16(9)13-7-11(18)3-4-15(13)20-17/h3-8,20H,18H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2S/c13-9-1-5-11(6-2-9)15-12-7-3-10(14)4-8-12/h1-8H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO4/c1-22-10-3-4-11-12(8-10)16-14-9(5-6-19-16)7-13(23-2)18(21)15(14)17(11)20/h3-8,20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H20N2O/c1-8(2)5-7(10)6-9(3,4)11(8)12/h7,12H,5-6,10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11Cl/c16-10-15-13-7-3-1-5-11(13)9-12-6-2-4-8-14(12)15/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-8-7-10-9-3-2-6-14(18(21)22)16(9)12-5-1-4-11(13)15(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O7/c1-21-9-5-10-11(6-2-3-22-17(6)23-10)15-14(9)12-7(18)4-8(19)13(12)16(20)24-15/h2-6,17-20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO5/c1-2-14-9(11)6-4-7-3-5-8(15-7)10(12)13/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10ClN3O4/c1-15-4-5(12)2-10-3-6(11(13)14)9-7(10)8/h3,5,12H,2,4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11ClO/c11-9-4-1-8(2-5-9)3-6-10-7-12-10/h1-2,4-5,10H,3,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O/c1-11(19)15-9-7-14-6-5-12-3-2-4-13-8-10-16(15)18(14)17(12)13/h2-11,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9N/c1-2-10-4-6-12-8-16-9-13-7-5-11(3-1)14(10)15(12)13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13Cl/c1-11-12-6-2-4-8-14(12)16(10-17)15-9-5-3-7-13(11)15/h2-9H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c23-16-9-10-19-17-7-3-4-8-18(17)20-11-14-5-1-2-6-15(14)12-21(20)22(19)13-16/h1-13,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO4/c16-14(12-4-2-1-3-5-12)19-10-11-6-8-13(9-7-11)15(17)18/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6BrNO/c1-2(4)3(5)6/h2H,1H3,(H2,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H7NO4/c18-15-10-3-1-2-8-4-5-9-6-7-11(17(20)21)14(16(15)19)13(9)12(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N5/c1-6-5-13-9-7(14-6)3-4-8-10(9)15-11(12)16(8)2/h3-5H,1-2H3,(H2,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-14-9-8-10-4-3-7-12-11-5-1-2-6-13(11)16(14)15(10)12/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N3O2/c1-10-5-6-2-3-7(11(12)13)4-8(6)9-10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N4O4/c13-8-9-3-4-11(8)10-5-6-1-2-7(16-6)12(14)15/h1-2,5H,3-4H2,(H,9,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H12O/c22-21-17-11-9-13-5-1-3-7-15(13)19(17)20-16-8-4-2-6-14(16)10-12-18(20)21/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO4S/c11-7-3-4-8(15(12,13)14)6-2-1-5-10-9(6)7/h1-5,11H,(H,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8O5/c14-6-1-2-10-8(3-6)13(17)12-9(16)4-7(15)5-11(12)18-10/h1-5,14-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N3O2/c1-13(12-15)7-3-5-10(14)9-4-2-6-11-8-9/h2,4,6,8H,3,5,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N/c1-16(2)14-9-12-7-3-5-11-6-4-8-13(10-14)15(11)12/h3-8,14H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-5-4-7-15-10-11-17-16-8-3-2-6-14(16)9-12-18(17)19(13)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N3O2/c1-2-6(5-8)3(4)7/h2H2,1H3,(H2,4,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N5/c1-20(2)14-6-3-12(4-7-14)17-18-13-5-8-15-11(9-13)10-16-19-15/h3-10H,1-2H3,(H,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N/c1-10-5-3-4-6-13(10)12-7-8-14(15)11(2)9-12/h3-9H,15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO2S/c1-2-7-4-11-14-10(7)9(3-1)13-6-8-5-12-8/h1-4,8H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c9-7-5-1-3-6(4-2-5)8(10)11/h1-4,7,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N3O3/c1-13-7-3-4(8)6(10(11)12)2-5(7)9/h2-3H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10N2O2/c1-6(2)5(9)7(3)4-8/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2Cl4O/c5-3(6)2(1-9)4(7)8/h1,3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c7-5-2-1-3-6(8)4-5/h1-4H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H17N/c1-12-10-13(2)19-18(11-12)14(3)16-9-8-15-6-4-5-7-17(15)20(16)21-19/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14Cl2N2O/c1-9(20)19-15-5-3-11(8-13(15)17)6-10-2-4-14(18)12(16)7-10/h2-5,7-8H,6,18H2,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N3O3/c1-10(18)15-11-2-4-12(5-3-11)16-13-6-8-14(9-7-13)17(19)20/h2-9,16H,1H3,(H,15,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8N2O3S/c16-15(17)11-3-7-13(8-4-11)18-12-5-1-10(2-6-12)14-9-19/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H17NO2/c1-10-2-4-11(5-3-10)12(6-8-13)7-9-14/h2-5,13-14H,6-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N/c1-12-2-4-13(5-3-12)6-7-14-8-10-15(16)11-9-14/h2-11H,16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14N2O4/c23-21(24)16-10-8-14-12-3-1-2-4-13(12)20-17(22(25)26)9-6-11-5-7-15(16)19(14)18(11)20/h5-10H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8O3/c1-6(8)10-5-7-3-2-4-9-7/h2-4H,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3O5/c7-4-1-3(8(11)12)2-5(6(4)10)9(13)14/h1-2,10H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O2/c15-9-5-6-10(16)12-11(9)13(17)7-3-1-2-4-8(7)14(12)18/h1-6,17-18H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O2/c1-5(7)6-3-2-4-8-6/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5N3O2/c1-5(4-7)2(3)6/h1H3,(H2,3,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H12/c1-2-7-16-13(4-1)10-15-11-14-6-3-5-12-8-9-17(16)19(15)18(12)14/h1-10H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N2O6/c15-13(16)7-1-3-9-11(5-7)20-12-6-8(14(17)18)2-4-10(12)19-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11NO5/c19-17(20)15-13(11-7-3-1-4-8-11)14(16(23-15)18(21)22)12-9-5-2-6-10-12/h1-10H,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H17N/c1-12-10-18-14(3)16-9-8-15-6-4-5-7-17(15)20(16)21-19(18)11-13(12)2/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N6O2/c12-9-8-11(14-5-13-8)16-10(15-9)6-1-3-7(4-2-6)17(18)19/h1-5H,(H3,12,13,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Br2O/c4-1-3(5)2-6/h2-3H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)14-12-7-3-1-5-10(12)9-11-6-2-4-8-13(11)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O/c13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O/c1-9(11)7-8-10-5-3-2-4-6-10/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-11-16-7-4-6-14-9-10-17-12-15-5-2-3-8-18(15)19(13)21(17)20(14)16/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2/c1-11-3-7-13(8-4-11)16(15)14-9-5-12(2)6-10-14/h3-10H,15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O7/c1-17-7-5(9(13)14)2-4(8(11)12)3-6(7)10(15)16/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-5-4-8-18-17(13)10-9-16-11-14-6-2-3-7-15(14)12-19(16)18/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N2O2/c1-2-12(9-6-4-3-5-7-9)10(15)13-8-14-11(12)16/h3-7H,2,8H2,1H3,(H,13,15)(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-4-14-10-16-15(9-13(14)3-1)6-5-12-7-8-18-11-17(12)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O3S/c4-7(5)3-1-2-6-7/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9N3O3/c1-5-3(8)7-10-4(9)6-2/h1-2H3,(H,6,9)(H2,5,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H14O/c25-16-9-10-19-20(13-16)22-11-14-5-1-3-7-17(14)21-12-15-6-2-4-8-18(15)23(19)24(21)22/h1-13,25H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H22O7/c1-23(2,26)8-6-11-4-5-13(24)17-19(25)18-15(29-20(11)17)10-14-16(21(18)27-3)12-7-9-28-22(12)30-14/h4-5,7,9-10,12,22,24,26H,6,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)14-9-3-7-12-11-6-1-4-10-5-2-8-13(15(10)11)16(12)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O3/c1-9-8-10-4-2-3-5-11(10)12-6-7-13-15(14(9)12)18-19(22-18)17(21)16(13)20/h2-8,16-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-8-5-7-3-1-2-4-9(7)11-6-8/h1-6H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-7-14-8-9-17-11-15-4-2-3-5-16(15)12-19(17)18(14)10-13/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2BrCl/c2-1-3/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3Cl3O/c4-3(5,6)2-1-7-2/h2H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O5/c10-4-5-1-2-6(8(11)12)3-7(5)9(13)14/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O4/c1-10(2)5-7-19-16-14-12(6-8-18-14)9-11-3-4-13(17)20-15(11)16/h3-6,8-9H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c1-3-2-4(5)6-3/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O5/c16-6-10-11(17)5-9-12(15(10)20)14(19)8-4-2-1-3-7(8)13(9)18/h1-5,16-17,20H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)11-5-1-3-8-10(11)7-13(17(22)23)9-4-2-6-12(14(8)9)16(20)21/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H25NO3/c1-4-17(2)16-26-22(24)14-9-18-5-10-20(11-6-18)23-15-19-7-12-21(25-3)13-8-19/h5-15,17H,4,16H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10/c1-2-6-12-10-14-8-4-3-7-13(14)9-11(12)5-1/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O4/c1-2-3-7(11)6-4-9(13)10(14)5-8(6)12/h4-5,12-14H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H32ClN3O/c1-2-32(20-18-29)22-14-16-23(17-15-22)33-21-9-3-8-19-30-28-24-10-4-6-12-26(24)31-27-13-7-5-11-25(27)28/h4-7,10-17H,2-3,8-9,18-21H2,1H3,(H,30,31)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO2/c1-11(16)15(17)14-9-7-13(8-10-14)12-5-3-2-4-6-12/h2-10,17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O/c1-2-11-4-5-13-10-14-8-9-19-18(14)15-7-6-12(3-1)16(11)17(13)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4Cl2O3/c6-1-2-3(7)5(9)10-4(2)8/h4,8H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12ClN/c15-13-3-1-2-12(10-13)5-4-11-6-8-14(16)9-7-11/h1-10H,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9BrO2/c1-3-8-5(7)4(2)6/h4H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11NO3S/c1-13-11-9-3-2-7(4-10(9)16-12-11)14-5-8-6-15-8/h2-4,8H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O2/c1-20-17-10-15-13(8-9-16(15)19)14-7-6-11-4-2-3-5-12(11)18(14)17/h2-7,10H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H13N5O2/c1-24-12-8-6-11(7-9-12)10-18-22-17(23)16-15(20-21-22)13-4-2-3-5-14(13)19-16/h2-10,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O2/c1-5-3-8(7-9)4-6(2)10-5/h5-6H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O/c18-10-14-7-6-13-5-4-11-2-1-3-12-8-9-15(14)17(13)16(11)12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O3S/c1-13(10-5-3-2-4-6-10)12(15)9-7-11(14(16)17)18-8-9/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O2/c15-9-5-1-3-7-11(9)14(18)8-4-2-6-10(16)12(8)13(7)17/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O2/c7-5-2-1-4(9(10)11)3-6(5)8/h1-3H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O/c1-3-7-11-9(5-1)10-6-2-4-8-12(10)14-13(11)15-14/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9Cl3N2/c13-8-3-6(1-2-11(8)16)7-4-9(14)12(17)10(15)5-7/h1-5H,16-17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O2/c1-2-4-12(5-3-1)13-6-8-14(9-7-13)16-10-15-11-17-15/h1-9,15H,10-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7ClOS/c1-2-3-7-4(5)6/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18O4/c1-13(2)4-8-3-9(6-16)14-7-15(14,10(8)5-13)12(18)19-11(14)17/h3,6,8,10-11,17H,4-5,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2O/c14-13-9-3-1-2-4-11(9)15-12-6-5-8(16)7-10(12)13/h1-7,16H,(H2,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O/c1-6-3-4-8(5-9(6)10)11-7(2)12/h3-5H,10H2,1-2H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9FN2O/c1-11(10-12)6-7-2-4-8(9)5-3-7/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10O3/c1-5(2)7(8)10-4-6-3-9-6/h6H,1,3-4H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N4/c1-9-11(14)7-8-12(13(9)15)17-16-10-5-3-2-4-6-10/h2-8H,14-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O3/c1-5-2-3-6(9(11)12)4-7(5)8-10/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12Cl2/c17-9-15-11-5-1-2-6-12(11)16(10-18)14-8-4-3-7-13(14)15/h1-8H,9-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O6/c1-5-12(16)19-9-15(8-4,10-20-13(17)6-2)11-21-14(18)7-3/h5-7H,1-3,8-11H2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c11-10-6-5-8-3-1-2-4-9(8)7-10/h1-7H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO2/c1-2-3-6-4-5/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO3/c1-19-15-10-6-13(7-11-15)3-2-12-4-8-14(9-5-12)16(17)18/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2/c13-8-5-6-12-10(7-8)9-3-1-2-4-11(9)14-12/h1-7,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15NO3/c1-8(2)14-9-6-4-5-7-10(9)15-11(13)12-3/h4-8H,1-3H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O2/c1-8-7-12(16(17)18)9(2)13-10-5-3-4-6-11(10)15-14(8)13/h3-7,15H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-5-7(10-2)3-4-8(6)9/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-7-14-13(6-1)12-19-16-9-4-3-8-15(16)18-11-5-10-17(14)20(18)19/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5Cl/c1-2-3-4/h2H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15Br/c1-13-15-7-4-5-9-17(15)19(12-21)18-11-10-14-6-2-3-8-16(14)20(13)18/h2-11H,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8O2/c17-13-8-4-10-2-6-12-14(18)7-3-9-1-5-11(13)16(10)15(9)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3Cl3O/c1-2(7)3(4,5)6/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O6/c10-7(11)4-1-2-5(8(12)13)6(3-4)9(14)15/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO4/c1-15-12-7-2-3-16-13(7)14-9-5-11-10(4-8(9)12)17-6-18-11/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-17(19)11-7-6-9-5-4-8-2-1-3-10-12(8)13(9)14(11)16-15(10)20-16/h1-7,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N4O7S/c11-5(10(19)20)1-2-7(15)13-6(4-22-14-21)9(18)12-3-8(16)17/h5-6H,1-4,11H2,(H,12,18)(H,13,15)(H,16,17)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15Cl2N2O3P/c8-2-4-11(5-3-9)15(13)10-7(12)1-6-14-15/h7,12H,1-6H2,(H,10,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15N/c1-22-18-12-10-14-6-2-4-8-16(14)20(18)21-17-9-5-3-7-15(17)11-13-19(21)22/h2-13H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9ClN2/c14-8-5-6-12-10(7-8)13(15)9-3-1-2-4-11(9)16-12/h1-7H,(H2,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N4/c13-9-3-1-7(5-11(9)15)8-2-4-10(14)12(16)6-8/h1-6H,13-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-6-4-3-5-8(9)7(6)2/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c23-22-11-5-6-14-12-20-17-9-3-1-7-15(17)16-8-2-4-10-18(16)21(20)13-19(14)22/h1-13,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5Cl3O3/c6-3(5(10)11)2(1-9)4(7)8/h4,9H,1H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3/c1-3-7-11(8-4-1)13-15-14-12-9-5-2-6-10-12/h1-10H,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N6O3/c1-11-4-8-6(12(2)9-15)5(11)7(14)13(3)10-16/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16N4O3/c1-2-3-6-16(15-19)8-12(18)9-4-5-11(17)10(7-9)14-13/h4-5,7,12,18H,2-3,6,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO3/c1-19-8-14(20)12-7-15-18(22-9-21-15)17-11-5-3-2-4-10(11)6-13(19)16(12)17/h2-5,7,13-14,20H,6,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O4/c15-13(16)10-6-7-11(12(8-10)14(17)18)9-4-2-1-3-5-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O4/c11-5-1-2-6(12)10-8(14)4-3-7(13)9(5)10/h1-4,11-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H16O2/c25-20-10-9-14-12-18-15-6-2-1-5-13(15)11-19-16-7-3-4-8-17(16)23(22(18)19)21(14)24(20)26/h1-12,20,24-26H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c1-14-11-8-4-2-3-5-10(8)13-12-9(11)6-7-15-12/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15N5O3/c1-2-3-4-5-6-11(10-13)7(8)9-12(14)15/h2-6H2,1H3,(H2,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O4/c15-13(16)11-5-1-9(2-6-11)10-3-7-12(8-4-10)14(17)18/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O2/c15-7-1-3-9-11(5-7)14(18)10-4-2-8(16)6-12(10)13(9)17/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12ClNO/c1-9(18)17-15-7-11-6-10-4-2-3-5-12(10)13(11)8-14(15)16/h2-5,7-8H,6H2,1H3,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-7-17-13(4-1)8-9-16-12-15-6-3-5-14-10-11-18(19(14)15)20(16)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO2/c14-13(15)11-7-9-5-1-3-8-4-2-6-10(11)12(8)9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11N3O/c1-12-8-4-3-6(13-2)5-7(8)11-9(12)10/h3-5H,1-2H3,(H2,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO2/c1-10-6-3-4-7(9)8(5-6)11-2/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO/c1-3-10-9-6-8(11)5-4-7(9)2/h4-6,10-11H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O3/c19-15-14-12-6-5-9-3-1-2-4-10(9)11(12)7-8-13(14)17-18(21-17)16(15)20/h1-8,15-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-11-17-19-14(9-8-12-4-1-2-6-15(12)19)10-13-5-3-7-16(18)20(13)17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2Cl2O3/c5-1-2(6)4(8)9-3(1)7/h3,7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO/c1-11(20)19-16-10-8-14-6-5-12-3-2-4-13-7-9-15(16)18(14)17(12)13/h2-10H,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19N3O/c1-21(2)11-10-19-18(22)15-8-5-7-14-12-13-6-3-4-9-16(13)20-17(14)15/h3-9,12H,10-11H2,1-2H3,(H,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c8-6(10)3-1-5-2-4-7(13-5)9(11)12/h1-4H,(H2,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O4/c1-10(12-11,9(15)16)5-6-2-3-7(13)8(14)4-6/h2-4,12-14H,5,11H2,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5BrCl2/c4-3(1-5)2-6/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N/c1-12-7-9-15-13(2)16-10-8-14-5-3-4-6-17(14)19(16)20-18(15)11-12/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16O2/c1-12-14-7-3-5-9-16(14)18(11-20-13(2)19)17-10-6-4-8-15(12)17/h3-10H,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H22O2/c1-3-5-6-10(4-2)7-12-8-11-9-13-11/h10-11H,3-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15NO4/c1-22-11-4-5-12-13(9-11)17-15-10(6-7-20-17)8-14(23-2)19(24-3)16(15)18(12)21/h4-9H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7BrO/c1-3(5)2-4/h3,5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20O4/c1-14(2)5-10-4-11(7-17)15(9-18)8-16(15,12(10)6-14)13(19)20-3/h4,7,9,11-12H,5-6,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N2O5/c15-13(16)7-1-3-11-9(5-7)10-6-8(14(17)18)2-4-12(10)19-11/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N6O5/c17-14-13-16(21(7-18-13)12-5-10(24)11(6-23)27-12)20-15(19-14)8-1-3-9(4-2-8)22(25)26/h1-4,7,10-12,23-24H,5-6H2,(H2,17,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO/c1-2-9-4-3-8-5-6-10-13(15-10)11(8)12(9)14-7-1/h1-4,7,10,13H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20NO3P/c1-3-21-23(20,22-4-2)19-17-15-11-7-5-9-13(15)14-10-6-8-12-16(14)18(17)19/h5-12,17-18H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O2S/c13-9-1-5-11(6-2-9)17-12-7-3-10(4-8-12)14(15)16/h1-8H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N4O4S/c16-14(17)8-3-1-7(2-4-8)9-10(15(18)19)13-5-6-20-11(13)12-9/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c23-21-11-5-10-18-20-13-15-7-2-1-6-14(15)12-19(20)16-8-3-4-9-17(16)22(18)21/h1-13,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N/c1-6-4-2-3-5-7(6)8/h2-5H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c1-2-6-12-10-16-15(9-11(12)5-1)13-7-3-4-8-14(13)17-18(16)19-17/h1-10,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-2-6-12-10-16-15(9-11(12)5-1)13-7-3-4-8-14(13)17-18(16)19-17/h1-10,17-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O6/c21-11-4-1-8-9-2-5-13(23)18-14(24)7-15(25)20(26,19(9)18)10-3-6-12(22)17(11)16(8)10/h1-2,4-5,10,15,21,23,25-26H,3,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3NO5/c7-5(8)3-1-2-4(11-3)6(9)10/h1-2H,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O6/c15-13(19-7-11-5-17-11)9-2-1-3-10(4-9)14(16)20-8-12-6-18-12/h1-4,11-12H,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H2Cl2O2/c6-5(7)3-1-2-4(8)9-3/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO2/c14-13(15)11-7-5-9-3-1-2-8-4-6-10(11)12(8)9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4O/c1-15-9-5-4-8-7(3-2-6-12-8)10(9)13-11(15)14-16/h2-6,16H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O6/c16-8-3-1-7(2-4-8)15-14(20)13(19)12-10(18)5-9(17)6-11(12)21-15/h1-6,15-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10Br2O2/c6-1-5(2-7,3-8)4-9/h8-9H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11F/c21-19-9-8-15-18-11-13-5-2-1-4-12(13)10-17(18)14-6-3-7-16(19)20(14)15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7BrO2/c1-2-5(7)8-4-3-6/h2H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H7NO4/c17-15-10-3-1-2-8-4-5-9-11(16(18)19)6-7-12(20-15)14(9)13(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O2/c11-10(12)7-2-1-6-3-4-9-8(6)5-7/h1-2,5,9H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22ClN3O/c1-24-17-9-4-7-15-18(22-12-5-11-21-13-10-20)14-6-2-3-8-16(14)23-19(15)17/h2-4,6-9,21H,5,10-13H2,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2/c11-10(12)7-8-5-3-1-2-4-6(5)9-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO7/c1-23-13-5-3-4-9-10(13)6-12(19(21)22)15-11(18(20)24-2)7-14-17(16(9)15)26-8-25-14/h3-7H,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O5/c1-2-22-8-12-13(18)7-11-14(17(12)21)16(20)10-6-4-3-5-9(10)15(11)19/h3-7,18,21H,2,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-11-8-10-4-3-7-14-12-5-1-2-6-13(12)15(9-11)16(10)14/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H21Cl2N3O/c1-25-14-4-6-17-16(12-14)19(23-9-2-8-22-10-7-20)15-5-3-13(21)11-18(15)24-17/h3-6,11-12,22H,2,7-10H2,1H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N6/c1-2-13(1)7-10-8(14-3-4-14)12-9(11-7)15-5-6-15/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H18/c1-11-9-17-13(3)15-7-5-6-8-16(15)14(4)18(17)10-12(11)2/h5-10H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22N4O2/c1-13-9-10-16(23(24)25)17-18(13)21-15-8-5-4-7-14(15)19(17)20-11-6-12-22(2)3/h4-5,7-10H,6,11-12H2,1-3H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H18O2/c1-14-17-8-5-6-10-19(17)21(13-24-15(2)23)20-12-11-16-7-3-4-9-18(16)22(14)20/h3-12H,13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-7-15-9-10-17-16-5-3-2-4-14(16)8-11-18(17)19(15)12-13/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO4/c20-16-8-7-13-15(19(22)23)9-14-11-4-2-1-3-10(11)5-6-12(14)17(13)18(16)21/h1-9,16,18,20-21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18FN3O3/c18-13-7-11-14(8-15(13)20-5-3-19-4-6-20)21(10-1-2-10)9-12(16(11)22)17(23)24/h7-10,19H,1-6H2,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-8-4-2-3-5-10(8)12-7-9-6-11-9/h2-5,9H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl2NO2/c7-4-1-2-6(9(10)11)5(8)3-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O7/c1-22-8-5-11(19)13-12(6-8)23-16(15(21)14(13)20)7-2-3-9(17)10(18)4-7/h2-6,16-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H20N2O3/c1-2-3-9-17-18(23)20(14-7-5-4-6-8-14)21(19(17)24)15-10-12-16(22)13-11-15/h4-8,10-13,17,22H,2-3,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H32N2/c1-5-27(6-2)25-17-13-23(14-18-25)21-9-11-22(12-10-21)24-15-19-26(20-16-24)28(7-3)8-4/h9-20H,5-8H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2/c14-11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)15-13/h1-8H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl2NO2/c7-4-1-2-5(8)6(3-4)9(10)11/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO/c14-13-12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N4/c9-4-5-1-2-6-7(3-5)12-8(10)11-6/h1-3H,(H3,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15N/c1-13-6-9-17-15(12-13)8-11-19-21(17)20-16-5-3-2-4-14(16)7-10-18(20)22-19/h2-12,22H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N3O2/c1-4-6(8)2-5(10(11)12)3-7(4)9/h2-3H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H16Cl2N2O2/c1-10(22)20-16-5-3-12(8-14(16)18)7-13-4-6-17(15(19)9-13)21-11(2)23/h3-6,8-9H,7H2,1-2H3,(H,20,22)(H,21,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O/c1-2-4-3-5-4/h2,4H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-3-7-18-14(5-1)9-11-16-13-17-12-10-15-6-2-4-8-19(15)21(17)22-20(16)18/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H16N2O2/c1-10(20)18-14-3-5-16-12(8-14)7-13-9-15(19-11(2)21)4-6-17(13)16/h3-6,8-9H,7H2,1-2H3,(H,18,20)(H,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO2/c22-21(23)18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h2,4-11H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22FN3O3/c1-2-21-5-7-22(8-6-21)17-10-16-13(9-15(17)20)18(24)14(19(25)26)11-23(16)12-3-4-12/h9-12H,2-8H2,1H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12O2/c15-13-8-7-11-10-4-2-1-3-9(10)5-6-12(11)14(13)16/h1-8,13-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N3O2/c1-18(2)12-9-7-11(8-10-12)16-17-14-6-4-3-5-13(14)15(19)20/h3-10H,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14N2O4/c23-21(24)15-9-7-11-5-6-12-8-10-16(22(25)26)20-14-4-2-1-3-13(14)19(15)17(11)18(12)20/h5-10H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-9-5-6-10(16)12-11(9)13(17)7-3-1-2-4-8(7)14(12)18/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO2/c1-5(2)3-4-8-6-7/h5H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O4/c15-9-5-6-10(16)12-11(9)13(17)7-3-1-2-4-8(7)14(12)18/h1-6,15-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H29N3O/c1-5-22(6-2)12-8-9-15(3)21-18-14-17(23-4)13-16-10-7-11-20-19(16)18/h7,10-11,13-15,21H,5-6,8-9,12H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl5O/c1-13-7-5(11)3(9)2(8)4(10)6(7)12/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N3O3S/c1-11(2)8-5-3-7(4-6-8)9-10-15(12,13)14/h3-6H,1-2H3,(H,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N2O5/c15-13(16)7-2-4-11-10(5-7)9-3-1-8(14(17)18)6-12(9)19-11/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9N3O5/c1-2-5(6(8)9)3-4-12-7(10)11/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO6/c18-16(19)10-6-12-15(23-7-22-12)14-9-4-2-1-3-8(9)5-11(13(10)14)17(20)21/h1-6H,7H2,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O/c1-3-5(6)4-2/h3H,1,4H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7ClO2/c1-2-5(7)8-4-3-6/h2H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16O2/c1-2-12(14)10-8-6-4-3-5-7-9-11-13/h3-12,14H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O2/c15-9-5-6-10(16)12-11(9)13(17)7-3-1-2-4-8(7)14(12)18/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N4O3/c13-12(14)8-3-2-7(15-8)6-10-11-5-1-4-9-11/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7NO3/c15-13-10-4-2-1-3-9(10)12-7-8(14(16)17)5-6-11(12)13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O2/c1-5(2)7-3-6-4-8-6/h5-6H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-6-7-14-8-11-19-18-5-3-2-4-15(18)12-16-9-10-17(13)20(14)21(16)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13N/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6Cl2N2O/c5-3-1-8(7-9)2-4(3)6/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O/c7-9-6(10)5-1-3-8-4-2-5/h1-4H,7H2,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO5/c1-2-7-15-10(12)6-4-8-3-5-9(16-8)11(13)14/h3-6H,2,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO/c14-13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-5-6-16-12-17-8-7-14-3-2-4-15-9-10-18(19(16)11-13)21(17)20(14)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)11-7-8-12-13-5-1-3-10-4-2-6-14(16(10)13)15(12)9-11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N4/c1-13-8-3-2-6(5-10)4-7(8)12-9(13)11/h2-4H,1H3,(H2,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3/c9-11-10-7-6-8-4-2-1-3-5-8/h1-5H,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-5-4-8-14-9-10-17-11-15-6-2-3-7-16(15)12-18(17)19(13)14/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClNO3S/c1-4-2-7(13(10,11)12)6(9)3-5(4)8/h2-3H,9H2,1H3,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O6/c13-3-5-2-12(10(17)11-9(5)16)8-1-6(15)7(4-14)18-8/h2,6-8,13-15H,1,3-4H2,(H,11,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14/c1-3-7-17-15(5-1)9-11-21-19(17)13-14-20-18-8-4-2-6-16(18)10-12-22(20)21/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12/c1-2-7-17-16(6-1)18-11-10-14-9-8-13-4-3-5-15-12-19(17)22(18)21(14)20(13)15/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21NO4/c1-21-5-4-11-7-17(22-2)20(23-3)19-13-9-16-15(24-10-25-16)8-12(13)6-14(21)18(11)19/h7-9,14H,4-6,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5ClN2O3/c7-4-1-3(9(11)12)2-5(8)6(4)10/h1-2,10H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H3N3O3/c9-4-6(5-10)3-7-1-2-8(14-7)11(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14N2O4/c1-2-3-8-12-10(14)6-4-9-5-7-11(17-9)13(15)16/h4-7H,2-3,8H2,1H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO3/c1-6(10)7-2-4-8(5-3-7)9(11)12/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O/c1-2-3-4-5-6-7/h4-6H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O3S/c1-8-3-2-4-10(5-8)13-12(15)9-6-11(14(16)17)18-7-9/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12N4O4/c1-8(16)10(12-18)11(17)15(14(2)13-19)9-6-4-3-5-7-9/h3-7,18H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O/c9-7-8-5-3-1-2-4-6-8/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19N3O2/c1-13(21)22-12-14-6-4-5-7-17(14)19-18-15-8-10-16(11-9-15)20(2)3/h4-11H,12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O4/c1-11(2,7-12-3-9-5-14-9)8-13-4-10-6-15-10/h9-10H,3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2Cl2O2/c5-2-1-8-4(7)3(2)6/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11NO3S/c1-13-11-8-3-2-4-9(10(8)16-12-11)15-6-7-5-14-7/h2-4,7H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-16-10-6-12-15(20-7-19-12)14-9-4-2-1-3-8(9)5-11(17-16)13(10)14/h1-6H,7H2,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c7-5-3-4(8(10)11)1-2-6(5)9/h1-3,9H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2/c1-9-6-7-13-11(8-9)14(15)10-4-2-3-5-12(10)16-13/h2-8H,1H3,(H2,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O/c1-2-3-4-5-6/h2-3,5H,4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7NO7S/c16-13-8-4-2-6-10(23(20,21)22)12(8)14(17)7-3-1-5-9(11(7)13)15(18)19/h1-6H,(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10ClN3O3/c6-1-3-9(8-12)5(11)7-2-4-10/h10H,1-4H2,(H,7,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9ClN2O/c1-11(10-12)6-7-2-4-8(9)5-3-7/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13N5/c20-24-23-14-11-9-13(10-12-14)21-19-15-5-1-3-7-17(15)22-18-8-4-2-6-16(18)19/h1-12H,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10N2O4/c1-5(9)3-8(7-11)4-12-6(2)10/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-2-3-7-4-6-5-8-6/h2,6H,1,3-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21N3/c21-18-6-1-14(2-7-18)11-16-5-10-20(23)17(13-16)12-15-3-8-19(22)9-4-15/h1-10,13H,11-12,21-23H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO/c22-21-20-16-7-2-1-6-14(16)15-10-8-12-4-3-5-13-9-11-17(20)19(15)18(12)13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO2/c1-2-6-3(4)5/h2H2,1H3,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O4/c12-9(13)8-5-10(14)6-3-1-2-4-7(6)11(8)15/h1-5H,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6FN/c7-5-1-3-6(8)4-2-5/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-10-16-11-14-6-2-3-7-15(14)12-19(16)18-9-5-4-8-17(13)18/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15N/c1-2-11-18-16-14-9-5-3-7-12(14)13-8-4-6-10-15(13)17(16)18/h2-10,16-17H,1,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2O/c1-3-5-8(7-9)6-4-2/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H20N2/c1-7(2)5-10(9)6-8(3)4/h7-8H,5-6,9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO3S/c7-5-3-1-2-4-6(5)11(8,9)10/h1-4H,7H2,(H,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9ClO/c10-8-3-1-7(2-4-8)5-9-6-11-9/h1-4,9H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O2/c15-13-9-5-1-2-6-10(9)14(16)12-8-4-3-7-11(12)13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4N2O2/c1-4(2-5)3-6/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7ClO/c1-3(5)2-4/h3,5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO3/c1-9(20)19-14-8-7-13-16-11(14)6-5-10-3-2-4-12(15(10)16)17(21)18(13)22/h2-8H,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO2/c12-11(13)10-6-5-8-3-1-2-4-9(8)7-10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)14-7-3-6-12-11-5-2-1-4-10(11)8-9-13(12)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3/c7-3-5-1-2-6(4-8)9-5/h1-3,8H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c14-13-7-3-6-11-10-5-2-1-4-9(10)8-12(11)13/h1-7H,8,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11Cl/c19-18-15-8-4-2-6-13(15)11-17-14-7-3-1-5-12(14)9-10-16(17)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-2-6-13-11(4-1)8-9-14-16(13)10-12-5-3-7-15-17(12)18(14)20-19(15)21-20/h1-10,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N3/c1-17(2)14-10-8-13(9-11-14)16-15-12-6-4-3-5-7-12/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-9-12(2)16-14(10-11)8-7-13-5-3-4-6-15(13)16/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-4-3-5-8(9-10)7(6)2/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16Br2N2O2/c11-3-1-9(15)13-5-7-14(8-6-13)10(16)2-4-12/h1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9NO4/c1-8-6-7-11-12(13(8)16(19)20)15(18)10-5-3-2-4-9(10)14(11)17/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14/c1-10-6-5-9-14-13-8-4-3-7-12(13)11(2)15(10)14/h3-9,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c1-5-3-2-4-6(8(10)11)7(5)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H17NO2/c1-10-8-14(18)19-16-12-5-3-7-17-6-2-4-11(15(12)17)9-13(10)16/h8-9H,2-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O2/c13-11-5-1-9(2-6-11)10-3-7-12(8-4-10)14(15)16/h1-8H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O3/c1-18-12-8-4-7-11-13(12)15(17)10-6-3-2-5-9(10)14(11)16/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O4/c9-7(10)5-1-2-6(4-3-5)8(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15N/c15-14-10-8-13(9-11-14)7-6-12-4-2-1-3-5-12/h1-5,8-11H,6-7,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H14/c1-2-8-17-16(6-1)14-22-19-10-4-3-9-18(19)20-11-5-7-15-12-13-21(17)24(22)23(15)20/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N4O4S2/c1-19-11(17)15-9(21)13-7-5-3-4-6-8(7)14-10(22)16-12(18)20-2/h3-6H,1-2H3,(H2,13,15,17,21)(H2,14,16,18,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7N3O/c11-6-5-8-7-13(12-14)10-4-2-1-3-9(8)10/h1-4,7H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H13N3O4/c1-29-22(28)16-10-13-11-4-2-3-5-14(11)23-20(13)21(25-16)15-7-6-12-17(26)8-9-18(27)19(12)24-15/h2-10,23H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O4/c17-15(18)13-7-3-11(4-8-13)1-2-12-5-9-14(10-6-12)16(19)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2/c1-5-3-2-4/h2H,3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO/c1-6-4-2-3-5-7(6)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O2/c19-13-1-5-15(6-2-13)21-17-9-11-18(12-10-17)22-16-7-3-14(20)4-8-16/h1-12H,19-20H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O3S/c10-7-5-2-1-4(9(11)12)3-6(5)13-8-7/h1-3H,(H,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)19-11-15-9-14-8-12-4-1-2-5-13(12)10-18(14)16-6-3-7-17(19)20(15)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c14-12-7-3-5-10-8-9-4-1-2-6-11(9)13(10)12/h1-7H,8,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12/c1-2-6-15-12(4-1)8-10-14-11-9-13-5-3-7-16(13)17(14)15/h1-4,6-11H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c1-5(9)6-3-2-4-7(6)8(10)11/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4O4/c13-7-1-3-10(12(5-7)16(19)20)9-4-2-8(15(17)18)6-11(9)14/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H9NO3/c19-16-11-4-2-1-3-10(11)14-13-9(5-6-18-15(13)16)7-12-17(14)21-8-20-12/h1-7H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O7/c1-20-7-4-8-11(12-14-17(23-14)24-16(12)21-8)13-10(7)5-2-3-6(18)9(5)15(19)22-13/h2-4,12,14,16-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-12-6-2-5-9-15(12)18-19-17-14-8-4-3-7-13(14)10-11-16(17)20/h2-11,20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO4/c11-9(12)6-3-7-1-4-8(5-2-7)10(13)14/h1-6H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7N3O2/c13-12(14)9-8(10-6-11-9)7-4-2-1-3-5-7/h1-6H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15Cl2N2O2P/c8-2-4-10-14(12)11(6-3-9)5-1-7-13-14/h1-7H2,(H,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10ClNO2S/c6-1-2-10-3-4(7)5(8)9/h4H,1-3,7H2,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8ClN3O2S/c12-8-3-1-7(2-4-8)9-10(15(16)17)14-5-6-18-11(14)13-9/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4O/c1-7-4-3-5-16-11(7)14-10-8(2)9(15-17)6-13-12(10)16/h3-6,15,17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N/c1-11-13-7-3-2-6-12(13)10-16-14-8-4-5-9-15(14)18-19(20-18)17(11)16/h2-10,18-20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N2/c1-6-2-4-7(9-8)5-3-6/h2-5H,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2O2/c1-17-13-7-9(3-5-11(13)15)10-4-6-12(16)14(8-10)18-2/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21O4P/c1-16-10-4-7-13-19(16)23-26(22,24-20-14-8-5-11-17(20)2)25-21-15-9-6-12-18(21)3/h4-15H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H7NO4/c17-15-10-3-1-2-8-4-5-9-6-7-11(16(18)19)14(20-15)13(9)12(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-14-9-3-7-12-11-6-1-4-10-5-2-8-13(15(10)11)16(12)14/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19N3O/c1-3-23(4-2)13-9-10-17-18(11-13)24-19-12-16(21)14-7-5-6-8-15(14)20(19)22-17/h5-12,21H,3-4H2,1-2H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N3O2/c1-10-7-5-3-2-4-6(7)9-8(10)11(12)13/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16ClN3O2/c10-6-7-13(12-15)9(14)11-8-4-2-1-3-5-8/h8H,1-7H2,(H,11,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O3/c1-7-5-12(16(18)19)8(2)13-10-6-9(17)3-4-11(10)15-14(7)13/h3-6,15,17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3O2/c13-10-4-1-8(2-5-10)9-3-6-11(14)12(7-9)15(16)17/h1-7H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3/c7-4-2-1-3-5(8)6(4)9/h1-3,7-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO3/c1-2-9(11)10(3-7-5-12-7)4-8-6-13-8/h2,7-8H,1,3-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15NO2/c19-16-9-15-11(10-3-1-2-4-13(10)16)5-6-14-12(15)7-8-17(20)18(14)21/h1-9,17-18,20-21H,19H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-9-17-15(12-13)8-11-18-16-5-3-2-4-14(16)7-10-19(17)18/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11NO4/c18-15-10-3-1-2-8-4-5-9-12(17(20)21)7-6-11(16(15)19)14(9)13(8)10/h1-7,15-16,18-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClNO3/c8-7(10)5-2-1-3-6(4-5)9(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O/c1-2-3-4-5-6-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O2/c11-8-5-7-3-1-2-4-9(7)10(12)6-8/h1-6,11-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22O/c1-3-5-6-7-8-9-10-11-12-13-15-16-14-4-2/h5-13,15H,3-4,14H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3ClN2O5/c8-7(11)4-1-5(9(12)13)3-6(2-4)10(14)15/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O/c18-10-11-7-8-13-14-5-1-3-12-4-2-6-15(17(12)14)16(13)9-11/h1-9,18H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4/c1-10(2)8-11(3)16-18-14-13-7-5-4-6-12(13)9-15-17-14/h4-9H,1-3H3,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8S2/c1-2-5-4-6-3-1/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-13-7-3-5-9-15(13)12(2)16-10-6-4-8-14(11)16/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10Cl2N2O/c13-9-5-7(1-3-11(9)15)17-8-2-4-12(16)10(14)6-8/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2/c14-11-6-5-10-7-9-3-1-2-4-12(9)15-13(10)8-11/h1-8H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H5Cl3O/c1-4(12)5-2-3-6(9)8(11)7(5)10/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)17-11-10-13-9-8-12-4-3-7-15-14-5-1-2-6-16(14)20(17)19(13)18(12)15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O7/c1-20-9-6-10-12(8-3-5-22-17(8)23-10)14-11(9)7-2-4-21-15(18)13(7)16(19)24-14/h3,5-6,8,17H,2,4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O/c1-2-6-12-10-16-15(9-11(12)5-1)13-7-3-4-8-14(13)17-18(16)19-17/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N4O2/c4-2(3(8)9)1-6-7-5/h2H,1,4H2,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClNO3/c8-7(10)5-1-3-6(4-2-5)9(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15NO2/c17-13-6-5-11-9-10-3-1-7-16-8-2-4-12(14(10)16)15(11)18-13/h5-6,9H,1-4,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O/c1-4(2)3-5/h3H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO2/c22-21(23)18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h2,4-11H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-10-6-5-9-11(14(10)18)13(17)8-4-2-1-3-7(8)12(9)16/h1-6,15,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2BrCl2NO4/c7-1-2(11)5-3(8)4(9)6(14-5)10(12)13/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c1-5-3-8(10)6(2)4-7(5)9/h3-4H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClNO2/c8-5-6-3-1-2-4-7(6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6Cl4O3S/c13-5-1-7(15)11(17)9(3-5)20(19)10-4-6(14)2-8(16)12(10)18/h1-4,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2O5/c12-8(13)5-10-9(14)6-1-3-7(4-2-6)11(15)16/h1-4H,5H2,(H,10,14)(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c1-2-6-12-11(5-1)9-10-15-16(12)13-7-3-4-8-14(13)17-18(15)19-17/h1-10,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8Br2O4/c7-1-3-11-5(9)6(10)12-4-2-8/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12O2/c1-2-6-7(10-6)3-5(1)8-4-9-8/h5-8H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12O/c23-15-7-9-16-17-8-6-13-5-4-12-2-1-3-14-10-19(18(16)11-15)22(17)21(13)20(12)14/h1-11,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O2/c13-9-5-8-7-3-1-2-4-10(7)14-11(8)6-12(9)15(16)17/h1-6,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H4N4O9/c18-13-7-1-5(14(19)20)3-9(16(23)24)11(7)12-8(13)2-6(15(21)22)4-10(12)17(25)26/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12BrNO4/c19-11-14(21)17-15(12-7-3-1-4-8-12)16(18(24-17)20(22)23)13-9-5-2-6-10-13/h1-10H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO2/c22-21(23)18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h5-11H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12/c1-11-5-4-8-15-13(11)10-9-12-6-2-3-7-14(12)15/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16O3/c1-7-3-4-8(2)11-9(7)5-6-10-12(11)15-16(19-15)14(18)13(10)17/h3-6,13-18H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O6/c1-19-6-4-9(17)11-10(5-6)20-14-8(16)3-2-7(15)12(14)13(11)18/h2-5,15-17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-3-17-9-5-4-8-10(11(9)16-12(17)13)14-6-7(2)15-8/h4-6H,3H2,1-2H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO5/c1-8(2)7-16-11(13)6-4-9-3-5-10(17-9)12(14)15/h3-6,8H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16O/c1-11-6-7-12-10-17-14-4-2-3-5-15(14)20-21(22-20)19(17)16-9-8-13(11)18(12)16/h2-7,10,20-21H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10N2O5/c8-1-6-3(10)4(11)7(2-9)5(6)12/h3-4,8-11H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14N2O4/c1-3-8(2)12-10(14)6-4-9-5-7-11(17-9)13(15)16/h4-8H,3H2,1-2H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO2/c1-11(8-14-11)10(13)12-7-9-5-3-2-4-6-9/h2-6H,7-8H2,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c9-7-3-1-6(2-4-7)5-8(10)11/h1-4H,5,9H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6N2O4/c13-11(14)8-5-7-3-1-2-4-9(7)10(6-8)12(15)16/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-10-15-6-7-17-12-14-4-2-3-5-18(14)19-9-8-16(11-13)20(15)21(17)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H21ClN4O7S/c14-3-4-16-13(25)26-6-8(11(22)17-5-10(20)21)18-9(19)2-1-7(15)12(23)24/h7-8H,1-6,15H2,(H,16,25)(H,17,22)(H,18,19)(H,20,21)(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2/c15-13-7-3-11(4-8-13)1-2-12-5-9-14(16)10-6-12/h3-10H,1-2,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H20O7/c1-22(2,26)7-5-10-3-4-12(23)16-19(25)17-14(28-20(10)16)9-13-15(18(17)24)11-6-8-27-21(11)29-13/h3-4,6,8-9,11,21,23-24,26H,5,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H21N2O4P/c1-6-16-19(15,17-7-2)18-11-8-10(5)13-12(14-11)9(3)4/h8-9H,6-7H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO5/c1-2-3-8-16-11(13)7-5-9-4-6-10(17-9)12(14)15/h4-7H,2-3,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15Cl2N/c15-7-9-17(10-8-16)14-6-5-12-3-1-2-4-13(12)11-14/h1-6,11H,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16O2/c1-14(22)23-13-21-18-9-5-3-7-16(18)12-20-17-8-4-2-6-15(17)10-11-19(20)21/h2-12H,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N4/c1-13-8-4-6(5-10)2-3-7(8)12-9(13)11/h2-4H,1H3,(H2,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15NO5/c1-5(2)10(14)8(3)9(16-8,6(12)11-10)7(13)15-4/h5,14H,1-4H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-8-4-3-7-2-1-5-11-9(7)6-8/h1-6H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-8-2-4-9(5-3-8)11-6-10-7-12-10/h2-5,10H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N4O3S/c1-4-2-8-6(12)10(4)7-9-3-5(15-7)11(13)14/h3-4H,2H2,1H3,(H,8,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5Cl3O/c5-4(6,7)1-3-2-8-3/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O2/c7-5-1-3-6(4-2-5)8(9)10/h1-4H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8ClN5OS/c9-1-2-10-8(15)16-7-5-6(12-3-11-5)13-4-14-7/h3-4H,1-2H2,(H,10,15)(H,11,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl2NO4/c1-2(10)5-3(7)4(8)6(13-5)9(11)12/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO2S/c1-11(16)15(17)12-7-9-14(10-8-12)18-13-5-3-2-4-6-13/h2-10,17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O/c21-18-6-2-5-15-16-10-9-13-4-1-3-12-7-8-14(11-17(15)18)20(16)19(12)13/h1-5,7-11,18,21H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2O2/c1-7-3(6)2(4)5/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O7/c1-21-9-6-10-13(17(20)4-5-22-16(17)23-10)14-12(9)7-2-3-8(18)11(7)15(19)24-14/h2-6,16,18-20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)8-4-5-10-11(6-8)9-2-1-3-13(16(20)21)12(9)7-14(10)17(22)23/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O2/c15-10-6-5-9-11(12(10)16)14(18)8-4-2-1-3-7(8)13(9)17/h1-6,15-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7ClN2/c7-4-1-2-5(8)6(9)3-4/h1-3H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO2/c1-10(20)19-15-8-4-11-3-7-14-16(21)9-5-12-2-6-13(15)17(11)18(12)14/h2-9,21H,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O3S/c1-8-4-2-3-5-10(8)13-12(15)9-6-11(14(16)17)18-7-9/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H9NO3/c20-19(21)15-9-13-8-12-5-4-10-2-1-3-11-6-7-14(18(13)22-15)17(12)16(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO2S/c14-13(15)8-5-6-10-9-3-1-2-4-11(9)16-12(10)7-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-6(10)7-2-4-8(9-11)5-3-7/h2-5,9,11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19N3O2/c1-13(21)22-12-14-4-6-15(7-5-14)18-19-16-8-10-17(11-9-16)20(2)3/h4-11H,12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O3/c1-4(7)9-3-6(2)5-8/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12BrNO/c1-8(11)10(13)12-7-9-5-3-2-4-6-9/h2-6,8H,7H2,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO2/c23-19-10-7-13-6-9-18-16(20(13)21(19)24)11-15-14-4-2-1-3-12(14)5-8-17(15)22-18/h1-11,19,21,23-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N6O2/c1-9(21)17-11-4-2-10(3-5-11)8-16-20-14(22)13-12(18-19-20)6-7-15-13/h2-8,22H,1H3,(H,17,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2S/c14-13(15)10-6-8-12(9-7-10)16-11-4-2-1-3-5-11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8Cl3NO2S/c10-9(11,12)16-13-7(14)5-3-1-2-4-6(5)8(13)15/h1-2,5-6H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO/c16-9-15-12-5-6-14-11(8-12)7-10-3-1-2-4-13(10)14/h1-6,8-9H,7H2,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4Br2/c3-1-2-4/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9N3O3/c1-2-12-6(11)4-8-5(10)3-9-7/h3H,2,4H2,1H3,(H,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12O/c1-2-6-13-12(5-1)14-8-9-16-20-18-11(10-17(13)19(14)20)4-3-7-15(18)21-22(16)23-21/h1-10,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O/c1-8(14)13-10-5-4-9-3-2-6-12-11(9)7-10/h2-7H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4/c13-7-1-3-9-11(5-7)16-12-6-8(14)2-4-10(12)15-9/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N5/c1-15-8-4-6-2-3-12-5-7(6)13-9(8)14-10(15)11/h2-5H,1H3,(H2,11,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-8-15-13(5-1)11-12-17-16-9-3-6-14-7-4-10-18(19(14)16)20(15)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9Cl/c15-14-9-10-5-1-2-6-11(10)12-7-3-4-8-13(12)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18ClN3O2/c1-8-2-4-9(5-3-8)12-10(15)14(13-16)7-6-11/h8-9H,2-7H2,1H3,(H,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO5/c1-6-7(2,12)9-4(10)8(6,14-6)5(11)13-3/h12H,1-3H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N3O4/c1-7-5-12(17(20)21)8(2)13-10-6-9(16(18)19)3-4-11(10)15-14(7)13/h3-6,15H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-11-10-16-14-6-2-1-5-13(14)15-7-3-4-12-8-9-17(18)20(16)19(12)15/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5ClO/c3-1-2-4/h4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)12-7-8-14-11(9-12)6-5-10-3-1-2-4-13(10)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O2/c7-4-2-1-3-5(6(4)8)9(10)11/h1-3H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H26ClN3/c1-2-28(17-14-25)16-7-15-26-23-20-10-5-6-11-22(20)27-24-19-9-4-3-8-18(19)12-13-21(23)24/h3-6,8-13H,2,7,14-17H2,1H3,(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8-6-7-11(12(13)14)10-5-3-2-4-9(8)10/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-3-7-13-11(5-1)10-16-17-15(13)9-12-6-2-4-8-14(12)18(17)20-19(16)21-20/h1-10,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O2/c1-21(2)12-6-11-19-17-13-7-3-4-9-15(13)20-18-14(17)8-5-10-16(18)22(23)24/h3-5,7-10H,6,11-12H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N/c1-6-4-8(3)9(10)5-7(6)2/h4-5H,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO4/c20-17-8-7-12-14(18(17)21)6-5-11-10-3-1-2-4-13(10)16(19(22)23)9-15(11)12/h1-9,17-18,20-21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-4-3-5-7(2)8(6)9-10/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c14-13(15)11-7-6-9-5-4-8-2-1-3-10(11)12(8)9/h1-3,6-7H,4-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O4/c1-21-15(19)11-7-9(3-5-13(11)17)10-4-6-14(18)12(8-10)16(20)22-2/h3-8H,17-18H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22ClNO8/c1-11(24)22(30-20-19(27)18(26)17(25)16(10-23)29-20)13-4-8-15(9-5-13)28-14-6-2-12(21)3-7-14/h2-9,16-20,23,25-27H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO4/c1-2-3-11(13)16-8-9-4-6-10(7-5-9)12(14)15/h4-7H,2-3,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H21N3O3/c1-10(2)15-14(16-11(3)4)20-9-12-5-7-13(8-6-12)17(18)19/h5-8,10-11H,9H2,1-4H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N/c1-2-5-13-12(4-1)7-8-15-14(13)9-10-17-16(15)6-3-11-18-17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H25ClN5O2/c1-25(2,3)13-12-21-11-10-15-4-6-16(7-5-15)22-23-19-9-8-17(24(26)27)14-18(19)20/h4-9,14,21H,10-13H2,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)14-9-7-12-5-4-10-2-1-3-11-6-8-13(14)16(12)15(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H20O6/c15-13(19-7-9-5-17-9)11-3-1-2-4-12(11)14(16)20-8-10-6-18-10/h9-12H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)9-2-1-8-5-14(17(22)23)11-4-3-10(16(20)21)7-13(11)12(8)6-9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N4O2/c1-3-19(4-2)15-9-5-13(6-10-15)17-18-14-7-11-16(12-8-14)20(21)22/h5-12H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10N2O4/c23-21(24)16-10-8-14-12-3-1-2-4-13(12)20-17(22(25)26)9-6-11-5-7-15(16)19(14)18(11)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7Cl2NO2S/c6-1-4(7)11-2-3(8)5(9)10/h1,3H,2,8H2,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H19ClN3O5P/c1-4-17-19(16,18-5-2)8(3)11-9(14)13(12-15)7-6-10/h8H,4-7H2,1-3H3,(H,11,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O5/c16-6-7-4-9-13(11(18)5-7)15(20)12-8(14(9)19)2-1-3-10(12)17/h1-5,16-18H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5ClO3/c1-2-3(6)5(8)9-4(2)7/h4,7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-6-16-13(4-1)10-11-17-18-7-3-5-14-8-9-15(20(14)18)12-19(16)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N7O4/c18-15-14-17(21-16(20-15)10-1-3-12(4-2-10)23(25)26)22(9-19-14)11-5-7-13(8-6-11)24(27)28/h1-9H,(H2,18,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO2/c20-17-12-6-2-3-7-13(12)18(21)16(17)15-10-9-11-5-1-4-8-14(11)19-15/h1-10,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O2/c11-9-6-5-7-3-1-2-4-8(7)10(9)12/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-4(2,3)7-5-6/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N2O4/c1-6(12)10-8-4-3-7(11(13)14)5-9(8)15-2/h3-5H,1-2H3,(H,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-13-8-11-3-1-2-9-4-5-10-6-7-12(17(19)20)16(13)15(10)14(9)11/h1-8,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O4/c1-5-4-8(11-6(2)9)12-7(3)10-5/h5,7-8H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO2/c1-13-11-12-17-18(19(13)22-14-7-3-2-4-8-14)21(24)16-10-6-5-9-15(16)20(17)23/h2-12,22H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N4O7/c1-3(11)6-4(8(12)13)2-5(9(14)15)7(6)10(16)17/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6Cl4O2/c7-1-2(8)6(12)4(10)3(9)5(1)11">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O4/c13-12-7-10(15(18)19)5-6-11(12)8-1-3-9(4-2-8)14(16)17/h1-7H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10N2O3/c22-20-15-4-2-1-3-12(15)13-7-8-14-16(21(23)24)9-5-11-6-10-17(20)19(13)18(11)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO3/c15-11-2-4-13-9(7-11)5-8-6-10(14(16)17)1-3-12(8)13/h1-4,6-7,15H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N3O2/c1-12-7-11-9(10(12)13(14)15)8-5-3-2-4-6-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O2/c1-4(7)3-6(2)5-8/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10ClN/c15-16-13-11-7-3-1-5-9(11)10-6-2-4-8-12(10)14(13)16/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4N4S/c10-5-3-4(7-1-6-3)8-2-9-5/h1-2H,(H2,6,7,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N/c1-3-2-4-3/h3-4H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N4O/c15-13-7-5-8-10(11-6-7)14-4-2-1-3-9(14)12-8/h1-6,13,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O3/c1-12-10-4-3-8(5-9-7-14-9)6-11(10)13-2/h3-4,6,9H,5,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12/c1-3-13-7-11-18-16-6-2-5-15-9-10-17(21(15)16)19-12-8-14(4-1)20(13)22(18)19/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H26Cl2N4O/c1-2-3-13-28-19-8-7-17-21(27-19)20(25-11-4-10-24-12-9-22)16-6-5-15(23)14-18(16)26-17/h5-8,14,24H,2-4,9-13H2,1H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4/c1-7-6-9-8(4-3-5-14-9)10-11(7)16(2)12(13)15-10/h3-6H,1-2H3,(H2,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6N2O5/c7-3(8)1-6(5-11)2-4(9)10/h1-2H2,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-2-11-8-5-3-7(9-10)4-6-8/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14O4S/c22-26(23,24)25-12-19-16-7-2-1-6-15(16)17-10-8-13-4-3-5-14-9-11-18(19)21(17)20(13)14/h1-11H,12H2,(H,22,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16N2O/c1-23-15-12-10-14(11-13-15)21-20-16-6-2-4-8-18(16)22-19-9-5-3-7-17(19)20/h2-13H,1H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2/c1-16-13-7-3-2-5-10(13)9-11-12(15)6-4-8-14(11)16/h2-9,15H,1H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N4O/c1-8(18)15-13-16-12-9-4-3-7-14-10(9)5-6-11(12)17(13)2/h3-7H,1-2H3,(H,15,16,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-9-5-1-3-7-11(9)14(18)12-8(13(7)17)4-2-6-10(12)16/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H20O11/c1-28-7-4-10-14(16(25)13-8(22)2-3-9(23)19(13)29-10)11(5-7)30-20-18(27)17(26)15(24)12(6-21)31-20/h2-5,12,15,17-18,20-24,26-27H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H23N3/c1-3-7-21-11-14-9-18-16(8-13(2)10-22(18)12-20)15-5-4-6-17(21)19(14)15/h4-6,11,13,16,18H,3,7-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)14-9-8-10-4-3-7-12-11-5-1-2-6-13(11)16(14)15(10)12/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-10-7-3-2-6-13-8(7)4-5-9(10)14-11(15)12/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O2/c4-3-1-2-5-3/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c19-18-11-17-13-6-2-1-5-12(13)9-10-15(17)14-7-3-4-8-16(14)18/h1-11H,19H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO3/c17-15(11-6-12-4-2-1-3-5-12)13-7-9-14(10-8-13)16(18)19/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO/c18-17-14-9-7-12-5-4-10-2-1-3-11-6-8-13(14)16(12)15(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10F2N2/c13-9-5-7(1-3-11(9)15)8-2-4-12(16)10(14)6-8/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O2/c1-2-7-14-11(4-1)5-3-6-12(14)8-15-9-13-10-16-13/h1-7,13H,8-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3FN2O4/c7-5-2-1-4(8(10)11)3-6(5)9(12)13/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8O3/c1-6-5-9(13)10-7(11(6)14)3-2-4-8(10)12/h2-5,12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N4O/c9-7(13)12-8-10-5-3-1-2-4-6(5)11-8/h1-4H,(H4,9,10,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O3S/c1-13-8-5-3-2-4-6(10(11)12)7(5)14-9-8/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O2/c1-4(2,3)6-5/h5H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O2/c19-16-10-7-12-6-8-14-13-4-2-1-3-11(13)5-9-15(14)17(12)18(16)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O4/c1-2-7-11-9(13)5-3-8-4-6-10(16-8)12(14)15/h3-6H,2,7H2,1H3,(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O6/c10-7(11)4-1-5(8(12)13)3-6(2-4)9(14)15/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O2/c1-17(2)15-9-5-13(6-10-15)3-4-14-7-11-16(12-8-14)18(19)20/h3-12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O2/c11-10(12)7-1-2-8-6(5-7)3-4-9-8/h1-5,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-6-3-4-7(2)8(9)5-6/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O3/c1-3(7)6-9-4(8)5-2/h1-2H3,(H,5,8)(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O4S/c1-18-10-4-2-9(3-5-10)13-12(15)8-6-11(14(16)17)19-7-8/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H17NO2S/c1-14-10-12-15(13-11-14)25(23,24)22-20-18-8-4-2-6-16(18)17-7-3-5-9-19(17)21(20)22/h2-13,20-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-6-3-2-4-7(5-6)8-9/h2-5,8-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O6/c10-7(11)5-3-4(8(12)13)1-2-6(5)9(14)15/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H25Cl2N3O/c1-3-26(12-9-22)11-4-10-24-21-17-7-5-15(23)13-20(17)25-19-8-6-16(27-2)14-18(19)21/h5-8,13-14H,3-4,9-12H2,1-2H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO3/c14-13(15)10-6-3-5-9-8-4-1-2-7-11(8)16-12(9)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H19N5O4/c1-12(2,3)21-11(19)16(5)9-8(15(4)7-13-9)10(18)17(6)14-20/h7H,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO/c7-5-2-1-3-6(8)4-5/h1-4,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO4/c10-9(11)6-1-3-7(4-2-6)13-8-5-12-8/h1-4,8H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5ClN2O2/c7-4-1-2-5(8)6(3-4)9(10)11/h1-3H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N4O2/c1-11-2-6-13(7-3-11)16-17-15-10-12-4-8-14(9-5-12)18(19)20/h2-9H,10H2,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7N3/c1-3-5-4-2/h1-2H3,(H,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H25N3O4/c1-10(20)13-7-11(19-15(17)22)5-6-14(13)23-9-12(21)8-18-16(2,3)4/h5-7,12,18,21H,8-9H2,1-4H3,(H3,17,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20FN3O3/c1-3-20-10-12(17(23)24)16(22)11-8-13(18)15(9-14(11)20)21-6-4-19(2)5-7-21/h8-10H,3-7H2,1-2H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15N/c1-3-8-6-5-7-9(4-2)10(8)11/h5-7H,3-4,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2/c13-8-5-6-10-9-3-1-2-4-11(9)14-12(10)7-8/h1-7,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16N6O2S/c1-29(27,28)25-14-8-6-13(7-9-14)22-20-16-4-2-3-5-18(16)23-19-11-10-15(24-26-21)12-17(19)20/h2-12,25H,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO3/c15-9-5-6-10(16)12-11(9)13(17)7-3-1-2-4-8(7)14(12)18/h1-6,16H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-2-4-3-5-4/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4O/c1-9-3-5-11(7-13(9)15)17-18(19)12-6-4-10(2)14(16)8-12/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12O/c23-15-7-9-16-18(11-15)17-8-6-13-5-4-12-2-1-3-14-10-19(16)22(17)21(13)20(12)14/h1-11,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9ClN4/c13-6-1-2-9-10(3-6)17-12-5-8(15)7(14)4-11(12)16-9/h1-5H,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8Cl2S/c5-1-3-7-4-2-6/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N4O2/c17-15-10-5-11-3-1-2-4-14(11)16(15)19-18-12-6-8-13(9-7-12)20(21)22/h1-10H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15N5/c1-6-5-15-9-7(2)8(3)12-11(10(9)16-6)17-13(14)18(12)4/h5H,1-4H3,(H2,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H18O2/c1-13-7-8-16-11-19-17-6-4-3-5-15(17)9-10-18(19)20-12-21(25-14(2)24)22(13)23(16)20/h3-11,21H,12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18F3N3O3/c1-21-4-6-22(7-5-21)15-12(19)8-10-14(13(15)20)23(3-2-18)9-11(16(10)24)17(25)26/h8-9H,2-7H2,1H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO2/c22-21(23)18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h5-11H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O6/c1-6-7(2,11)13-5(10)8(6,14-6)4(9)12-3/h11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-3-17-9-5-4-8-10(11(9)16-12(17)13)15-7(2)6-14-8/h4-6H,3H2,1-2H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3/c13-8-4-3-7-11-12(8)15-10-6-2-1-5-9(10)14-11/h1-7H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-4-5-9-3-2-6-11-10(9)7-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16N2O4/c1-12(2,3)8-13-10(15)6-4-9-5-7-11(18-9)14(16)17/h4-7H,8H2,1-3H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O2/c7-5-3-1-2-4-6(5)8/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO2/c20-19(21)14-7-10-16-13(11-14)6-9-17-15-4-2-1-3-12(15)5-8-18(16)17/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H15N3O4/c26-21-14-18(16-7-3-1-4-8-16)13-20(17-9-5-2-6-10-17)24(21)23-15-19-11-12-22(29-19)25(27)28/h1-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H15ClO/c1-2-3-4-5-6-7-8(9)10/h2-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O/c1-8-4-3-5-9(6-8)7-11(2)10-12/h3-6H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO3/c17-15(13-4-2-1-3-5-13)11-8-12-6-9-14(10-7-12)16(18)19/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N3O2/c1-4-6(9)2-5(8)3-7(4)10(11)12/h2-3H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO2/c1-10(7-13-10)9(12)11-8-5-3-2-4-6-8/h2-6H,7H2,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O4/c7-2-1-6(5-10)3-4(8)9/h7H,1-3H2,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO2/c12-11(13)10-7-3-5-8-4-1-2-6-9(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO2/c11-8-5-9(12)10(13)7-4-2-1-3-6(7)8/h1-4,11H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H32N6O6/c27-17-11-23(12-18(28)25(17)15-21-3-7-31-8-4-21)1-2-24-13-19(29)26(20(30)14-24)16-22-5-9-32-10-6-22/h1-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-11-16-12-15-5-2-3-7-18(15)19-10-9-14-6-4-8-17(13)20(14)21(16)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12NO4PS/c1-7-6-8(4-5-9(7)10-11)14-15(16,12-2)13-3/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HCl3O/c3-1(4)2(5)6/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O6/c1-5-2-7-11(15(21)12(5)18)14(20)10-8(13(7)19)3-6(16)4-9(10)17/h2-4,16-17,19-20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2/c15-13-7-3-11(4-8-13)1-2-12-5-9-14(16)10-6-12/h1-10H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13ClO6/c1-22-17-9(20)3-4-10-14(17)16(21)15-12(25-10)7-11-13(18(15)23-2)8-5-6-24-19(8)26-11/h3-8,19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H13NO/c1-18-9-8-14-16(18)7-5-12-3-2-11-4-6-13(19)10-15(11)17(12)14/h2-10,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H23NO2/c1-2-22(18-12-6-3-7-13-18,19-14-8-4-9-15-19)25-21(24)23-20-16-10-5-11-17-20/h1,3-4,6-9,12-15,20H,5,10-11,16-17H2,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O4/c15-5-1-3-7(17)11-9(5)13(19)12-8(18)4-2-6(16)10(12)14(11)20/h1-4,15,18-20H,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O4/c1-7(2)11-9(13)5-3-8-4-6-10(16-8)12(14)15/h3-7H,1-2H3,(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2S2/c14-10-5-1-3-7-12(10)16-9-17-13-8-4-2-6-11(13)15/h1-8H,9,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO4/c9-5-2-1-4(3-6(5)10)7(11)8-12/h1-3,9-10,12H,(H,8,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N3O3/c9-6-1-2-7(10-3-4-12)8(5-6)11(13)14/h1-2,5,10,12H,3-4,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N3O6/c16-10-13(1-7-4-19-7)11(17)15(3-9-6-21-9)12(18)14(10)2-8-5-20-8/h7-9H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Br2/c1-3(5)2-4/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H19N3O5/c16-6-3-13-11-2-1-10(9-12(11)15(19)20)14(4-7-17)5-8-18/h1-2,9,13,16-18H,3-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9ClN4O3/c6-1-2-10(9-13)5(12)8-3-4(7)11/h1-3H2,(H2,7,11)(H,8,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-3-7-16-13(5-1)11-15-12-14-6-2-4-8-17(14)19-10-9-18(16)20(15)19/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H20ClN3O6S/c13-3-4-23-6-8(11(20)15-5-10(18)19)16-9(17)2-1-7(14)12(21)22/h7-8H,1-6,14H2,(H,15,20)(H,16,17)(H,18,19)(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO2S/c14-13(15)8-5-6-12-10(7-8)9-3-1-2-4-11(9)16-12/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16O3/c1-5-6-9-7-11(14-3)12(15-4)8-10(9)13-2/h5-8H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O/c21-16-7-9-17-15(11-16)10-14-5-4-12-2-1-3-13-6-8-18(17)20(14)19(12)13/h1-10,16,21H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)8-4-5-10-9-2-1-3-13(16(20)21)12(9)7-14(17(22)23)11(10)6-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-5-2-3-7(9)6(8)4-5/h2-4,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-9-7-15-17(19-10(2)18-15)16-13(9)6-4-11-3-5-12(20)8-14(11)16/h3-8,20H,1-2H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O3S/c1-2-9-4-3-5-11(6-9)14-13(16)10-7-12(15(17)18)19-8-10/h3-8H,2H2,1H3,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N/c13-12-8-4-7-11(9-12)10-5-2-1-3-6-10/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO3/c14-13(15)11-7-9-5-1-3-8-4-2-6-10(16-11)12(8)9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13NO4S/c15-13-11-2-1-8(16-6-10-7-18-10)3-12(11)19-14(13)4-9-5-17-9/h1-3,9-10H,4-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O5/c1-18-8-2-3-11-9(6-8)14(17)13-10(16)4-7(15)5-12(13)19-11/h2-6,15-16H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-14-9-7-12-5-4-10-2-1-3-11-6-8-13(14)16(12)15(10)11/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N/c1-10-4-2-3-5-13(10)11-6-8-12(14)9-7-11/h2-9H,14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18N2O5/c1-7(16-9(3)13)5-12(11-15)6-8(2)17-10(4)14/h7-8H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO3/c1-19-7-6-10-8-13-18(22-9-21-13)15-11-4-2-3-5-12(11)17(20)16(19)14(10)15/h2-5,8,16-17,20H,6-7,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O6/c1-21-11-7-12-13(8-5-6-22-18(8)24-12)17-15(11)16(20)14-9(19)3-2-4-10(14)23-17/h2-8,18-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H4Cl3NO2S/c10-9(11,12)16-13-7(14)5-3-1-2-4-6(5)8(13)15/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H46O3/c1-18(2)7-6-8-19(3)22-9-10-23-21-12-16-27(30-29)17-20(28)11-15-26(27,5)24(21)13-14-25(22,23)4/h12,16,18-24,28-29H,6-11,13-15,17H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3O3/c1-10(9-12)6-7-2-4-8(5-3-7)11(13)14/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2/c11-8-5-1-3-7-4-2-6-9(12)10(7)8/h1-6H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10/c1-2-6-14-12(4-1)10-13-9-8-11-5-3-7-15(14)16(11)13/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H26N2O4/c1-5-7-8-13(6-2)12-23-17(20)14-9-10-15(18(3)4)16(11-14)19(21)22/h9-11,13H,5-8,12H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20FN3O4/c1-10-9-26-17-15-12(11(23)3-4-22(10)15)13(18(24)25)14(19)16(17)21-7-5-20(2)6-8-21/h3-4,10H,5-9H2,1-2H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H8N2O6/c16-12-8(15(20)21)5-9(17(22)23)10-11(12)14(19)7-4-2-1-3-6(7)13(10)18/h1-5H,16H2,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O3S/c16-12-7-3-1-2-4-8(7)13-11(14-12)9-5-6-10(19-9)15(17)18/h1-6,11,13H,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4/c1-9-5-3-4-6-12(9)17-18-13-8-7-11(15)10(2)14(13)16/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12/c1-2-8-14-13(7-1)15-9-3-4-11-17(15)18-12-6-5-10-16(14)18/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H26ClN3O/c1-3-25(15-12-22)14-7-13-23-20-16-8-4-5-10-18(16)24-21-17(20)9-6-11-19(21)26-2/h4-6,8-11H,3,7,12-15H2,1-2H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-8-16-15(7-1)17-9-3-5-13-11-12-14-6-4-10-18(16)20(14)19(13)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O2/c13-9-6-5-8-7-3-1-2-4-10(7)14-11(8)12(9)15(16)17/h1-6,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H27NO2/c1-4-24(20-11-7-5-8-12-20,21-16-15-18(2)19(3)17-21)27-23(26)25-22-13-9-6-10-14-22/h1,5,7-8,11-12,15-17,22H,6,9-10,13-14H2,2-3H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6BrCl/c4-2-1-3-5/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N6O6/c17-13-10-15(20-14(19-13)7-1-3-8(4-2-7)22(26)27)21(6-18-10)16-12(25)11(24)9(5-23)28-16/h1-4,6,9,11-12,16,23-25H,5H2,(H2,17,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-14-9-10-5-1-2-6-11(10)12-7-3-4-8-13(12)14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O2/c1-21(2)12-6-11-19-18-13-7-3-4-8-14(13)20-15-9-5-10-16(17(15)18)22(23)24/h3-5,7-10H,6,11-12H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O2/c1-3-14-10-5-4-8(6-9(10)11)12-7(2)13/h4-6H,3,11H2,1-2H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2/c1-3-7-11(8-4-1)13-14-12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11Cl/c19-18-11-17-13-6-2-1-5-12(13)9-10-15(17)14-7-3-4-8-16(14)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO5/c1-4-8-7(2,13)10-5(11)9(8,15-8)6(12)14-3/h13H,4H2,1-3H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO3/c23-18-12-6-8-16-14(17(12)20-21(25-20)19(18)24)9-13-11-4-2-1-3-10(11)5-7-15(13)22-16/h1-9,18-21,23-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O2S/c19-21(20)15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(21)18(14)17(11)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO2/c16-15(17)12-7-8-14-11(9-12)6-5-10-3-1-2-4-13(10)14/h1-4,7-9H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H28ClN3/c1-2-30(19-17-27)21-15-13-20(14-16-21)8-7-18-28-26-22-9-3-5-11-24(22)29-25-12-6-4-10-23(25)26/h3-6,9-16H,2,7-8,17-19H2,1H3,(H,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22N2O/c1-3-7-21-11-14-9-18-16(8-13(12-22)10-20(18)2)15-5-4-6-17(21)19(14)15/h3-6,8,11,16,18,22H,1,7,9-10,12H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H26O3/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20-16-17(19)15-18/h5-14,17-19H,2-4,15-16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O3/c1-11(2,3)14-13-10(12)9-7-5-4-6-8-9/h4-8H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H12ClNO3/c22-15-10-4-8-13-17(15)19(24)14-9-5-11-16(18(14)20(13)25)23-21(26)12-6-2-1-3-7-12/h1-11H,(H,23,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)12-8-7-11-6-5-10-3-1-2-4-13(10)14(11)9-12/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N2O4/c1-10(2)8(12)5-3-7-4-6-9(15-7)11(13)14/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17N3/c1-21(2)18-11-9-16(10-12-18)19-20-17-8-7-14-5-3-4-6-15(14)13-17/h3-13H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-2-6-14-11(4-1)8-9-13-10-12-5-3-7-15-17(12)18(16(13)14)20-19(15)21-20/h1-10,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2/c1-3-7-11(8-4-1)13-14-12-9-5-2-6-10-12/h1-10,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12BrNO3/c1-3-12-6(10)4-9-7(11)5(2)8/h5H,3-4H2,1-2H3,(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O/c23-16-10-9-14-12-21-19-7-3-1-5-17(19)18-6-2-4-8-20(18)22(21)13-15(14)11-16/h1-13,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16O/c1-2-4-13(5-3-1)10-14-6-8-15(9-7-14)11-16-12-17-16/h1-9,16H,10-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)9-4-5-10-11-2-1-3-13-15(18(21)22)7-6-12(16(11)13)14(10)8-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c7-5-3-1-2-4-6(5)8/h1-4H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-4-7(2)8(5-6)9-10/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10N2O5/c18-15(12-4-8-14(9-5-12)17(21)22)10-3-11-1-6-13(7-2-11)16(19)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10O2/c1-2-5-10-8-6-3-4-7-9(8)11(12)13-10/h3-7H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O/c19-15-11-10-12-6-4-5-9-14(12)16(15)18-17-13-7-2-1-3-8-13/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8ClN3/c1-12-7-3-2-5(9)4-6(7)11-8(12)10/h2-4H,1H3,(H2,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-12-8-7-11-6-5-10-3-1-2-4-13(10)14(11)9-12/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H20N4O/c1-16-7-3-6-10-21(16)26-25-19-12-13-22(17(2)15-19)27-28-24-20-9-5-4-8-18(20)11-14-23(24)29/h3-15,29H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2/c1-16-13-5-3-2-4-10(13)8-11-6-7-12(15)9-14(11)16/h2-9,15H,1H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9ClO/c10-9(11)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H18/c1-3-9-17-15(7-1)13-22-19-11-5-6-12-20(19)23-18-10-4-2-8-16(18)14-21(17)24(22)23/h1-4,7-10,13-14H,5-6,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O2/c1-21-16-9-5-4-8-14(16)18-19-17-13-7-3-2-6-12(13)10-11-15(17)20/h2-11,20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-6-3-4-7(2)8(5-6)9(10)11/h3-5H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H7N3O6/c18-15(19)9-4-5-10-11(7-9)14-8(6-13(10)17(22)23)2-1-3-12(14)16(20)21/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O5/c1-7-9(17)4-3-8-5-11(18)15(12-10(6-16)19-12)13(20-15)14(7,8)2/h5,7,9-10,12-13,16-17H,3-4,6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O2/c1-3(2)4(5)6/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO3/c10-6-5-7-1-3-8(4-2-7)9(11)12/h1-4,10H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14O5/c1-8(14)11-4-5-13(18-10(3)16)12(6-11)7-17-9(2)15/h4-6H,7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O/c1-2-11-4-5-13-10-16-14(8-9-19-16)15-7-6-12(3-1)17(11)18(13)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2O3/c7-3-1-6(5-9)2-4-8/h7-8H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6NO2/c1-3(2)4(5)6/h1-2H3/q-1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H22N2O/c1-18(31)30(24-11-13-28-22(17-24)15-20-7-3-5-9-26(20)28)29-23-10-12-27-21(16-23)14-19-6-2-4-8-25(19)27/h2-13,16-17,29H,14-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2Cl4/c4-1-2(5)3(6)7/h1,3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O6/c18-8-2-1-3-10-13(8)15(20)14-9(19)6-11-12(16(14)22-10)7-4-5-21-17(7)23-11/h1-7,17-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)15-9-8-13-11-5-2-1-4-10(11)12-6-3-7-14(15)16(12)13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O4/c9-7(10)5-2-1-3-6(4-5)8(11)12/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11N7O4/c18-15-14-17(20-9-19-15)22(11-5-7-13(8-6-11)24(27)28)16(21-14)10-1-3-12(4-2-10)23(25)26/h1-9H,(H2,18,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O4S/c21-25(22,23)24-18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1-11H,(H,21,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N3O5S/c1-8-7-19(16,17)5-4-12(8)11-6-9-2-3-10(18-9)13(14)15/h2-3,6,8H,4-5,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O6/c1-6-3-9(17)12-13(14(6)19)15(20)8-4-7(22-2)5-10(18)11(8)16(12)21/h3-5,18,20-21H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-3-7-4-2-6(1)5-8-6/h1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-15-9-13-8-12-3-1-2-10-4-5-11-6-7-14(15)17(13)18(11)16(10)12/h1-8,15,19H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11Br/c16-10-15-13-7-3-1-5-11(13)9-12-6-2-4-8-14(12)15/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14ClN/c1-11-12(2)17-18(20)15-9-5-6-10-16(15)21-19(17)14-8-4-3-7-13(11)14/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O/c7-5-6-3-1-2-4-6/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O2/c1-11(19)17-15-7-3-13(4-8-15)14-5-9-16(10-6-14)18-12(2)20/h3-10H,1-2H3,(H,17,19)(H,18,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N/c1-10-8-9-11(2)15-14(10)12-6-4-5-7-13(12)16(15)3/h4-9H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11N3/c1-7-8(11-2)3-4-9-10(7)13-6-5-12-9/h3-6,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10N2O3/c22-20-15-4-2-1-3-12(15)13-7-5-11-6-9-16(21(23)24)14-8-10-17(20)19(13)18(11)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5ClN2O3/c7-3-1-4(8)6(10)2-5(3)9(11)12/h1-2,10H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10ClN/c1-6(2)4-3-5/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c7-8-6-4-2-1-3-5-6/h1-5,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12O4/c1-18-9-6-7-11(13(16)8-9)14(17)10-4-2-3-5-12(10)15/h2-8,15-16H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15NO/c1-3-11(4-2)9-6-5-7-10(12)8-9/h5-8,12H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N3/c14-9-5-3-7-11-12(9)13(15)8-4-1-2-6-10(8)16-11/h1-7H,14H2,(H2,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O/c1-3-2-4-3/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4O2/c1-7-4-3-5-15-11(7)14-10-8(2)9(16(17)18)6-13-12(10)15/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-5-9-18-17(11-13)12-16-7-6-14-3-2-4-15-8-10-19(18)21(16)20(14)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14N2O/c22-14-11-9-13(10-12-14)20-19-15-5-1-3-7-17(15)21-18-8-4-2-6-16(18)19/h1-12,22H,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-9-12(2)14-8-7-13-5-3-4-6-15(13)16(14)10-11/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H21N3/c1-3-7-21-11-14-9-18-16(8-13(2)10-22(18)12-20)15-5-4-6-17(21)19(14)15/h3-6,11,13,16,18H,1,7-10H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)11-8-10-4-3-7-14-12-5-1-2-6-13(12)15(9-11)16(10)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO3/c1-9(6-13-9)7-2-4-8(5-3-7)10(11)12/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4/c1-13-12-15-11-8-4-3-7-14-9(8)5-6-10(11)16(12)2/h3-7H,1-2H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7ClN2/c7-5-2-1-4(8)3-6(5)9/h1-3H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21N3O/c1-23(2)14-13-21-20(24)17-10-6-9-16-11-12-18(22-19(16)17)15-7-4-3-5-8-15/h3-12H,13-14H2,1-2H3,(H,21,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO/c12-11-10-7-3-5-8-4-1-2-6-9(8)10/h1-7,11-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9NO/c17-13-8-11-5-4-9-2-1-3-10-6-7-12(16-13)15(11)14(9)10/h1-8H,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18O3/c1-9-4-3-5-11-12-6-7-13-16(15(12)10(2)8-14(9)11)19-20(23-19)18(22)17(13)21/h3-8,17-22H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H21NO/c1-3-4-5-15-6-10-17(11-7-15)19-14-16-8-12-18(20-2)13-9-16/h6-14H,3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N/c1-13-9-7-12(8-10-13)11-5-3-2-4-6-11/h2-7,9H,8,10H2,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11Cl2N3O2/c9-1-3-13(4-2-10)6-5-11-8(15)12-7(6)14/h5H,1-4H2,(H2,11,12,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H4Cl5NO2S2/c11-7(9(13)14)8(12)10(15)20-19-6-4-2-1-3-5(6)16(17)18/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO4/c9-7(10)5-2-1-3-6(4-5)8(11)12/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H18N2O2/c1-26-19-14-17(12-13-18(19)25)22-23-20(15-8-4-2-5-9-15)21(24-22)16-10-6-3-7-11-16/h2-14,25H,1H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4N2O4/c11-7-5-3-4(10(13)14)1-2-6(5)9-8(7)12/h1-3H,(H,9,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O3S/c1-13-8-7-5(10(11)12)3-2-4-6(7)14-9-8/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10N2O4/c1-5(9)12-4-6(10)3-8(2)7-11/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O6S2/c1-13(7,8)11-5-3-4-6-12-14(2,9)10/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22O2/c1-3-4-5-6-7-8-9-10-11-12-13-17-14-15(2)16/h4-13,15-16H,3,14H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19N3O2/c1-20(2)12-11-19-18(23)21-15-9-5-3-7-13(15)17(22)14-8-4-6-10-16(14)21/h3-10H,11-12H2,1-2H3,(H,19,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3N3O6/c10-7(11)4-1-5(8(12)13)3-6(2-4)9(14)15/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5BrO/c3-1-2-4/h4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O4S/c1-18-10-4-2-3-9(6-10)13-12(15)8-5-11(14(16)17)19-7-8/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N4O4/c7-8-5-2-1-4(9(11)12)3-6(5)10(13)14/h1-3,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2Cl2O/c4-3(5)1-2-6/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O3/c1-8-5-10-7-9-3-2-4-11(16)13(9)15(18)14(10)12(17)6-8/h2-7,16-18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c1-14-12-8-4-2-6-10(12)11-7-3-5-9-13(11)14/h2-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26O6/c1-8-18(9-22-15(19)12(2)3,10-23-16(20)13(4)5)11-24-17(21)14(6)7/h2,4,6,8-11H2,1,3,5,7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10N2O3/c1-5(9)3-8(7-11)4-6(2)10/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9N/c1-2-6-11-10(5-1)9-14-13-8-4-3-7-12(11)13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O2/c1-5(2)4(6-3)7-5/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Cl2/c1-3(5)2-4/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CCl3NO2/c2-1(3,4)5(6)7">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10N2O2/c1-8-13-9-4-2-3-5-10(9)18-16(13)14-11(19)6-7-12(20)15(14)17-8/h2-7,18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O/c16-10-15-13-7-3-1-5-11(13)9-12-6-2-4-8-14(12)15/h1-9,16H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H25NO4/c1-11(2)9-14-15(19(14,3)4)18(23)24-10-20-16(21)12-7-5-6-8-13(12)17(20)22/h9,14-15H,5-8,10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7Br/c1-3(2)4/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O3S/c1-2-9-3-5-11(6-4-9)14-13(16)10-7-12(15(17)18)19-8-10/h3-8H,2H2,1H3,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H28N2/c1-4-5-6-10-23-14-16-12-20-18(11-15(2)13-22(20)3)17-8-7-9-19(23)21(16)17/h7-9,11,14,18,20H,4-6,10,12-13H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O/c1-2-4-9(5-3-1)6-7-10-8-11-10/h1-5,10H,6-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15N5/c1-6-5-15-10-9(16-6)7(2)8(3)12-11(10)17-13(14)18(12)4/h5H,1-4H3,(H2,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3O2/c13-9-3-1-8(2-4-9)11-6-5-10(14)7-12(11)15(16)17/h1-7H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O5/c1-4-8-5(2)13-7(11)9(8,14-8)6(10)12-3/h5H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O2/c7-4-1-2-5(8)6(3-4)9(10)11/h1-3H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO4/c9-5-1-2-6-3-4-7(12-6)8(10)11/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3/c13-8-5-6-11-12(7-8)15-10-4-2-1-3-9(10)14-11/h1-7H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c1-5-6(8(10)11)3-2-4-7(5)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H29NO7/c1-6-17(19(27)30-5)13-15(3)12-14(2)8-7-9-16(4)18(26)23-20(31-23)22(29,10-11-25)24-21(23)28/h6-9,12-13,20,25,29H,10-11H2,1-5H3,(H,24,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O5/c15-9-5-8-10(14(19)13(9)18)12(17)7-4-2-1-3-6(7)11(8)16/h1-5,15,18-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16N2O4/c1-2-3-4-9-13-11(15)7-5-10-6-8-12(18-10)14(16)17/h5-8H,2-4,9H2,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO/c1-3-4(2)5-6/h6H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(17(11)18)19-20(16)21-19/h1-10,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H5N3O6/c14-11(15)8-2-1-6-4-9(12(16)17)10(13(18)19)5-7(6)3-8/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O4/c1-8-3-9-5-10-6-11(20-2)7-13(18)15(10)16(19)14(9)12(17)4-8/h3-7,17-19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO2/c11-10(12)9-5-4-7-2-1-3-8(7)6-9/h1-2,4-6H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-12-15-7-3-4-8-16(15)18-11-10-14-6-2-5-9-17(14)19(13)18/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CBrCl3/c2-1(3,4)5">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O3/c19-17-13-7-3-9-2-6-12-14(18(20)21)8-4-10-1-5-11(13)15(9)16(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO2/c12-10(9-7-13-9)11-6-8-4-2-1-3-5-8/h1-5,9H,6-7H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20N2O/c1-18(2)15-9-5-13(6-10-15)17(20)14-7-11-16(12-8-14)19(3)4/h5-12H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15N3O5/c1-5(2)8(10-6(3)13)9(16)12(11-17)4-7(14)15/h5,8H,4H2,1-3H3,(H,10,13)(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9N/c1-3-10-7-8-11-4-2-6-13-15(11)14(10)12(5-1)9-16-13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1(5-3-7-5)2-6-4-8-6/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3ClO/c3-1-2-4/h2H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N3/c1-12-11-14(18(2)3)9-10-15(12)17-16-13-7-5-4-6-8-13/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O2S/c1-6-2-4-7(5-3-6)12(10,11)9-8/h2-5,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO/c1-18-9-8-14-16(18)7-5-12-3-2-11-4-6-13(19)10-15(11)17(12)14/h2-7,10,19H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-4-8-9(14-5-7(2)15-8)10-11(6)17(3)12(13)16-10/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO4/c1-16-11-6-9-10(7-12(11)17-2)15-14-8(4-5-19-14)13(9)18-3/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2/c1-3-7-11-8(4-1)14-16(18-14)10-6-2-5-9(12(10)11)15-13(7)17-15/h1-6,13-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O2/c1-4-2(5)6-3/h3H2,1H3,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4N4O2/c3-1(7)5-6-2(4)8/h(H2,3,7)(H2,4,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-6-15-12-19-17-10-4-8-13-7-3-9-16(20(13)17)18(19)11-14(15)5-1/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20Cl2N4O/c1-25-16-6-5-14-18(24-16)17(22-9-2-8-21-10-7-19)13-4-3-12(20)11-15(13)23-14/h3-6,11,21H,2,7-10H2,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl2NO5/c1-13-6(10)4-2(7)3(8)5(14-4)9(11)12/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14/c1-10-7-8-14-13-6-4-3-5-12(13)11(2)15(14)9-10/h3-9,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N/c1-12-6-5-9-15-13(2)16-11-10-14-7-3-4-8-17(14)19(16)20-18(12)15/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClNO/c7-4-1-2-6(9)5(8)3-4/h1-3,9H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-2-15-18-14-8-6-11-4-3-10-5-7-12(20)9-13(10)16(11)17(14)19-15/h3-9,20H,2H2,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12/c1-10-11-6-2-4-8-13(11)14-9-5-3-7-12(10)14/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O3S/c1-2-9-5-3-4-6-11(9)14-13(16)10-7-12(15(17)18)19-8-10/h3-8H,2H2,1H3,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O4/c1-5-3-6(2)8(10(13)14)4-7(5)9(11)12/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O2/c1-5-2-3-6(8)4-7(5)9(10)11/h2-4H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15NO5/c1-2-3-4-9-17-12(14)8-6-10-5-7-11(18-10)13(15)16/h5-8H,2-4,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H16N2/c1-5(2)8(7)6(3)4/h5-6H,7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO4/c1-17-10-6-5-8-7-12(14(15)16)18-11-4-2-3-9(10)13(8)11/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16Cl3N3O6S/c13-9(14)10(15)25-4-6(11(22)17-3-8(20)21)18-7(19)2-1-5(16)12(23)24/h5-6H,1-4,16H2,(H,17,22)(H,18,19)(H,20,21)(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12/c1-2-6-14-10-18-12-16-8-4-3-7-15(16)11-17(18)9-13(14)5-1/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14NO5P/c1-6(5-7(9)8-2)13-14(10,11-3)12-4/h5H,1-4H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15NO/c1-17-15-4-2-3-13(11-15)6-5-12-7-9-14(16)10-8-12/h2-11H,16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3O4/c7-4-1-5(8(10)11)3-6(2-4)9(12)13/h1-3H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10BrNO/c1-7(10)9(12)11-8-5-3-2-4-6-8/h2-7H,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2Br2O2/c3-1(4)2(5)6/h1H,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22N4O3/c1-22(2)12-6-11-20-18-13-7-4-5-8-14(13)21-19-16(26-3)10-9-15(17(18)19)23(24)25/h4-5,7-10H,6,11-12H2,1-3H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11N3O2/c1-4-8(6-10)5(9)7(2)3/h4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2O3/c1-3(2,4-6)5(7)8/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O4/c1-3-5(8)6(9)4(7)2-10-3/h3,5,8H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11O4P/c14-18(16-12-7-2-1-3-8-12)15-10-11-6-4-5-9-13(11)17-18/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O4/c1-4-6-5(2)13-9(11)7(6)8(10)12-3/h5H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H13NO2/c1-9-5-3-4-7(6-9)8(10)11-2/h4H,3,5-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N3O5/c1-4(5(7)8)2-3-11-6(9)10/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-16-11-19-17-6-2-1-4-14(17)10-15-9-8-13-5-3-7-18(16)20(13)21(15)19/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10Cl2N2/c13-11-5-7(15)1-3-9(11)10-4-2-8(16)6-12(10)14/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2OS/c6-4-5-1-2-7-3-5/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-8-5-4-7-3-2-6-13-9(7)10(8)14-11(15)12/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2BrClO2/c3-1(4)2(5)6/h1H,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4/c1-9-5-3-4-6-13(9)17-18-14-7-10(2)11(15)8-12(14)16/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c14-11-6-5-10-7-9-3-1-2-4-12(9)13(10)8-11/h1-6,8H,7,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-12-6-7-14-11-15-9-8-13-4-2-3-5-16(13)18(15)19-17(14)10-12/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O3/c1-12-7(10)6-3-2-4-9(5-6)8-11/h3H,2,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO3/c8-6-3-1-2-5(4-6)7(9)10/h1-4,8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15O4PS2/c1-4-13(8)6-5-12-11(7,9-2)10-3/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c1-2-5-12-9-16-13(8-11(12)4-1)10-17-18-14(16)6-3-7-15(18)19-20(17)21-19/h1-10,19-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClFO/c8-7(10)5-3-1-2-4-6(5)9/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O/c1-7-5-11(15)8(2)13-10-6-9(17)3-4-12(10)16-14(7)13/h3-6,16-17H,15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16/c1-2-16-18-10-6-4-8-15(18)13-20-17-9-5-3-7-14(17)11-12-19(16)20/h3-13H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H4Cl2O4/c11-7-8(12)10(16)6-4(14)2-1-3(13)5(6)9(7)15/h1-2,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N4O/c1-12(21)20(3)16-10-8-15(9-11-16)19-18-14-6-4-13(17-2)5-7-14/h4-11,17H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-6-7-11-10-5-3-2-4-9(8)10/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5ClN2O2/c7-5-3-4(9(10)11)1-2-6(5)8/h1-3H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4N2O4/c11-7-5-2-1-4(10(13)14)3-6(5)8(12)9-7/h1-3H,(H,9,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HCl3O/c3-2(4,5)1-6/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H19N3O5/c1-8-11(17-3-4-17)14(20)10(9(22-2)7-23-15(16)21)12(13(8)19)18-5-6-18/h7,19-20H,3-6H2,1-2H3,(H2,16,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N3O2/c1-4-2-6(9)7(10(11)12)3-5(4)8/h2-3H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2/c11-10(12)6-2-1-5-4-8-9-7(5)3-6/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H21N3O/c1-11(5-3-7-16)18-14-10-13(19-2)9-12-6-4-8-17-15(12)14/h4,6,8-11,18H,3,5,7,16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-2-10-8-5-3-7(9)4-6-8/h3-6H,2,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO/c22-14-7-8-16-13(11-14)6-10-18-20(16)19-15-4-2-1-3-12(15)5-9-17(19)21-18/h1-11,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2N4O2/c5-8-2-1-6-4(10)7-3(2)9/h1H,(H,7,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O4/c1(3-11-5-9-7-13-9)2-4-12-6-10-8-14-10/h9-10H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3/c1-7-6-13-10-5-4-9(12-3)8(2)11(10)14-7/h4-6,12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O4/c1-7-5-9-13(11(17)6-7)15(19)12-8(14(9)18)3-2-4-10(12)16/h2-6,16-17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-4-7(9)5-8(6)10-2/h3-5H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14N2/c1-5-4-6(2)9(11)7(3)8(5)10/h4H,10-11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2O2/c12-10-8-5-6-11(13)9-4-2-1-3-7(8)9/h1-6,10,12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8Cl3O4P/c1-10-12(9,11-2)3(8)4(5,6)7/h3,8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H12N2O/c5-1-2-6-3-4-7/h6-7H,1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-2-4-18-14(3-1)5-7-16-11-17-8-6-15-9-10-22-13-21(15)20(17)12-19(16)18/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12ClNO/c1-10(18)17(16)13-6-7-15-12(9-13)8-11-4-2-3-5-14(11)15/h2-7,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO2/c18-17(19)14-8-12-6-4-10-2-1-3-11-5-7-13(9-14)16(12)15(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3/c1-7-6-13-11-8(2)9(12-3)4-5-10(11)14-7/h4-6,12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-9(17)16-12-5-6-13-11(8-12)7-10-3-2-4-14(18)15(10)13/h2-6,8,18H,7H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10N2O2/c22-21(23)17-10-6-11-5-9-16-19-13(7-8-14(17)18(11)19)12-3-1-2-4-15(12)20-16/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11NO/c8-7-6-4-2-1-3-5-6/h8H,1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N4O4/c14-9-10-4-1-5-12(9)11-6-7-2-3-8(17-7)13(15)16/h2-3,6H,1,4-5H2,(H,10,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H24O3/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-20-16-17(19)15-18/h3-14,17-19H,2,15-16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4BrCl/c1-3(4)2-5/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13ClN6O2/c1-6-12-4-7(8(11)14-6)5-13-9(17)16(15-18)3-2-10/h4H,2-3,5H2,1H3,(H,13,17)(H2,11,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4FN/c6-5-3-1-2-4-7-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15NO2/c22-20(14-6-2-1-3-7-14)21(23)17-10-11-19-16(13-17)12-15-8-4-5-9-18(15)19/h1-11,13,23H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4O2/c6-4-5-2-1-3-7-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6N4O2/c15-14(16)7-5-8-10(11-6-7)13-4-2-1-3-9(13)12-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-4-2-7-17-18-11-10-15-6-3-5-14-8-9-16(12-19(13)17)21(18)20(14)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15ClN4O4S/c1-11(2)17(15,16)6-4-9-7(13)12(10-14)5-3-8/h3-6H2,1-2H3,(H,9,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H13N3O4S/c1-3-16(14,15)5-4-10-7(2)9-6-8(10)11(12)13/h6H,3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O4/c12-9(15)11(10(13)16)8(17-11)7(14)6-4-2-1-3-5-6/h1-5,8H,(H2,12,15)(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO3/c1-15-8-3-4-11-10(7-8)12(16-2)9-5-6-17-13(9)14-11/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2/c1-9-7-11(3-5-13(9)15)12-4-6-14(16)10(2)8-12/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N3/c1-3-5-7-6-4-2/h3-4H2,1-2H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-9-5-1-3-7-11(9)14(18)8-4-2-6-10(16)12(8)13(7)17/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13NO3/c1-3-14-10-6-4-9(5-7-10)11(13)8(2)12/h4-7,13H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H17N5O7/c1-36-21-10-9-17(29(34)35)13-20(21)26-27-22-18-8-3-2-5-14(18)11-19(23(22)30)24(31)25-15-6-4-7-16(12-15)28(32)33/h2-13,30H,1H3,(H,25,31)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO3/c4-2-1-3(5)6/h1,4H,2H2,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4BrNO2/c5-6-3(7)1-2-4(6)8/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N4O3/c10-5(7-11)1-4-2-9(8-12)3-6-4/h2-3,11H,1H2,(H,7,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N3O2/c4-6-5-1-3(8)2-7/h3,7-8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO/c1-6-2-4-7(5-3-6)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2O/c13-9-1-5-11(6-2-9)15-12-7-3-10(14)4-8-12/h1-8H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16ClNO/c1-3-9-6-5-7-10(4-2)12(9)14-11(15)8-13/h5-7H,3-4,8H2,1-2H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3NS/c1-2-5-3-4-1/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6ClNO2/c1-3(2,4)5(6)7/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N3/c1-12-5-4-6-14(11-12)17-16-13-7-9-15(10-8-13)18(2)3/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10Br2N2/c13-9-5-7(1-3-11(9)15)8-2-4-12(16)10(14)6-8/h1-6H,15-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2OS/c1-11-8-5-3-2-4-6(9)7(5)12-10-8/h2-4H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12FN3O/c1-7-10(12(14)16(2)15-7)11(17)8-5-3-4-6-9(8)13/h3-6H,14H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-7(2)5-8(4-6)9-10/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O3/c1-18-13-7-3-11(4-8-13)15-16(17)12-5-9-14(19-2)10-6-12/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6N2O4/c13-11(14)9-5-1-3-7-8(9)4-2-6-10(7)12(15)16/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-2-4-9(5-3-1)6-11-7-10-8-12-10/h1-5,10H,6-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22O4/c1-19(2,3)15-9-11(21)7-13(17(15)23)14-8-12(22)10-16(18(14)24)20(4,5)6/h7-10H,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24O2/c1-2-3-4-5-6-7-8-9-10-14-17-22-18-20(21)19-15-12-11-13-16-19/h3-17,20-21H,2,18H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO2/c1-7-5-3-4-6-9(7)10(12)8(2)11/h3-6,12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O4S/c1-18-10-5-3-2-4-9(10)13-12(15)8-6-11(14(16)17)19-7-8/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O4S/c1-8-2-4-10(5-3-8)15(11,12)14-7-9-6-13-9/h2-5,9H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O5/c1-14-7-3-2-5(8(10)11)4-6(7)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O3/c1-6-7-13-8-9-14(21-13)11-20-17(19)16-15(10-12(2)3)18(16,4)5/h1,8-10,15-16H,7,11H2,2-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl3O3/c6-2-1(3(7)8)4(9)11-5(2)10/h3-4,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20ClN3/c19-10-13-20-11-5-12-21-18-14-6-1-3-8-16(14)22-17-9-4-2-7-15(17)18/h1-4,6-9,20H,5,10-13H2,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10/c1-3-10-7-8-11-4-2-6-13-9-12(5-1)14(10)15(11)13/h1-8H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O2/c4-1-3-2-5-3/h1,3H,2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12Cl2N2/c14-10-6-8(1-3-12(10)16)5-9-2-4-13(17)11(15)7-9/h1-4,6-7H,5,16-17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5Cl2NS/c8-4-2-1-3-5(9)6(4)7(10)11/h1-3H,(H2,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H18O2/c1-13(2,3)10-4-6-11(7-5-10)14-8-12-9-15-12/h4-7,12H,8-9H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO4/c1-17-9-3-4-10-8(6-9)2-5-12-11(10)7-13(18-12)14(15)16/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2/c1-3(5)2-4/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H27NO9/c1-10-21(29)15(27)7-17(35-10)36-16-9-26(34,11(2)28)8-14-18(16)25(33)20-19(24(14)32)22(30)12-5-3-4-6-13(12)23(20)31/h3-6,9-10,15,17,21,29-34H,7-8,27H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O/c1-2-3-4-6-5-7-6/h2,6H,1,3-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13Br/c20-12-18-16-7-3-2-6-14(16)11-15-10-9-13-5-1-4-8-17(13)19(15)18/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO2/c22-21(23)18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1,3,5-11H,2,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7ClO/c13-8-5-6-10-9-3-1-2-4-11(9)14-12(10)7-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2/c1-2-4-10(5-3-1)8-12-7-6-11-9-12/h1-7,9H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14O4S/c20-24(21,22)23-12-15-11-14-6-2-3-7-16(14)18-10-9-13-5-1-4-8-17(13)19(15)18/h1-11H,12H2,(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H13N3O3/c1-11-6-8-14(15(10-11)20(22)23)18-19-17-13-5-3-2-4-12(13)7-9-16(17)21/h2-10,21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O2/c13-9-6-11-8(5-12(9)15(16)17)7-3-1-2-4-10(7)14-11/h1-6,14H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15Cl2NO3/c13-5-7-15(8-6-14)10-1-3-11(4-2-10)18-9-12(16)17/h1-4H,5-9H2,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N8O/c9-7-6-8(12-3-11-7)16(4-13-6)2-5(17)1-14-15-10/h3-5,17H,1-2H2,(H2,9,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H17N5/c1-6-7(2)13-12(18-14(15)19(13)5)11-10(6)16-8(3)9(4)17-11/h1-5H3,(H2,15,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-12-14-7-4-5-9-17(14)19-18-15(12)11-10-13-6-2-3-8-16(13)18/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11FO2/c16-12-8-6-10(7-9-12)13(17)15-14(18-15)11-4-2-1-3-5-11/h1-9,14-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O2/c9-6-5-7-3-1-2-4-8(7)10(11)12/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O5/c1-5(2)6-9(3)10(15-9,7(11)13-4)8(12)14-6/h5-6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO2/c16-15(17)14-6-5-12-7-10-3-1-2-4-11(10)8-13(12)9-14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13Cl/c20-12-19-16-8-4-2-6-14(16)11-18-15-7-3-1-5-13(15)9-10-17(18)19/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5Br3/c4-1-3(6)2-5/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO3/c9-2-1-5-3-7(11)8(12)4-6(5)10/h3-4,10-12H,1-2,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3O/c16-15-12-8-6-11(7-9-12)14-13-10-4-2-1-3-5-10/h1-9,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H5N3O7/c17-13-9-3-6(14(18)19)1-2-8(9)12-10(13)4-7(15(20)21)5-11(12)16(22)23/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO7/c1-5(11)15-9(16-6(2)12)7-3-4-8(17-7)10(13)14/h3-4,9H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O/c1-9-8-6-4-2-3-5-7-8/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9N3/c12-10-6-5-8-7-3-1-2-4-9(7)13-11(8)14-10/h1-6H,(H3,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10BrNO/c10-6-9(12)11-7-8-4-2-1-3-5-8/h1-5H,6-7H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO5/c1-11-6(8)4-2-3-5(12-4)7(9)10/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16/c1-13-6-7-15-12-20-17-5-3-2-4-14(17)8-9-18(20)19-11-10-16(13)21(15)19/h2-9,12H,10-11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO5/c1-6(9(11)14-2)5-7-3-4-8(15-7)10(12)13/h3-5H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N3/c13-10-6-8-12(9-7-10)15-14-11-4-2-1-3-5-11/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N3/c1-7-10(13-4)5-6-11-12(7)15-9(3)8(2)14-11/h5-6,13H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl3O/c8-4-2-1-3-5(9)6(4)7(10)11/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO2/c11-9(8-6-12-8)10-7-4-2-1-3-5-7/h1-5,8H,6H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N4O3/c17-11(14-8-10-4-2-1-3-5-10)9-15-7-6-13-12(15)16(18)19/h1-7H,8-9H2,(H,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-2-6-12-11(5-1)9-10-15-16(12)13-7-3-4-8-14(13)17-18(15)19-17/h1-10,17-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6OS2/c1-5-6-2-13-4-8(6)10-9(11-10)7(5)3-12-1/h1-4,9-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH3Br/c1-2/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13F3O3/c19-18(20,21)13-7-12-8(3-5-14(12)22)9-1-2-11-10(16(9)13)4-6-15(23)17(11)24/h1-2,4,6-7,15,17,23-24H,3,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO/c1-16-12-6-4-10-2-3-11-5-7-13(17)9-15(11)14(10)8-12/h2-9,16-17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22O2/c1-13(2)5-10-4-11(7-16)15(9-17)8-14(15,3)12(10)6-13/h4,9-10,12,16H,5-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5ClO2/c6-2-4-1-5(7)8-3-4/h1H,2-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H20O5P2S2/c1-5-9-14(16,10-6-2)13-15(17,11-7-3)12-8-4/h5-8H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H16N2/c1-3-7-13-11(5-1)15-9-18-16(10-17(15)21-19(13)23-21)12-6-2-4-8-14(12)20-22(18)24-20/h1-10,19-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-17-8-4-3-7-15(17)12-16-11-10-14-6-2-5-9-18(14)19(13)16/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O4/c14-10(11(15)16)5-7-6-13(12-17)9-4-2-1-3-8(7)9/h1-4,6,10,14H,5H2,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9N3O3/c1-5-7-4-6(9(11)12)8(5)2-3-10/h4,10H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8Cl6O/c13-8-9(14)3-1-4-5(2(3)7-6(1)19-7)11(9,16)12(17,18)10(4,8)15/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4BrNO2/c7-5-2-1-3-6(4-5)8(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H6N2O5/c16-13-11-5-7(14(17)18)1-3-9(11)10-4-2-8(15(19)20)6-12(10)13/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO3/c1-21-13-9-10-7-8-19-16-14(10)15(18(13)22-2)11-5-3-4-6-12(11)17(16)20/h3-9H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18N2O2/c1-2-3-6-10(9-12)7-4-5-8-11/h11H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6O4S/c1-5-7(3,4)6-2/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O3/c5-1-3(6)4-2-7-4/h3-6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9Cl/c17-14-9-7-12-5-4-10-2-1-3-11-6-8-13(14)16(12)15(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O/c1-2-7-14-11(4-1)5-3-6-12(14)8-9-13-10-15-13/h1-7,13H,8-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H4Cl3NO4/c13-5-1-9-10(2-6(5)14)20-12-4-8(16(17)18)7(15)3-11(12)19-9/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20Cl2O3/c1-21(2)17(12-18(22)23)19(21)20(24)25-13-14-7-6-10-16(11-14)26-15-8-4-3-5-9-15/h3-12,17,19H,13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N2O3S/c14-11(12-9-4-2-1-3-5-9)8-6-10(13(15)16)17-7-8/h1-7H,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-17-7-3-5-13-9-10-15-14-6-2-1-4-12(14)8-11-16(15)18(13)17/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2/c1-3-12(4-2)10-7-5-9(11)6-8-10/h5-8H,3-4,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-5-14-8-4-9-11(7(2)10(8)15-6)17(3)12(13)16-9/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO3/c10-6-5-7-3-1-2-4-8(7)9(11)12/h1-4,10H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O/c1-11-10-16-14(8-9-17(16)19)15-7-6-12-4-2-3-5-13(12)18(11)15/h2-7,10H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-14-7-10-16-13(11-14)6-9-17-15-4-2-1-3-12(15)5-8-18(16)17/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12/c1-11-6-7-14-9-12-4-2-3-5-13(12)10-15(14)8-11/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H20ClNO2/c1-4-11-7-6-8-12(5-2)14(11)16(10-18-3)13(17)9-15/h6-8H,4-5,9-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13N/c1-3-7-15-13(5-1)9-11-17-19(15)20-16-8-4-2-6-14(16)10-12-18(20)21-17/h1-12,21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O/c1-3-4(2)5/h3H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N4O8/c17-13(18)7-1-3-9(11(5-7)15(21)22)10-4-2-8(14(19)20)6-12(10)16(23)24/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO2/c1-19-7-6-12-9-15-18(21-10-20-15)17-13-5-3-2-4-11(13)8-14(19)16(12)17/h2-5,9,14H,6-8,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-16-7-2-3-8-18(16)19-12-10-15-6-4-5-14-9-11-17(13)21(19)20(14)15/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O4/c1-4(7)9-3-5(8)2-6/h5-6,8H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H46O3/c1-17(2)7-6-8-18(3)21-9-10-22-25-23(12-14-27(21,22)5)26(4)13-11-20(28)15-19(26)16-24(25)30-29/h16-18,20-25,28-29H,6-15H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2O/c1-2(6)3(4)5/h3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10N2O4/c23-21(24)16-10-8-15-19-13(5-2-6-14(16)19)12-4-1-3-11-7-9-17(22(25)26)20(15)18(11)12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12/c1-3-13-7-9-15-11-12-16-10-8-14-4-2-6-18-17(5-1)19(13)21(15)22(16)20(14)18/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7NO4/c15-13-10-4-2-1-3-9(10)11-7-8(14(16)17)5-6-12(11)18-13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO2/c1-11(16)15-12-7-9-14(10-8-12)17-13-5-3-2-4-6-13/h2-10H,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H30O8/c1-9-6-20(28-17-15(25)14(24)13(23)11(8-21)27-17)7-10(2)19(4-5-19)18(3,26)16(20)12(9)22/h7,9,11,13-17,21,23-26H,4-6,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O2/c1-2-6-12(7-3-1)14-8-4-5-9-15(14)17-11-13-10-16-13/h1-9,13H,10-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14BrNO3S/c1-6(11)10-7(8(12)13-2)5-14-4-3-9/h7H,3-5H2,1-2H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H17N/c1-11-6-7-12-10-17-14-4-2-3-5-15(14)20-21(22-20)19(17)16-9-8-13(11)18(12)16/h2-7,10,20-22H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O3S/c1-4(2)7-8(3,5)6/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N/c1-8-4-6-9(7-5-8)10(2)3/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO2/c1-15-14(16)17-13-9-7-12(8-10-13)11-5-3-2-4-6-11/h2-10H,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H18/c1-3-9-17-15(7-1)13-22-19-11-5-6-12-20(19)23-18-10-4-2-8-16(18)14-21(17)24(22)23/h1,3,5-7,9,11-14H,2,4,8,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-14-7-3-6-12-11-5-2-1-4-10(11)8-9-13(12)14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11Br4O4P/c7-1-5(9)3-13-15(11,12)14-4-6(10)2-8/h5-6H,1-4H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO3/c14-13(15)10-6-8-12(9-7-10)16-11-4-2-1-3-5-11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2O2/c1-8-3-4-9(2)14-13(8)11-7-10(16(17)18)5-6-12(11)15-14/h3-7,15H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12ClN/c1-8-2-4-9(5-3-8)11-7-6-10/h2-5,11H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO/c12-11-10-6-5-8-3-1-2-4-9(8)7-10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-9-3-2-7-4-5-13-6-8(7)10(9)14-11(15)12/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12/c1-2-7-15-12-18-16(11-14(15)6-1)10-9-13-5-3-4-8-17(13)18/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H15Cl2N2O2P/c8-2-5-11(6-3-9)14(12)10-4-1-7-13-14/h12H,1-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO3/c15-13-11-4-2-1-3-9(11)10-6-5-8(14(16)17)7-12(10)13/h1-7,13,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO2S/c1-2-10-7(4-11-14-10)3-8(1)12-5-9-6-13-9/h1-4,9H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6N4O3S/c16-13-10-9(12-11-14(10)5-6-19-11)7-1-3-8(4-2-7)15(17)18/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10/c1-3-11-7-9-13-5-2-6-14-10-8-12(4-1)15(11)16(13)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO3/c1-11(19)18(21-12(2)20)15-7-8-17-14(10-15)9-13-5-3-4-6-16(13)17/h3-8,10H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c7-5-2-1-4(8(10)11)3-6(5)9/h1-3,9H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O5/c1-18-8-3-4-12-10(5-8)15(17)14-11(16)6-9(19-2)7-13(14)20-12/h3-7,16H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O3/c11-7-4-5-9(13)10-6(7)2-1-3-8(10)12/h1-5,12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O4/c1-7-6-10(16)11-12(13(7)17)15(19)9-5-3-2-4-8(9)14(11)18/h2-6,18-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6ClNO/c1-5(2)3(4)6/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N3O/c1-17-13-9-11(7-8-12(13)14)16-15-10-5-3-2-4-6-10/h2-9H,14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16O4/c1-10(2)5-15(17)19-8-12-7-18-9-14-11(6-16)3-4-13(12)14/h3-4,6-7,9-10H,5,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16O2/c1-14(22)23-13-20-18-8-4-3-7-16(18)12-17-11-10-15-6-2-5-9-19(15)21(17)20/h2-12H,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c1-12-7-4-5(9(10)11)2-3-6(7)8/h2-4H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c1-3-7-11-9(5-1)10-6-2-4-8-12(10)14-13(11)15-14/h1-8,13-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12NO3PS2/c1-6-5(7)4-12-10(11,8-2)9-3/h4H2,1-3H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-6-4-2-3-5-7(6)8-9/h2-5,8-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO/c22-14-8-5-13-7-10-18-20(16(13)11-14)19-15-4-2-1-3-12(15)6-9-17(19)21-18/h1-11,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O2/c1-3-6(10)8-5-9-7(11)4-2/h3-4H,1-2,5H2,(H,8,10)(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO3/c1-2-12-8-5-3-7(4-6-8)9(10)11/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H25NO3/c1-20(2,3)21(12-15-7-5-4-6-8-15)13-19(24)16-9-10-18(23)17(11-16)14-22/h4-11,22-23H,12-14H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7NO4/c15-13-11-4-2-1-3-9(11)10-6-5-8(14(16)17)7-12(10)18-13/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7ClN2O3S/c12-8-3-1-2-4-9(8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6FN3O2/c7-3-1-5(9)6(10(11)12)2-4(3)8/h1-2H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O7/c16-7-4-10(19)12-11(5-7)22-15(14(21)13(12)20)6-1-2-8(17)9(18)3-6/h1-5,15-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16ClN3/c1-19(2)15-8-6-13(7-9-15)17-18-14-5-3-4-12(10-14)11-16/h3-10H,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7Br2Cl/c1-3(5)4(6)2-7/h3-4H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N5/c1-6-5-7-9(15-11(12)16(7)2)10-8(6)13-3-4-14-10/h3-5H,1-2H3,(H2,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14/c1-2-6-15-12(4-1)8-10-14-11-9-13-5-3-7-16(13)17(14)15/h1-2,4,6,8-11H,3,5,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22N2O/c1-19-9-12(11-21-3)7-15-14-5-4-6-16-18(14)13(8-17(15)19)10-20(16)2/h4-7,10,12,17H,8-9,11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7N3O6/c16-13(17)9-6-10(14(18)19)12(11(7-9)15(20)21)8-4-2-1-3-5-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9N/c1-3-7-12-10(5-1)9-11-6-2-4-8-13(11)14-12/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17FN4O3/c1-2-19-8-10(15(22)23)12(21)9-7-11(16)14(18-13(9)19)20-5-3-17-4-6-20/h7-8,17H,2-6H2,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12ClNO3S/c1-5(10)9-6(7(11)12)4-13-3-2-8/h6H,2-4H2,1H3,(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6Cl2/c8-7(9)6-4-2-1-3-5-6/h1-5,7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10ClNO2/c15-13-3-1-2-12(10-13)5-4-11-6-8-14(9-7-11)16(17)18/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6N4O8/c17-13(18)8-2-3-9(11(6-8)15(21)22)7-1-4-10(14(19)20)12(5-7)16(23)24/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18N2O/c1-3-5-7-10(9-11)8-6-4-2/h3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O4/c1-9-7(11)4-2-6-3-5-8(14-6)10(12)13/h2-5H,1H3,(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H19N3O3S/c1-27-20-13-14(24-28(2,25)26)11-12-19(20)23-21-15-7-3-5-9-17(15)22-18-10-6-4-8-16(18)21/h3-13,24H,1-2H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N3O/c1-13-7-11-9(10(13)12-14)8-5-3-2-4-6-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10N2O2/c22-21(23)17-10-6-11-5-7-13-12-3-1-2-4-15(12)20-16-9-8-14(17)18(11)19(13)16/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H7N/c14-8-11-7-10-5-1-3-9-4-2-6-12(11)13(9)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N3/c14-8-5-6-12-10(7-8)13(15)9-3-1-2-4-11(9)16-12/h1-7H,14H2,(H2,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO/c8-7-6-4-2-1-3-5-6/h1-5,7-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-8-3-4-9-7(6-8)2-1-5-11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H14/c1-2-8-18-16(6-1)14-17-13-12-15-7-5-11-20-19-9-3-4-10-21(19)24(18)23(17)22(15)20/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO5/c1-3-8(2)16-11(13)7-5-9-4-6-10(17-9)12(14)15/h4-8H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-14-8-4-10-1-5-11-13(17(19)20)7-3-9-2-6-12(14)16(10)15(9)11/h1-8,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8Cl2S/c10-6-9(11)12-7-8-4-2-1-3-5-8/h1-6H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2S4/c1-3-7-11-9(5-1)15-13(17-11)19-20-14-16-10-6-2-4-8-12(10)18-14/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H15N/c1-2-6-15-13(5-1)9-10-14-11-19-16-7-3-4-8-17(16)21-22(23-21)20(19)12-18(14)15/h1-12,21-23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O/c1-8(14)13-10-6-2-4-9-5-3-7-12-11(9)10/h2-7H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N5O/c1-10-2-8-4-5(7)11(12)3-9-6(4)10/h12H,2,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5ClO/c1-2-4(5)3-6/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8ClN7O/c7-2-4(9)13-3(8)1(12-2)5(15)14-6(10)11/h(H4,8,9,13)(H4,10,11,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N5/c1-6-5-13-7-3-4-8-10(9(7)14-6)15-11(12)16(8)2/h3-5H,1-2H3,(H2,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13NO4/c1-16-8-6-10-12(11(7-8)17-2)15-14-9(4-5-19-14)13(10)18-3/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O4/c1-4(7)10-3-5(2)6(8)9/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3Cl2NO2/c1-2(3,4)5(6)7/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2S4/c1-7(2)5(9)11-12-6(10)8(3)4/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N/c17-14-8-12-6-4-10-2-1-3-11-5-7-13(9-14)16(12)15(10)11/h1-9H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NS/c13-10-6-8-12(9-7-10)14-11-4-2-1-3-5-11/h1-9H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O3/c1-9-11-5-3-2-4-10(11)8-14-12(9)6-7-13-15(14)18-19(22-18)17(21)16(13)20/h2-8,16-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6Cl2N4O4S/c9-5(10)6(15)12-1-2-13(8(12)16)7-11-3-4(19-7)14(17)18/h3,5H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2OS/c1-11-8-6-4-5(9)2-3-7(6)12-10-8/h2-4H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10N2O4/c23-21(24)17-10-6-11-5-7-16-19-13(8-9-15(17)18(11)19)12-3-1-2-4-14(12)20(16)22(25)26/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H29N5O4/c1-25(2)11-5-10-23-21-16-6-3-4-7-17(16)24-22-19(26(12-14-28)13-15-29)9-8-18(20(21)22)27(30)31/h3-4,6-9,28-29H,5,10-15H2,1-2H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O3S/c1-8-2-4-10(5-3-8)13-12(15)9-6-11(14(16)17)18-7-9/h2-7H,1H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl3O/c4-2(1-7)3(5)6/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO3/c1-15-10-5-3-4-8-11(10)14-13-9(6-7-17-13)12(8)16-2/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O8/c1-23-10-7-11-13(8-4-5-26-20(8)27-11)18-15(10)16(22)14-9(21)6-12(24-2)17(25-3)19(14)28-18/h4-8,20-21H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9ClN2O2/c13-9-1-3-10(4-2-9)14-11-5-7-12(8-6-11)15(16)17/h1-8,14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2/c14-12-5-1-10(2-6-12)9-11-3-7-13(15)8-4-11/h1-8H,9,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19N5O10S/c17-9(16(26)27)2-4-13(22)19-10(15(25)18-6-14(23)24)7-32-12-3-1-8(20(28)29)5-11(12)21(30)31/h1,3,5,9-10H,2,4,6-7,17H2,(H,18,25)(H,19,22)(H,23,24)(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6Cl5NO2S/c8-3(5(10)11)4(9)6(12)16-1-2(13)7(14)15/h2H,1,13H2,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H11N5O2/c1-8-6-5(11(2)4-9-6)7(13)12(3)10-14/h4,8H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-3-5-13-7-8-14-6-4-12(2)10-16(14)15(13)9-11/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H20N6O3S/c1-13-5-4-6-17-21(13)25-19-11-14(26-28-23)7-9-16(19)22(17)24-18-10-8-15(12-20(18)31-2)27-32(3,29)30/h4-12,27H,1-3H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24ClN3/c1-2-24(15-12-21)14-7-13-22-20-16-8-3-5-10-18(16)23-19-11-6-4-9-17(19)20/h3-6,8-11H,2,7,12-15H2,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H15N5O/c1-6(14)5-13(2)8-4-3-7(10-9)11-12-8/h3-4,6,14H,5,9H2,1-2H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-7-15-11-16-9-8-14-4-2-3-5-18(14)19(16)12-17(15)10-13/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c1-5(2)3-7-4(5)6/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2O3/c1-5(9)3-8(7-11)4-6(2)10/h5-6,9-10H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7ClO/c1-3(4)2-5/h3,5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N4/c1-9-3-5-11(7-13(9)15)17-18-12-6-4-10(2)14(16)8-12/h3-8H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2Cl4O/c4-2(5)1(8)3(6)7/h2-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8O4/c1-14-12-10-8(4-5-15-10)6-7-2-3-9(13)16-11(7)12/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O2/c1-11-8-17-14(6-7-18(20)19(17)21)16-10-13-5-3-2-4-12(13)9-15(11)16/h2-10,18-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2/c11-9-5-6-10(12)8-4-2-1-3-7(8)9/h1-6H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO/c22-21-18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N4O/c1-8-7-11-10(5-4-6-15-11)12-13(8)18(3)14(17-12)16-9(2)19/h4-7H,1-3H3,(H,16,17,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N2/c1-2-7-12-10(5-1)9-4-3-6-11-8-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO3/c1-11(19)18-14-9-7-13(8-10-14)16-17(21-16)15(20)12-5-3-2-4-6-12/h2-10,16-17H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H15Br/c1-13-15-7-4-5-9-18(15)19(12-21)20-16(13)11-10-14-6-2-3-8-17(14)20/h2-11H,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5N3O2/c7-2-4-1-5-3(8)6-2/h1H2,(H3,4,5,6,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N2O3/c1-5(12)11-7-4-2-3-6(10)8(7)9(13)14/h2-4H,10H2,1H3,(H,11,12)(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O/c1-2-4-8(5-3-1)6-9-7-10-9/h1-5,9H,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O5/c15-12-10(13(16)17)6-9(7-11(12)14(18)19)8-4-2-1-3-5-8/h1-7,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N2/c1-16-12-8-4-2-6-10(12)14(15)11-7-3-5-9-13(11)16/h2-9,15H,1H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO3/c1-2-12-8-6-4-3-5-7(8)9(10)11/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H21N/c1-2-3-8-13-20-18-16-11-6-4-9-14(16)15-10-5-7-12-17(15)19(18)20/h4-7,9-12,18-19H,2-3,8,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-12-6-9-17-15(10-12)11-14-8-7-13-4-2-3-5-16(13)18(14)19-17/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-7-8-12(2)16-14(11)10-9-13-5-3-4-6-15(13)16/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H14/c1-3-7-19-15(5-1)13-17-9-10-18-14-16-6-2-4-8-20(16)22-12-11-21(19)23(17)24(18)22/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O/c1-2-4-6-5(3-1)7-6/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO5/c1-13-8(10)5-3-6-2-4-7(14-6)9(11)12/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N3O/c17-9-5-6-13-14(7-9)20-15-8-12(18)10-3-1-2-4-11(10)16(15)19-13/h1-8,17H,18H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3O4/c7-6-4(8(10)11)2-1-3-5(6)9(12)13/h1-3H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O6/c1-19-8-6-11(21-3)14-12(7-8)22-16-10(20-2)5-4-9(17)13(16)15(14)18/h4-7,17H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8O/c14-12-8-7-10-4-1-3-9-5-2-6-11(12)13(9)10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19N3/c1-5-10-11(6-2)17-14-9(3)12(15-4)7-8-13(14)16-10/h7-8,15H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2/c11-10(12)5-1-2-6-7(3-5)9-4-8-6/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-9(2)7-4-3-5-8(10)6-7/h3-6,10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N3/c8-10-9-6-7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4N2O3/c8-6-3-1-5(2-4-6)7(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N/c1-12-11-17-13(2)15-8-5-6-10-18(15)20-19(17)16-9-4-3-7-14(12)16/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H18N6O3S/c1-30-20-12-14(26-31(2,28)29)8-10-18(20)24-21-15-5-3-4-6-17(15)23-19-11-13(25-27-22)7-9-16(19)21/h3-12,26H,1-2H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2O2/c3-1-2-4/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N2/c1-7-4-9(3)14-12-6-11(13)8(2)5-10(7)12/h4-6H,13H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H17NO5/c1-22-19-13(5-4-11-8-16-17(9-14(11)19)27-10-26-16)12-6-7-15(24-2)20(25-3)18(12)21(22)23/h4-9H,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O3/c1-12(2)5-11-13(3)8-14(13,9-17)10(6-16)4-15(11,18)7-12/h4,6,9,11,18H,5,7-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H23NO6/c1-3-12-8-11(2)18(23,10-20)17(22)24-9-13-4-6-19-7-5-14(15(13)19)25-16(12)21/h3-4,14-15,20,23H,2,5-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-6(11)10-8-4-2-7(9)3-5-8/h2-5H,9H2,1H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl4N/c7-5-3-1-2-4(11-5)6(8,9)10/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O3S/c1-3-12-13(10,11)9-6-4-8(2)5-7-9/h4-7H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)18-11-10-16-14-7-2-5-12-4-1-6-13(19(12)14)15-8-3-9-17(18)20(15)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4O3/c1-8(16)13-12-6-9-7-14(17)10-4-2-3-5-11(10)15(9)18/h2-7H,1H3,(H,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26ClN3/c1-4-22(5-2)12-6-7-14(3)21-17-10-11-20-18-13-15(19)8-9-16(17)18/h8-11,13-14H,4-7,12H2,1-3H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO2/c15-14(16)11-5-6-13-10(8-11)7-9-3-1-2-4-12(9)13/h1-6,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10S/c1-2-6-13-12(4-1)10-16-18-14(13)9-8-11-5-3-7-15(19-16)17(11)18/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO4/c21-18-15(25-11-6-2-1-3-7-11)10-14(22)16-17(18)20(24)13-9-5-4-8-12(13)19(16)23/h1-10,22H,21H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H17NO2/c24-23(25)18-9-10-20-15(11-18)7-8-17-12-21-16(13-22(17)20)6-5-14-3-1-2-4-19(14)21/h1-4,9-13H,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O2/c11-9-5-6-10(12)8-4-2-1-3-7(8)9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N4/c11-7-5-8-10(12-6-7)14-4-2-1-3-9(14)13-8/h1-6H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7FN2O3S/c12-8-1-3-9(4-2-8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c7-4-1-2-6(9)5(3-4)8(10)11/h1-3,9H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12/c1-11-5-6-14-8-7-12-3-2-4-13-9-10-15(11)17(14)16(12)13/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-6-2-4-7(8-9)5-3-6/h2-5,8-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11N/c15-14-6-5-12-7-10-3-1-2-4-11(10)8-13(12)9-14/h1-9H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2/c21-17-10-16-13-9-8-11-4-1-2-5-12(11)18(13)14-6-3-7-15(19(14)16)20(17)22/h1-10,17,20-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4HCl2NO2/c5-1-2(6)4(9)7-3(1)8/h(H,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H21N3O3/c13-4-1-10-7-11(2-5-14)9-12(8-10)3-6-15/h13-15H,1-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4S/c1-14-7-3-2-5(8(10)11)4-6(7)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H15N3/c20-13-9-11-14(12-10-13)21-19-15-5-1-3-7-17(15)22-18-8-4-2-6-16(18)19/h1-12H,20H2,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO2/c22-21(23)20-16-7-2-1-6-14(16)15-10-8-12-4-3-5-13-9-11-17(20)19(15)18(12)13/h1-8,10H,9,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N4O3S/c19-8-7-15-13-9-3-1-2-4-10(9)16-14(17-13)11-5-6-12(22-11)18(20)21/h1-6,19H,7-8H2,(H,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6Cl2/c5-3-1-2-4-6/h1-2H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-11-8-12-4-3-7-15-13-5-1-2-6-14(13)16(9-11)17(12)15/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N5O/c1-11-3-9-4-5(10-12)7-2-8-6(4)11/h2-3,12H,1H3,(H,7,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6O2/c9-6-8(10)7-4-2-1-3-5-7/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)11-3-5-13-9(7-11)1-2-10-8-12(16(19)20)4-6-14(10)13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H17NO2/c16-9-7-15(8-10-17)14-6-5-12-3-1-2-4-13(12)11-14/h1-6,11,16-17H,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2O/c1-2/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c1-10(2)8-5-3-7(9)4-6-8/h3-6H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-9-3-2-7-6-13-5-4-8(7)10(9)14-11(15)12/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-16-11-15-10-14-4-1-2-6-17(14)19-9-8-13-5-3-7-18(16)20(13)21(15)19/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O2/c1-10-2-4-11(5-3-10)14-12-6-8-13(9-7-12)15(16)17/h2-9,14H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H24O3/c1-3-4-5-6-7-8-15(18)11-9-14-10-12-16(19)17(13-14)20-2/h7-8,10,12-13,19H,3-6,9,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O/c1-15(11-16-15)14-9-7-13(8-10-14)12-5-3-2-4-6-12/h2-10H,11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14NO3PS/c1-7-6-8(4-5-9(7)10)13-14(15,11-2)12-3/h4-6H,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N2O4/c1-2-10-8(12)5-3-7-4-6-9(15-7)11(13)14/h3-6H,2H2,1H3,(H,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2/c21-17-10-9-14-15(20(17)22)8-7-13-12-5-1-3-11-4-2-6-16(18(11)12)19(13)14/h1-10,17,20-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H29NO3/c1-14(2)8-6-4-5-7-9-18(21)19-13-15-10-11-16(20)17(12-15)22-3/h10-12,14,20H,4-9,13H2,1-3H3,(H,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16O2/c19-18(14-13-17-10-5-2-6-11-17)20-15-7-12-16-8-3-1-4-9-16/h1-14H,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4/c1-15-9-5-4-8-7(3-2-6-13-8)10(9)14-11(15)12/h2-6H,1H3,(H2,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6ClN3OS/c12-8-3-1-7(2-4-8)9-10(14-16)15-5-6-17-11(15)13-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-11-10-5-3-2-4-8(10)6-9-7-12-9/h2-5,9H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H11NO2/c22-21(23)20-16-7-2-1-6-14(16)15-10-8-12-4-3-5-13-9-11-17(20)19(15)18(12)13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H17NO3/c1-15(24)23(26-22(25)16-7-3-2-4-8-16)19-11-12-21-18(14-19)13-17-9-5-6-10-20(17)21/h2-12,14H,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO3/c1-6(10)7-3-2-4-8(5-7)9(11)12/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-3-4-9-7(6-8)2-1-5-11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-14-8-13(17(19)20)11-6-4-9-2-1-3-10-5-7-12(14)16(11)15(9)10/h1-8,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15N/c1-3-7-16-14(5-1)9-11-20-18(16)13-19-17-8-4-2-6-15(17)10-12-21(19)22-20/h1-3,5-7,9-13H,4,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO2/c15-10-14(16)13-8-6-12(7-9-13)11-4-2-1-3-5-11/h1-10,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12N2O3/c1-8-13-9-5-3-4-6-10(9)19-15(13)14-11(20)7-12(22-2)17(21)16(14)18-8/h3-7,19H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H16N4O/c27-21-15-10-16-6-4-5-9-20(16)22(21)26-25-19-13-11-18(12-14-19)24-23-17-7-2-1-3-8-17/h1-15,27H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4O/c1-15-8-4-3-7-6(2-5-9(16)13-7)10(8)14-11(15)12/h2-5H,1H3,(H2,12,14)(H,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2O/c4-1-3(6)2-5/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11Cl2N2O2P/c5-1-3-8(4-2-6)11(7,9)10/h1-4H2,(H3,7,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N3O2/c1-10-5-6-3-2-4-7(11(12)13)8(6)9-10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-5-6-11-9-4-2-1-3-7(8)9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H8O/c16-15-11-5-1-3-9-7-8-10-4-2-6-12(15)14(10)13(9)11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4Cl2O2/c6-1-3-2-9-5(8)4(3)7/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10/c1-3-7-13-11(5-1)9-10-12-6-2-4-8-14(12)13/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO/c1-6-4-2-3-5-7(6)8-9/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13NO/c22-18-7-3-6-15-14(18)9-11-17-20(15)19-13-5-2-1-4-12(13)8-10-16(19)21-17/h1-11,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c1-3(5)4(2)6/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-6-3-4-8(9-10)5-7(6)2/h3-5,9-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7BrN2O3S/c12-8-1-3-9(4-2-8)13-11(15)7-5-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H9NO3/c20-19(21)16-9-14-13-7-6-11-3-1-2-10-4-5-12(8-15(14)22-16)18(13)17(10)11/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10Cl2N2O/c1-13(2)9(14)12-6-3-4-7(10)8(11)5-6/h3-5H,1-2H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N/c1-9-7-8-10(2)14-13(9)11-5-3-4-6-12(11)15-14/h3-8,15H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO4/c14-13(15)8-5-6-11-12(7-8)17-10-4-2-1-3-9(10)16-11/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N4O4/c7-6(11)9-8-3-4-1-2-5(14-4)10(12)13/h1-3H,(H3,7,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15N5/c1-6-5-9-11(17-13(14)18(9)4)12-10(6)15-7(2)8(3)16-12/h5H,1-4H3,(H2,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5NS/c1-2-3-5-4-6/h2H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CN4O8/c6-2(7)1(3(8)9,4(10)11)5(12)13">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-2-6(5-8-6)4-7-3-1/h1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7ClO/c13-8-5-6-12-10(7-8)9-3-1-2-4-11(9)14-12/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O/c21-18-10-7-12-5-8-16-15-4-2-1-3-13(15)11-14-6-9-17(18)19(12)20(14)16/h1-11,21H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N3O4/c1-4-6(8)2-5(9(11)12)3-7(4)10(13)14/h2-3H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O/c15-14(12-9-5-2-6-10-12)13-11-7-3-1-4-8-11/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO/c8-7(9)6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O5/c1-18-8-5-10(16)13-12(6-8)19-11-3-2-7(15)4-9(11)14(13)17/h2-6,15-16H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H4Cl2O2/c11-7-8(12)10(14)6-4-2-1-3-5(6)9(7)13/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H9NO3/c18-14-8-10-3-1-2-9-4-5-11-13(17(19)20)7-6-12(14)16(11)15(9)10/h1-8,18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO3/c1-15-8-3-4-9-11(7-8)14-13-10(5-6-17-13)12(9)16-2/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NS/c1-2-5-3-4-1/h4H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13N/c1-2-4-18-14(3-1)5-7-16-12-20-17(11-19(16)18)8-6-15-9-10-22-13-21(15)20/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c1-8-6-9-4-2-3-5-10(9)11-7-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4BrNO2/c7-5-3-1-2-4-6(5)8(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO5/c1-11(2,3)17-10(13)7-5-8-4-6-9(16-8)12(14)15/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7N7O2S/c1-15-4-14-7(16(17)18)9(15)19-8-5-6(11-2-10-5)12-3-13-8/h2-4H,1H3,(H,10,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10N2O2/c17-13-7-3-9-1-2-10-4-8-14(18(19)20)12-6-5-11(13)15(9)16(10)12/h1-8H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N/c11-10-7-3-5-8-4-1-2-6-9(8)10/h1-7H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Br/c22-12-19-16-7-2-1-6-15(16)17-10-8-13-4-3-5-14-9-11-18(19)21(17)20(13)14/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5NO3/c4-3(5)7-2-1-6-2/h2H,1H2,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2O2/c1-2-5(3-6)4-7/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11N5O/c1-6-5-12-7-3-4-8-10(9(7)13-6)14-11(15-17)16(8)2/h3-5,17H,1-2H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10Cl2O2/c14-10-1-3-12(16)8(6-10)5-9-7-11(15)2-4-13(9)17/h1-4,6-7,16-17H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11N3O2/c1-2-3-4-8(7-10)5(6)9/h2-4H2,1H3,(H2,6,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14N2O4/c1-11(2,3)12-9(14)6-4-8-5-7-10(17-8)13(15)16/h4-7H,1-3H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8N2O4/c16-14(17)10-4-5-11-9(7-10)6-8-2-1-3-12(13(8)11)15(18)19/h1-5,7H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N4O4/c1-19-11(16)13-12-6-8-7-14(17)9-4-2-3-5-10(9)15(8)18/h2-7H,1H3,(H,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2/c13-11-5-1-9(2-6-11)10-3-7-12(14)8-4-10/h1-8H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8N2O/c1-3-5(2)4-6/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O4/c17-15(18)11-3-5-13-9(7-11)1-2-10-8-12(16(19)20)4-6-14(10)13/h3-8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO2/c1-2-11-8-5-3-7(9-10)4-6-8/h3-6,9-10H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N6O/c4-8-6-1-3(10)2-7-9-5/h3,10H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5F2N/c7-4-1-2-6(9)5(8)3-4/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H17N/c1-13-11-19-21(17-9-5-3-7-15(13)17)22-18-10-6-4-8-16(18)14(2)12-20(22)23-19/h3-12,23H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O2/c15-14(16)8-5-6-12-10(7-8)9-3-1-2-4-11(9)13-12/h1-7,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2O4/c1-5(10)2-8(7-12)3-6(11)4-9/h5-6,9-11H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-5-2-3-6(8)4-7(5)9/h2-4,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10N2O4/c23-21(24)17-10-6-11-5-7-13-12-3-1-2-4-14(12)20(22(25)26)16-9-8-15(17)18(11)19(13)16/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10ClN3/c1-12(2)11-10-8-5-3-7(9)4-6-8/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H13N/c21-18-10-7-12-5-6-14-11-13-3-1-2-4-15(13)16-8-9-17(18)19(12)20(14)16/h1-11H,21H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N2O3/c1-19(2)11-10-18-17(20)12-6-5-9-15-16(12)22-14-8-4-3-7-13(14)21-15/h3-9H,10-11H2,1-2H3,(H,18,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H25NO2/c1-2-18-23(19-12-6-3-7-13-19,20-14-8-4-9-15-20)26-22(25)24-21-16-10-5-11-17-21/h3-4,6-9,12-15,21H,5,10-11,16-17H2,1H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H13NO/c1-18-9-8-13-5-4-12-3-2-11-6-7-14(19)10-15(11)16(12)17(13)18/h2-10,19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10Cl2/c16-9-14-10-5-1-3-7-12(10)15(17)13-8-4-2-6-11(13)14/h1-8H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c9-7(8-10)6-4-2-1-3-5-6/h1-5,10H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5N3O2/c1-6-3-2-5-4(6)7(8)9/h2-3H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14/c1-13-6-7-15-12-19-16(11-17(15)10-13)9-8-14-4-2-3-5-18(14)19/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13NO2/c1-10(20)19-15-9-16(21)14-8-6-12-4-2-3-11-5-7-13(15)18(14)17(11)12/h2-9,21H,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7N/c1-2-6-9-8(4-1)5-3-7-10-9/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO2S/c8-7(9)5-1-3-6(10)4-2-5/h1-4,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16/c1-13-16-8-5-6-9-17(16)14(2)20-18(13)12-11-15-7-3-4-10-19(15)20/h3-12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18FN3O3/c1-2-19-9-11(16(22)23)15(21)10-7-12(17)14(8-13(10)19)20-5-3-18-4-6-20/h7-9,18H,2-6H2,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-12-9-8-11-4-3-7-15-13-5-1-2-6-14(13)17(12)16(11)15/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N4O3S/c11-5-7-1-2-9(5)6-8-3-4(14-6)10(12)13/h3H,1-2H2,(H,7,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N4/c1-7-3-4-10-14(13(7)16)18-12-6-9(15)8(2)5-11(12)17-10/h3-6H,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-4-8-10(16-12(13)17(8)3)11-9(6)14-5-7(2)15-11/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2/c11-9-5-1-3-7-8(9)4-2-6-10(7)12/h1-6H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15N5/c1-10-8-13-15(21-17(18)22(13)2)16-14(10)19-9-12(20-16)11-6-4-3-5-7-11/h3-9H,1-2H3,(H2,18,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N/c1-15-13-8-4-2-6-11(13)10-12-7-3-5-9-14(12)15/h2-10H,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O4/c9-6-2-1-5(3-7(6)10)4-8(11)12/h1-3,9-10H,4H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11N3/c1-6-3-4-8-7(5-6)11-9(10)12(8)2/h3-5H,1-2H3,(H2,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7Cl2O4P/c1-8-11(7,9-2)10-3-4(5)6/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19NO2/c1-19-8-7-12-10-15(20)18(21-2)17-13-6-4-3-5-11(13)9-14(19)16(12)17/h3-6,10,14,20H,7-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Br2O/c4-1-3(5)2-6/h3,6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H10N2O4/c19-17(20)13-5-9-1-2-10-6-14(18(21)22)8-12-4-3-11(7-13)15(9)16(10)12/h1-2,5-8H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6O2/c13-11-8-5-1-3-7-4-2-6-9(10(7)8)12(11)14/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-14-7-6-13-5-4-11-2-1-3-12-8-9-15(14)17(13)16(11)12/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3NO4/c7-3-4-1-2-5(10-4)6(8)9/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N3/c1-7-12-11(8(2)15-13(7)14)9-5-3-4-6-10(9)16-12/h3-6,16H,1-2H3,(H2,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8O2/c17-13-7-3-9-1-2-10-4-8-14(18)12-6-5-11(13)15(9)16(10)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15N3/c1-11-13(17-2)8-9-14-16(11)19-15(10-18-14)12-6-4-3-5-7-12/h3-10,17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O/c1-10(17)16-14-8-4-12(5-9-14)11-2-6-13(15)7-3-11/h2-9H,15H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c1-2-6-3-4-7-9(11-7)8(6)10-5-1/h1-5,7,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O/c1-3-5(2)4-6/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11N3/c1-6-7(2)13-10-5-8(11)3-4-9(10)12-6/h3-5H,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14N4O7S/c23-21(24)14-7-9-15(17(11-14)22(25)26)20-13-6-8-16(18(10-13)30(27,28)29)19-12-4-2-1-3-5-12/h1-11,19-20H,(H,27,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N3O/c1-18(2)15-9-7-14(8-10-15)17-16-13-5-3-12(11-19)4-6-13/h3-11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H17N3O4/c1-12-10-3-2-9(8-11(10)14(17)18)13(4-6-15)5-7-16/h2-3,8,12,15-16H,4-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10O/c20-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(19)18(14)17(11)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22N4O4/c1-23(2)12-6-11-21-18-13-7-4-5-8-15(13)22-19-14(20(25)28-3)9-10-16(17(18)19)24(26)27/h4-5,7-10H,6,11-12H2,1-3H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl3O2/c6-3-2(4(7)8)1-10-5(3)9/h4H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N3O2/c1-4-5(2)8(10)7(11(12)13)3-6(4)9/h3H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H28N2/c1-14-10-18-17-8-5-9-19-21(17)15(11-20(18)22(2)12-14)13-23(19)16-6-3-4-7-16/h5,8-9,13-14,16,18,20H,3-4,6-7,10-12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O4/c1-5-4-6(8(10)11)2-3-7(5)9(12)13/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-10-18-17-15(19(10)2)8-6-12-4-3-11-5-7-13(20)9-14(11)16(12)17/h3-9,20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO5/c12-10(16-6-9-5-15-9)7-1-3-8(4-2-7)11(13)14/h1-4,9H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c14-13(15)12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-3-2-4-6(8)7(5)9/h2-4H,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-8-14(18(21)22)12-7-5-10-3-1-2-9-4-6-11(13)16(12)15(9)10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H17N3/c1-21-14-10-12-15(13-11-14)22-20-16-6-2-4-8-18(16)23-19-9-5-3-7-17(19)20/h2-13,21H,1H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO/c1-5(8)6-3-2-4-7-6/h2-4,7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H13NO2/c24-23(25)18-9-10-20-15(11-18)7-8-17-12-21-16(13-22(17)20)6-5-14-3-1-2-4-19(14)21/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H7FN2O3S/c12-8-2-1-3-9(5-8)13-11(15)7-4-10(14(16)17)18-6-7/h1-6H,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H7NO3/c14-13(15)8-5-6-10-9-3-1-2-4-11(9)16-12(10)7-8/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11BrO/c15-10-14(16)13-8-6-12(7-9-13)11-4-2-1-3-5-11/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H3NO2/c6-3-1-2-4(7)5-3/h1-2H,(H,5,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N3O2/c1-10-3-8-15(20)14(9-10)18-17-13-6-4-12(5-7-13)16-11(2)19/h3-9,20H,1-2H3,(H,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N3O/c1-18(2)14-9-7-13(8-10-14)16-17-15-6-4-3-5-12(15)11-19/h3-10,19H,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N4O4/c13-9-3-1-7(5-11(9)15(17)18)8-2-4-10(14)12(6-8)16(19)20/h1-6H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c8-6-2-1-5(4-10)7(3-6)9(11)12/h1-3,10H,4,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8N2O4/c19-17(20)13-7-5-11-9-3-1-2-4-10(9)12-6-8-14(18(21)22)16(13)15(11)12/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16N2/c1-4-10-16(11-5-1)19-20(17-12-6-2-7-13-17)23-21(22-19)18-14-8-3-9-15-18/h1-15H,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O/c1-2(5)4-3/h3H2,1H3,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9NO/c1-3(5)2-4/h3,5H,2,4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O2/c1-11-8-12-4-2-3-5-14(12)17-9-13-6-7-18(20)19(21)16(13)10-15(11)17/h2-10,18-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8N4/c11-8-5-4-7-10(13-8)14-6-2-1-3-9(14)12-7/h1-6H,(H2,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c8-7-3-6(9(11)12)2-1-5(7)4-10/h1-3,10H,4,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H10O2/c21-19-15-7-3-5-11-8-9-14-13-6-2-1-4-12(13)10-16(20(19)22)18(14)17(11)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O2/c19-13-4-8-15(9-5-13)21-17-2-1-3-18(12-17)22-16-10-6-14(20)7-11-16/h1-12H,19-20H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12/c1-3-13-7-9-18-12-16-6-2-4-14-8-10-17-11-15(5-1)19(13)21(18)22(17)20(14)16/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H11Cl/c18-10-12-6-3-8-14-13-7-1-4-11-5-2-9-15(16(11)13)17(12)14/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N3O2/c1-4-6-3-5(7(4)2)8(9)10/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O/c1-22(2)11-10-20-18(23)14-8-5-7-13-16(19)12-6-3-4-9-15(12)21-17(13)14/h3-9H,10-11H2,1-2H3,(H2,19,21)(H,20,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O4/c1-6(11)9(12)7-2-4-8(5-3-7)10(13)14/h2-5,12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H17N/c1-3-7-16-14(5-1)9-11-20-18(16)13-19-17-8-4-2-6-15(17)10-12-21(19)22-20/h1,3,5,7,9-13H,2,4,6,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O2/c12-11(13)8-3-4-9-7(6-8)2-1-5-10-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1(3-7-5-9-7)2-4-8-6-10-8/h7-8H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H6O3/c11-8-5-9(12)10(13)7-4-2-1-3-6(7)8/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5/c1-6-4-8-10(16-12(13)17(8)3)11-9(6)15-7(2)5-14-11/h4-5H,1-3H3,(H2,13,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6N2O3/c12-10-6-5-9(11(13)14)7-3-1-2-4-8(7)10/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2/c21-18-9-8-14-16(20(18)22)7-6-13-15-5-4-11-2-1-3-12(19(11)15)10-17(13)14/h1-10,18,20-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N3O2/c7-4-1-2-6(9(10)11)5(8)3-4/h1-3H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11N5O2/c22-11-7-5-10(6-8-11)9-17-21-16(23)15-14(19-20-21)12-3-1-2-4-13(12)18-15/h1-9,18,22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2O2/c1-4(7)3-6(2)5-8/h4,7H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-7-5-4-6-8(2)9(7)3/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N4/c1-7-2-9-4-8(1)5-10(3-7)6-9/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N3O2/c1-9-14-10-4-2-3-5-11(10)20-16(14)15-13(22)8-12(21-6-7-21)18(23)17(15)19-9/h2-5,8,20H,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H20N2O/c1-21(2)11-10-20-19(22)17-9-5-8-16-12-14-6-3-4-7-15(14)13-18(16)17/h3-9,12-13H,10-11H2,1-2H3,(H,20,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14/c1-13-11-16-7-4-6-14-9-10-18-17-8-3-2-5-15(17)12-19(13)21(18)20(14)16/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO4/c17-13(10-6-8-12(9-7-10)16(18)19)15-14(20-15)11-4-2-1-3-5-11/h1-9,14-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H5N3O4S/c12-4-9-8-10-5(3-16-8)6-1-2-7(15-6)11(13)14/h1-4H,(H,9,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O/c15-14-9-10-5-1-2-6-11(10)12-7-3-4-8-13(12)14/h1-9,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2Br2/c3-1-2-4/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H26O7/c1-4-5-6-7-14(23)27-15-18(2,3)9-13-20-11-19(20,16(24)28-17(20)25)12(10-22)8-21(13,15)26/h6-8,10,13,15-16,24,26H,4-5,9,11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H5Cl2NO4/c13-7-4-11-12(5-8(7)14)19-10-3-6(15(16)17)1-2-9(10)18-11/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H26N6O2/c11-5-3-8-13-7-1-2-9-15(10-4-6-12)16(18)14-17/h13,18H,1-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16O/c1-11-13-7-3-4-8-14(13)12(2)18-17(11)15-9-5-6-10-16(15)19-20(18)21-19/h3-10,19-20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6N4O4S/c16-14(17)8-3-1-7(2-4-8)9-10(15(18)19)13-5-6-20-11(13)12-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10BrN3/c1-12(2)11-10-8-5-3-7(9)4-6-8/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO2/c15-14(16)11-6-5-10-7-9-3-1-2-4-12(9)13(10)8-11/h1-6,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N3O4/c6-5(7-9)3-1-2-4(12-3)8(10)11/h1-2,9H,(H2,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9N/c1-2-5-11-10(4-1)7-8-13-12(11)6-3-9-14-13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2O2/c15-14(16)11-7-3-5-9-8-4-1-2-6-10(8)13-12(9)11/h1-7,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-8-5-1-3-7-4-2-6-11-9(7)8/h1-6H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H19N3/c1-2-24-20-13-16(23)9-11-18(20)17-10-8-15(22)12-19(17)21(24)14-6-4-3-5-7-14/h3-13,23H,2,22H2,1H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O2/c9-7-8(10)6-4-2-1-3-5-6/h1-5,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N3/c1-8-3-10-5-11-4-9(2)13(17)7-15(11)18-14(10)6-12(8)16/h3-7H,16-17H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2O/c7-4-1-2-6(9)5(8)3-4/h1-3,9H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2/c14-13-9-5-1-3-7-11(9)15-12-8-4-2-6-10(12)13/h1,3,5,7H,2,4,6,8H2,(H2,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C31H42N3/c1-7-32(8-2)28-19-13-25(14-20-28)31(26-15-21-29(22-16-26)33(9-3)10-4)27-17-23-30(24-18-27)34(11-5)12-6/h13-24H,7-12H2,1-6H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21N3/c1-19(2)15-9-5-13(6-10-15)17(18)14-7-11-16(12-8-14)20(3)4/h5-12,18H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O7S2/c1-10-3-6-15(11(2)7-10)19-20-17-14-5-4-13(28(22,23)24)8-12(14)9-16(18(17)21)29(25,26)27/h3-9,21H,1-2H3,(H,22,23,24)(H,25,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16ClN4/c10-2-1-3-14-7-11-4-12(8-14)6-13(5-11)9-14/h1-2H,3-9H2/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H28Cl3N3O/c1-16(4-3-11-29(12-9-24)13-10-25)27-23-19-7-5-17(26)14-22(19)28-21-8-6-18(30-2)15-20(21)23/h5-8,14-16H,3-4,9-13H2,1-2H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18N4/c1-12-8-17-19(10-15(12)21)24(14-6-4-3-5-7-14)20-11-16(22)13(2)9-18(20)23-17/h3-11H,1-2H3,(H3,21,22)/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12ClN/c1-7(2)5-3-4-6/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17N3/c20-16-7-1-13(2-8-16)19(14-3-9-17(21)10-4-14)15-5-11-18(22)12-6-15/h1-12,20H,21-22H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N3S/c1-18(2)11-5-7-13-15(9-11)20-16-10-12(19(3)4)6-8-14(16)17-13/h5-10H,1-4H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22ClNO/c1-16(15-21-18-10-6-3-7-11-18)20(13-12-19)14-17-8-4-2-5-9-17/h2-11,16H,12-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19N3/c1-13-12-16(6-11-19(13)23)20(14-2-7-17(21)8-3-14)15-4-9-18(22)10-5-15/h2-12,21H,22-23H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19N3/c1-19(2)14-7-5-12-9-13-6-8-15(20(3)4)11-17(13)18-16(12)10-14/h5-11H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H30ClN3O/c1-5-27(6-2)13-7-8-16(3)25-23-19-11-9-17(24)14-22(19)26-21-12-10-18(28-4)15-20(21)23/h9-12,14-16H,5-8,13H2,1-4H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN/c7-5-6-3-1-2-4-8-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN/c7-4-6-2-1-3-8-5-6/h1-3,5H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H30N2O3/c1-5-29(6-2)19-13-15-23-25(17-19)33-26-18-20(30(7-3)8-4)14-16-24(26)27(23)21-11-9-10-12-22(21)28(31)32/h9-18H,5-8H2,1-4H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N3/c1-17-13-7-11(15)4-2-9(13)6-10-3-5-12(16)8-14(10)17/h2-8H,1H3,(H3,15,16)/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16N3S/c1-9-6-13-15(8-11(9)16)19-14-7-10(18(2)3)4-5-12(14)17-13/h4-8H,16H2,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N3O4/c6-3(5(10)11)2-12-4(9)1-8-7/h1,3H,2,6H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3N3O2S/c4-3-5-1-2(9-3)6(7)8/h1H,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H46O2/c1-17(2)7-6-8-18(3)21-9-10-22-20-15-24-27(29-24)16-19(28)11-14-26(27,5)23(20)12-13-25(21,22)4/h17-24,28H,6-16H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11N5O3/c1-2-3-4-9(8-11)5(6)7-10(12)13/h2-4H2,1H3,(H2,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H18Cl2N2O2/c14-5-7-17(8-6-15)11-3-1-10(2-4-11)9-12(16)13(18)19/h1-4,12H,5-9,16H2,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2OS/c1-11-5-2-3-6-7(4-5)12-8(9)10-6/h2-4H,1H3,(H2,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H15N3O7/c1-11(10-18)8(17)9-4(2-12)6(15)7(16)5(14)3-13/h2,4-7,13-16H,3H2,1H3,(H,9,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O4/c1-5-3-15(10(18)12-9(5)17)8-2-6(13-14-11)7(4-16)19-8/h3,6-8,16H,2,4H2,1H3,(H,12,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N4O5/c9-7-10-2-12(8(16)11-7)6-5(15)4(14)3(1-13)17-6/h2-6,13-15H,1H2,(H2,9,11,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11Br/c19-18-7-3-5-13-10-16-14(11-17(13)18)9-8-12-4-1-2-6-15(12)16/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H5N3O4/c12-7-5-2-1-4(11(14)15)3-6(5)8(13)10-9-7/h1-3H,(H,9,12)(H,10,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N5O3/c1-2-7(6-9)3(4)5-8(10)11/h2H2,1H3,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10N6O/c1-12(2)11-10-6-4(5(7)13)8-3-9-6/h3H,1-2H3,(H2,7,13)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3N3O2/c7-2-1-4-6-3(8)5-2/h1H,(H2,5,6,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12Br2O4/c7-1-3(9)5(11)6(12)4(10)2-8/h3-6,9-12H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18N4O5/c1-5-9(16)12(21)8-6(4-24-14(17)22)15(23-2)13-7(18-13)3-19(15)10(8)11(5)20/h4,7,13,18,20-21H,3,16H2,1-2H3,(H2,17,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N4O4S/c15-1-4-6(16)7(17)10(18-4)14-3-13-5-8(14)11-2-12-9(5)19/h2-4,6-7,10,15-17H,1H2,(H,11,12,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO4/c10-6(9(13)14)3-5-1-2-7(11)8(12)4-5/h1-2,4,6,11-12H,3,10H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O/c8-7(9-10)6-4-2-1-3-5-6/h1-5,10H,(H2,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9NO3S/c1-3(7)6-4(2-10)5(8)9/h4,10H,2H2,1H3,(H,6,7)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13NO/c1-9-8-11(14)4-7-13(9)10-2-5-12(15)6-3-10/h2-8,15H,14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3O2S/c8-7-9-5-2-1-4(10(11)12)3-6(5)13-7/h1-3H,(H2,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11F3N2O5/c11-10(12,13)4-2-15(9(19)14-8(4)18)7-1-5(17)6(3-16)20-7/h2,5-7,16-17H,1,3H2,(H,14,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5N5O3/c1-6(5-8)2(3)4-7(9)10/h1H3,(H2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N5O/c6-4-3-5(8-1-7-3)9-2-10(4)11/h1-2H,6H2,(H,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O3/c11-8-7-9(13-3-12-8)15(4-14-7)10-6(17)1-5(2-16)18-10/h3-6,10,16-17H,1-2H2,(H2,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4N2S/c4-3-5-1-2-6-3/h1-2H,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6BrNO2/c8-5-6-1-3-7(4-2-6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3N/c1-2-3-4/h2H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14NO6P/c1-3-15-18(14,16-4-2)17-10-7-5-9(6-8-10)11(12)13/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5Br2Cl/c4-1-3(5)2-6/h3H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4Cl2/c3-1-2-4/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O3/c1-8-10-9(7-13(2,3)12(10)17)11(16)14(4,18)15(8)5-6-15/h7,12,17-18H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O4/c1-8-10-9(6-13(2,7-16)12(10)18)11(17)14(3,19)15(8)4-5-15/h6,12,16,18-19H,4-5,7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9N5O3/c1-2-3-8(9(11)12)4(5)6-7-10/h2-3H2,1H3,(H2,5,6,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13N5O3/c1-2-3-4-5-10(9-12)6(7)8-11(13)14/h2-5H2,1H3,(H2,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O4/c1-14(2,16)12-6-9-5-8-3-4-13(15)18-10(8)7-11(9)17-12/h3-5,7,12,16H,6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3S/c1-11-6-4-2-3-5-7(6)12-8(11)10-9/h2-5H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15N3O5/c11-6(4-14)10(18)13-12-3-5-1-2-7(15)9(17)8(5)16/h1-2,6,12,14-17H,3-4,11H2,(H,13,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H13N/c1-3-7-11(8-4-1)13-14(15-13)12-9-5-2-6-10-12/h1-10,13-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H32O8/c1-12(2)6-18(24)26-9-15-10-27-21(30-19(25)7-13(3)4)20-16(15)8-17(29-14(5)23)22(20)11-28-22/h10,12-13,16-17,20-21H,6-9,11H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N6O2S/c1-11-3(12(13)14)2-8-4(11)5-9-10-6(7)15-5/h2H,1H3,(H2,7,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12/c1-2-8-15-13(6-1)12-14-7-5-11-17-16-9-3-4-10-18(16)20(15)19(14)17/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8N6O2/c12-9-8-11(14-5-13-9)16-10(15-8)6-1-3-7(4-2-6)17(18)19/h1-5H,(H3,12,13,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H18O8/c1-8(22)21(28)6-10-13(11(23)7-21)19(26)16-15(18(10)25)17(24)9-4-3-5-12(29-2)14(9)20(16)27/h3-5,24-28H,6-7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H14O7/c1-22-10-4-3-9(20)14-16(21)15-11(23-2)7-12-13(18(15)26-17(10)14)8-5-6-24-19(8)25-12/h3-8,19-20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9N3O6S/c10-6(9(13)14)4-19-8-2-1-5(11(15)16)3-7(8)12(17)18/h1-3,6H,4,10H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12Cl2NO4P/c8-1-3-10(4-2-9)15(12)13-5-7(11)6-14-15/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N2/c1-15-12-8-4-2-6-10(12)14-11-7-3-5-9-13(11)15/h2-9H,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O8S2/c1-15(9,10)13-3-5(7)6(8)4-14-16(2,11)12/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18N6/c1-7(2,5(9)10)13-14-8(3,4)6(11)12/h1-4H3,(H3,9,10)(H3,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11Cl2NO/c1-8(9,4-2-6)5-3-7/h2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N4/c9-11-8-7-4-2-1-3-6(7)5-10-12-8/h1-5,7,9-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClN3O3S/c8-3-4-9-7(12)10-5-1-2-6(15-5)11(13)14/h1-2H,3-4H2,(H2,9,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O5/c16-1-4-6(17)7(18)10(20-4)15-3-13-5-8(14-19)11-2-12-9(5)15/h2-4,6-7,10,16-19H,1H2,(H,11,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12N4O2/c1-2-17-11(16)15-14-10-9-6-4-3-5-8(9)7-12-13-10/h3-7H,2H2,1H3,(H,13,14)(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24Cl2N4O/c1-3-26(12-9-21)11-4-10-23-19-15-6-5-14(22)13-17(15)24-16-7-8-18(27-2)25-20(16)19/h5-8,13H,3-4,9-12H2,1-2H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H25ClN4/c1-2-28(16-12-24)15-6-14-26-22-18-8-3-4-9-20(18)27-23-19(22)11-10-17-7-5-13-25-21(17)23/h3-5,7-11,13H,2,6,12,14-16H2,1H3,(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H23NO5/c1-4-12-9-11(2)18(3,22)17(21)23-10-13-5-7-19-8-6-14(15(13)19)24-16(12)20/h4-5,14-15,22H,2,6-10H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c9-6-8(11)10-7-4-2-1-3-5-7/h1-5H,6,9H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11N5O3/c1-4(2)3-9(8-11)5(6)7-10(12)13/h4H,3H2,1-2H3,(H2,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N2/c1-10-6-13-12-4-3-5-14-16(12)11(8-17-14)7-15(13)18(2)9-10/h3-6,8,13,15,17H,7,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20N2/c1-10-6-13-12-4-3-5-14-16(12)11(8-17-14)7-15(13)18(2)9-10/h3-5,8,10,13,15,17H,6-7,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N3S/c13-7-1-3-9-11(5-7)16-12-6-8(14)2-4-10(12)15-9/h1-6H,13-14H2/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2/c1-2-16-13-6-4-3-5-11(13)12-9-10(15)7-8-14(12)16/h3-9H,2,15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3/c1-5-2-3-6-7(4-5)11-8(9)10-6/h2-4H,1H3,(H3,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H33N2/c1-5-28(6-2)25-18-14-23(15-19-25)27(22-12-10-9-11-13-22)24-16-20-26(21-17-24)29(7-3)8-4/h9-21H,5-8H2,1-4H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11N3O/c16-10-5-6-11-9(7-10)8-18-14(11)17-13-4-2-1-3-12(13)15(18)19/h1-7H,8,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12O/c1-2-7-13-10(4-1)5-3-6-11(13)8-12-9-14-12/h1-7,12H,8-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H17N3O6S/c11-5(10(18)19)1-2-7(14)13-6(4-20)9(17)12-3-8(15)16/h5-6,20H,1-4,11H2,(H,12,17)(H,13,14)(H,15,16)(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O2/c16-13(11-7-3-1-4-8-11)15-14(17-15)12-9-5-2-6-10-12/h1-10,14-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15NO4/c1-16-10-5-4-8-11(13(10)18-3)15-14-9(6-7-19-14)12(8)17-2/h4-5H,6-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N4/c9-11-8-7-4-2-1-3-6(7)5-10-12-8/h1-5,7H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO2/c5-4(6)1-3-2-7-3/h3H,1-2H2,(H2,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-3-4(2)7-5-6/h4H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">true</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N4O5S/c1-10(5-13-3-2-11-12-13)8(9(16)17)14-6(15)4-7(14)20(10,18)19/h2-3,7-8H,4-5H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H13NO2/c1-4-7(9)10-6-5-8(2)3/h4H,1,5-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4/c7-3-1-4(8)6(10)2-5(3)9/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O5/c1-2-22-19(21)12-23-14-8-9-15-16(20)11-17(24-18(15)10-14)13-6-4-3-5-7-13/h3-11H,2,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H30/c1-2-3-4-5-6-7-8-9-10-12-15-18-16-13-11-14-17-18/h11,13-14,16-17H,2-10,12,15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-4-9-7(8)5-6(2)3/h6H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16O2/c1-4-5-6-7-11-9(10)8(2)3/h2,4-7H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H22O/c1-10-6-5-8-11(2)7-3-4-9-12(10,11)13/h10,13H,3-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O4/c1-7(2)9(11)13-5-6-14-10(12)8(3)4/h1,3,5-6H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO/c8-7-4-2-1-3-6(7)5-9/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl3NO3/c7-2-1-3(8)6(11)5(4(2)9)10(12)13/h1,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19NO/c1-5-16-11-6-7-13-12(8-11)10(2)9-14(3,4)15-13/h6-9,15H,5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-5-9-13-19(7-3)17-27-23(25)21-15-11-12-16-22(21)24(26)28-18-20(8-4)14-10-6-2/h11-12,15-16,19-20H,5-10,13-14,17-18H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22Cl2O3/c1-3-5-6-12(4-2)10-21-16(19)11-20-15-8-7-13(17)9-14(15)18/h7-9,12H,3-6,10-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H35NO3/c1-5-25(6-2)19-13-18-23(3,4)28-22(26)24(27,20-14-9-7-10-15-20)21-16-11-8-12-17-21/h7,9-10,14-15,21,27H,5-6,8,11-12,16-17,19H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-5-7(9)10-6-8(2,3)4/h5H,1,6H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl2F5/c4-1(6)2(7,8)3(5,9)10/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N7/c13-9-7(6-4-2-1-3-5-6)16-8-10(14)18-12(15)19-11(8)17-9/h1-5H,(H6,13,14,15,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O4/c1-13-9(11)7-3-5-8(6-4-7)10(12)14-2/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-8-5-7-3-1-2-4-9(7)11-6-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H20O4/c1-10(2)12(14)16-8-6-5-7-9-17-13(15)11(3)4/h1,3,5-9H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O4/c1-11(7-13-3-5-15(19)17(21)9-13)12(2)8-14-4-6-16(20)18(22)10-14/h3-6,9-12,19-22H,7-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8Cl2O2S/c13-7-1-3-9(15)11(5-7)17-12-6-8(14)2-4-10(12)16/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO2/c1-8-5-3-4-6-10(8)12-11(14)7-9(2)13/h3-6H,7H2,1-2H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-2-4-5-3-1/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N5O/c1-2-21-9-8-12-13(11-6-4-3-5-7-11)19-15(16)20-14(12)17-10-18-20/h3-7,10H,2,8-9H2,1H3,(H2,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7NS/c3-1-2-4/h4H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H37NO3/c1-23(2,3)26-21(27)20-9-8-18-17-7-6-16-14-15(22(28)29)10-12-24(16,4)19(17)11-13-25(18,20)5/h6,14,17-20H,7-13H2,1-5H3,(H,26,27)(H,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O2/c13-11-5-1-9(2-6-11)10-3-7-12(14)8-4-10/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Br/c1-6-2-4-7(8)5-3-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9Cl/c15-14-7-3-6-12-8-10-4-1-2-5-11(10)9-13(12)14/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10O5/c1-15-10-7-3-4-9(14)18-12(7)13(16-2)11-8(10)5-6-17-11/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10/c1-3-7-12-10(5-1)9-11-6-2-4-8-13(11)12/h1-8H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O5/c1-12-6-5-9-14(19)8-4-2-3-7-13-10-15(20)11-16(21)17(13)18(22)23-12/h3,7,10-12,20-21H,2,4-6,8-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9NO4/c6-3(5(9)10)1-2-4(7)8/h3H,1-2,6H2,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18N2O2/c1-7(2)9(13)10-11(4,5)6-8(3)12/h8,12H,1,6H2,2-5H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O3/c1-3-7-5(6)8-4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-16-8-6-13-5-7-15-11-14-3-1-2-4-17(14)19-10-9-18(16)20(13)21(15)19/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H36O6/c1-2-6-18-17(5-1)23-13-9-21-11-15-25-19-7-3-4-8-20(19)26-16-12-22-10-14-24-18/h17-20H,1-16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5NO3/c6-3-1-2-4(7)5(3)8/h8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H18N2/c1-3-9(4-2)7-5-6-8/h3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-6(2)4-5-9-7(3)8/h6H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20N2/c1-9-5-13(6-10(2)15(9)17)14-7-11(3)16(18)12(4)8-14/h5-8H,17-18H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-2-3-4-5-6-7(8)9/h2-6H2,1H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26O/c1-10(2)17-12(4)18(6,7)16-8-11(3)14(13(5)19)9-15(16)17/h8-10,12,17H,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O7/c7-3(8)1-6(13,5(11)12)2-4(9)10/h13H,1-2H2,(H,7,8)(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2I2/c2-1-3/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9BrO2/c1-12-8-4-2-3-7(5-8)9(11)6-10/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15NO/c1-3-7(4-2)5-6-8/h8H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19NO6/c1-11-9-13-7-8-14(17(22)16(13)20(26)27-11)18(23)21-15(19(24)25)10-12-5-3-2-4-6-12/h2-8,11,15,22H,9-10H2,1H3,(H,21,23)(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O/c1-2-3-4-6-5-7-6/h6H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12O2/c1-3-6-5-7-4-2/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O3/c1-5(2)6(8)9-4-3-7/h7H,1,3-4H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O5/c1-20-11-4-2-9(3-5-11)12-8-21-14-7-10(17)6-13(18)15(14)16(12)19/h2-8,17-18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O6/c7-1-2(8)5-3(9)4(10)6(11)12-5/h2,7-11H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c1-7-3-5-8(6-4-7)9(10)11-2/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3/c7-4-1-5(8)3-6(9)2-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4N2O/c2-1(3)4/h(H4,2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9Cl/c1-2-3-4-5/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO2/c8-7(9)6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N4O2/c1-10-3-8-5-4(10)6(12)9-7(13)11(5)2/h3H,1-2H3,(H,9,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N/c1-6-2-4-7-5-3-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11NO2/c13-11(14)6-5-8-7-12-10-4-2-1-3-9(8)10/h1-4,7,12H,5-6H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H27NO4/c1-17(2,3)18-9-12(19)10-22-16-6-4-5-11-7-14(20)15(21)8-13(11)16/h4-6,12,14-15,18-21H,7-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O4/c11-6(10(15)16)4-8(14)5-2-1-3-7(13)9(5)12/h1-3,6,13H,4,11-12H2,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H12N2/c1-4(6)2-3-5/h4H,2-3,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9NO3S/c1-3(10)5(9)6-2-4(7)8/h3,10H,2H2,1H3,(H,6,9)(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c7-5-3-1-2-4-6-8/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26O3/c1-4-6-7-15(5-2)14-21-18(19)13-10-16-8-11-17(20-3)12-9-16/h8-13,15H,4-7,14H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18N2O2/c1-11(2)4-10(14-9-16)5-12(3,6-11)7-13-8-15/h10H,4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2O2/c1-7-12-9(6-11(14-7)13(16)17)8-4-2-3-5-10(8)15-12/h2-5,7,11,14-15H,6H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N2O3PS/c1-3-15-18(19,16-4-2)17-12-9-13-10-7-5-6-8-11(10)14-12/h5-9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H51O4P/c1-7-13-16-22(10-4)19-26-29(25,27-20-23(11-5)17-14-8-2)28-21-24(12-6)18-15-9-3/h22-24H,7-21H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O3S/c1-7(12)11-8-3-5-9(6-4-8)15(13,14)10-2/h3-6,10H,1-2H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3O/c7-4-1-3(10)2-5(8)6(4)9/h1-2,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N2O3/c1-3-20-15-9-5-13(6-10-15)17-18(19)14-7-11-16(12-8-14)21-4-2/h5-12H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14/c1-3-7-15(8-4-1)17-11-13-18(14-12-17)16-9-5-2-6-10-16/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H19NOS/c1-2-3-4-5-6-7-9-12-11(13)8-10-14-12/h8,10H,2-7,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO3/c8-4-1-2-6(9)5(3-4)7(10)11/h1-3,9H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4ClN5/c4-1-7-2(5)9-3(6)8-1/h(H4,5,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H30O2S/c1-13-9-17(23)15(21(3,4)5)11-19(13)25-20-12-16(22(6,7)8)18(24)10-14(20)2/h9-12,23-24H,1-8H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N/c14-13-11-7-3-1-5-9(11)10-6-2-4-8-12(10)13/h1-8,13H,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO2/c1-5-2(3)4/h1H3,(H2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9FN2O3/c9-5-4-11(6-2-1-3-14-6)8(13)10-7(5)12/h4,6H,1-3H2,(H,10,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18N2O5S/c1-16(2)12(15(21)22)18-13(20)11(14(18)24-16)17-10(19)8-23-9-6-4-3-5-7-9/h3-7,11-12,14H,8H2,1-2H3,(H,17,19)(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O/c1-3-8-4-6-9(10-2)7-5-8/h3-7H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O/c1-9(13)11-7-6-10-4-2-3-5-12(10)8-11/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O4/c11-8-5-9(13-2-12-8)15(3-14-5)10-7(18)6(17)4(1-16)19-10/h3-4,6,10,13,16-17H,1-2H2,(H2,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H8O5/c16-7-1-3-9-11(5-7)19-14-10-4-2-8(17)6-12(10)20-15(18)13(9)14/h1-6,16-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H26O3/c1-3-4-5-6-7-8-15(18)11-9-14-10-12-16(19)17(13-14)20-2/h10,12-13,19H,3-9,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22O3/c1-11-8-12(10-16(2,3)9-11)19-15(18)13-6-4-5-7-14(13)17/h4-7,11-12,17H,8-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O4/c11-9(12)7-5-3-1-2-4-6-8-10(13)14/h1-8H2,(H,11,12)(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O2PS2/c1-5-6(4,7-2)8-3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O5/c5-2(4(8)9)1-3(6)7/h2,5H,1H2,(H,6,7)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16O2/c1-7(2)8(10)11-6-9(3,4)5/h1,6H2,2-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H23NO2/c1-4-7-13-8-5-6-9-15(13)18-11-14(17)10-16-12(2)3/h4-6,8-9,12,14,16-17H,1,7,10-11H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H28O7/c1-2-16-5-6-18-9-10-20-13-14-21-12-11-19-8-7-17-4-3-15-1/h1-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N/c1-2-7-3-5-8-6-4-7/h2-6H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H26N4O4S/c1-17(29-23(31)15-21-16-28-18(2)30-24(21)27)22(35-26(33)20-11-7-4-8-12-20)13-14-34-25(32)19-9-5-3-6-10-19/h3-12,16H,13-15H2,1-2H3,(H,29,31)(H2,27,28,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8Cl2O3/c1-13-9(12)5-14-8-3-2-6(10)4-7(8)11/h2-4H,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3ClO/c1-2(3)4/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO3/c1-2-12-8-5-3-4-7(6-8)9(10)11/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6N2/c1-4-5-2-3-6-4/h2-3H,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O3S/c1-10(17)16-12-4-8-14(9-5-12)20(18,19)13-6-2-11(15)3-7-13/h2-9H,15H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10BrNO3/c1-2-11-6(10)4-8-5(9)3-7/h2-4H2,1H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4O4/c5-3(6)1-2-4(7)8/h1-2H,(H,5,6)(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13ClF3N3O4S3/c1-18-10(4-23-5-11(13,14)15)17-7-2-6(12)8(24(16,19)20)3-9(7)25(18,21)22/h2-3,10,17H,4-5H2,1H3,(H2,16,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H26N2/c14-12-5-1-10(2-6-12)9-11-3-7-13(15)8-4-11/h10-13H,1-9,14-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9N/c1-2-3-4-5-6/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20N4/c1-19(2)15-9-5-13(6-10-15)17-18-14-7-11-16(12-8-14)20(3)4/h5-12H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-15(11-7-3-2-4-8-11)14(17)12-9-5-6-10-13(12)16(15)18/h2-10,18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c1-5-3-8-6(2)4-7-5/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O2/c1-4-11(12)13-9-7-5-6-8-10(2)3/h4,10H,1,5-9H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c8-6-4-2-1-3-5(6)7(9)10/h1-4H,8H2,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O/c7-6-4-2-1-3-5-6/h1-5,7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O/c14-13(16)15(11-7-3-1-4-8-11)12-9-5-2-6-10-12/h1-10H,(H2,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H26S/c1-2-3-4-5-6-7-8-9-10-11-12-13/h13H,2-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14N2/c1-6(2)8-5-9-7(3)4/h6-7H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H23N3O/c1-19(2)12-13-20(17-6-4-5-11-18-17)14-15-7-9-16(21-3)10-8-15/h4-11H,12-14H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H41N3O3/c1-27(2,19-23-13-9-7-10-14-23)29(5)25(33)21-31(17-18-32)22-26(34)30(6)28(3,4)20-24-15-11-8-12-16-24/h7-16,32H,17-22H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11Cl3NO3PS/c1-3-14-17(18,15-4-2)16-9-7(11)5-6(10)8(12)13-9/h5H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O/c1-5(2)4-6(3)7/h5H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O/c10-8-4-7-9-5-2-1-3-6-9/h1-7,10H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl2N/c7-4-1-5(8)3-6(9)2-4/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21N/c1-22-14-12-18(13-15-22)21-19-8-4-2-6-16(19)10-11-17-7-3-5-9-20(17)21/h2-11H,12-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8O2/c1-9-7-4-2-6(8)3-5-7/h2-5,8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12Cl2O4/c1-3-7(2)13(18)8-4-5-9(12(15)11(8)14)19-6-10(16)17/h4-5H,2-3,6H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6O2S/c1-5(2,3)4/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N4/c1-7(2,5-9)11-12-8(3,4)6-10/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2/c1-2-3(4)5/h2H2,1H3,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H27N/c1-10(2)7-13(8-11(3)4)9-12(5)6/h10-12H,7-9H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O5/c16-9-6-10(17)12-11(7-9)20-15(14(19)13(12)18)8-4-2-1-3-5-8/h1-7,15-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O5/c10-4-5-6(8(11)12)2-1-3-7(5)9(13)14/h1-3,10H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H32O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18(19)20/h6-7,9-10H,2-5,8,11-17H2,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18N2O4/c1-8-10(15(17)18)6-9-11(12(8)16(19)20)14(4,5)7-13(9,2)3/h6H,7H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H24O/c1-2-3-4-5-6-7-8-9-10-12-11-13-12/h12H,2-11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15O4P/c19-23(20-16-10-4-1-5-11-16,21-17-12-6-2-7-13-17)22-18-14-8-3-9-15-18/h1-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4O/c7-2-1-3(8)6(11)5(10)4(2)9/h1,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8ClNO3/c9-6-1-3-7(4-2-6)10(13)8(12)5-11/h1-4,11,13H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H24N9P3/c1-7-16(8-2)13-17(9-3,10-4)15-18(11-5,12-6)14-16/h7-12H,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c1-7(2,5-9)8(3,4)6-10/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12N2O3S/c1-11(7,10)3-2-4(6)5(8)9/h4,7H,2-3,6H2,1H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21N3O2/c1-4-24(5-2)15-11-10-14-12-16(21(25)26-19(14)13-15)20-22-17-8-6-7-9-18(17)23(20)3/h6-13H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12N2O3/c12-9(11(15)16)3-6-5-13-10-2-1-7(14)4-8(6)10/h1-2,4-5,9,13-14H,3,12H2,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15NO2/c16-14-9-5-4-8-13(14)15(17)18-11-10-12-6-2-1-3-7-12/h1-9H,10-11,16H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO4/c11-9(12)6-5-7-3-1-2-4-8(7)10(13)14/h1-6H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14/c1-10-3-5-14-12(7-10)9-13-8-11(2)4-6-15(13)14/h3-8H,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O2/c7-5(9)3-1-2-4-6(8)10/h1-4H2,(H2,7,9)(H2,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c8-7(10)5-3-1-2-4-6(5)9/h1-4,9H,(H2,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8ClNO2S/c6-1-2-10-3-4(7)5(8)9/h1-2,4H,3,7H2,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO2/c1-2-4-5(10-3-1)7-9(12-7)8-6(4)11-8/h1-3,6-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N5/c1-15-7-5-6-3-2-4-12-8(6)13-9(7)14-10(15)11/h2-5H,1H3,(H2,11,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O/c1-7-4-2-3-5-8(7)6-9/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H33N/c1-4-7-10-13-16(14-11-8-5-2)15-12-9-6-3/h4-15H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8(13)14-10-6-2-4-9-5-3-7-12-11(9)10/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8O3/c12-10-6-8-4-2-1-3-7(8)5-9(10)11(13)14/h1-6,12H,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H35N/c1-5-9-11-15(7-3)13-17-14-16(8-4)12-10-6-2/h15-17H,5-14H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10ClN5/c1-3(2)9-6-11-4(7)10-5(8)12-6/h3H,1-2H3,(H3,8,9,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4N2/c1-2-5-3-4-1/h1-3H,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11Cl2NO6/c13-6-1-2-9(7(14)3-6)21-5-10(16)15-8(12(19)20)4-11(17)18/h1-3,8H,4-5H2,(H,15,16)(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6OS/c3-1-2-4/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2S/c5-7(6)3-1-2-4-7/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H22ClNO3/c1-17(2)24(18-11-13-20(26)14-12-18)25(28)30-23(16-27)19-7-6-10-22(15-19)29-21-8-4-3-5-9-21/h3-15,17,23-24H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N/c1-3-4(2)5/h4H,3,5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18N4O3/c1-3-4-9-15-13(19)18-11-8-6-5-7-10(11)16-12(18)17-14(20)21-2/h5-8H,3-4,9H2,1-2H3,(H,15,19)(H,16,17,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O/c1-3-7-11(8-4-1)13-12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H21N3O3/c1-13(2,3)15-7-11(18)8-4-5-10(17)9(6-8)16-12(14)19/h4-6,11,15,17-18H,7H2,1-3H3,(H3,14,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13ClN2O2/c1-18-13-8-7-11(17)9-14(13)19(16(21)10-15(18)20)12-5-3-2-4-6-12/h2-9H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H13NO2/c1-6(2-4-7)3-5-8/h7-8H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO/c1-5-3-2-4-6(9)7(5)8/h2-4,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO3/c1-2-4(3-6)5(7)8/h6H,2-3H2,1H3,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6HCl3F8O2/c7-3(12,2(10,11)1(18)19)5(14,15)4(8,13)6(9,16)17/h(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14O7/c1-5(2)16-7(12)4-9(15,8(13)14)3-6(10)11/h5,15H,3-4H2,1-2H3,(H,10,11)(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O5/c1-9(2,3)14-7(11)13-8(12)15-10(4,5)6/h1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3Cl3N3O3/c4-7-1(10)8(5)3(12)9(6)2(7)11">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO/c14-12-8-4-7-11(9-12)13-10-5-2-1-3-6-10/h1-9,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N4O5/c1-9-11(5-3-7-13(9)17(20)21)15-16(19)12-6-4-8-14(10(12)2)18(22)23/h3-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH3NO/c2-1-3/h1H,(H2,2,3)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11ClO/c14-12-6-7-13(15)11(9-12)8-10-4-2-1-3-5-10/h1-7,9,15H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O/c1-4(3)2-5/h2H,3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N3/c1-5-2-3-6-7(4-5)9-10-8-6/h2-4H,1H3,(H,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O2/c1-2-3-4-5-6-7-8(9)10/h2-7H2,1H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO2/c1-7-3-5-9(6-4-7)10(12)8(2)11/h3-6,12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2O/c1-5-3-7(10)8(11-2)4-6(5)9/h3-4H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O3/c1-11-8(10)6-2-4-7(9)5-3-6/h2-5,9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O6/c7-4(8)1-3(6(11)12)2-5(9)10/h1H,2H2,(H,7,8)(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N3O/c6-5(9)4-3-7-1-2-8-4/h1-3H,(H2,6,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N/c1-2-16(15-11-7-4-8-12-15)13-14-9-5-3-6-10-14/h3-12H,2,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14N2O2S/c1-7(2,12-4)5-9-11-6(10)8-3/h5H,1-4H3,(H,8,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O/c16-10-15-13-7-3-1-5-11(13)9-12-6-2-4-8-14(12)15/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2/c1-2-5-3-4-1/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3BrO2/c1-2(4)3(5)6/h1H2,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10/c1-3-9-7-5-6-8-10(9)4-2/h3-8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3S/c7-10(8,9)6-4-2-1-3-5-6/h1-5H,(H,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H30Cl2N2O5/c1-3-4-5-11-25(12-6-13-30-2)21(29)18(9-10-19(26)27)24-20(28)15-7-8-16(22)17(23)14-15/h7-8,14,18H,3-6,9-13H2,1-2H3,(H,24,28)(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O4/c1-3-9(11)13-7-5-6-8-14-10(12)4-2/h3-4H,1-2,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O/c1-3-7-13(8-4-1)11-15-12-14-9-5-2-6-10-14/h1-10H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8Br4O3/c9-3-1-2(8(14)15-7(1)13)4(10)6(12)5(3)11">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O3S/c1-7(2)12-10(13)8-5-3-4-6-9(8)11-16(12,14)15/h3-7,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15ClNO4PS2/c1-3-16-19(20,17-4-2)21-8-14-10-6-5-9(13)7-11(10)18-12(14)15/h5-7H,3-4,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15N/c1-4-7-10(8-5-2)9-6-3/h4-6H,1-3,7-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-2-9-8-6-4-3-5-7-8/h3-7,9H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c7-6-4(8(10)11)2-1-3-5(6)9/h1-3,9H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9N3O9/c1-5(2-15-6(9)10,3-16-7(11)12)4-17-8(13)14/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15ClO4/c1-17(2,16(20)21)22-14-9-5-12(6-10-14)15(19)11-3-7-13(18)8-4-11/h3-10H,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H19NO4/c1-2-22-17(20)14-10-12-9-11-5-3-7-19-8-4-6-13(15(11)19)16(12)23-18(14)21/h9-10H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H8BrNO2/c1-15-11(14)9(7-13)6-8-4-2-3-5-10(8)12/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H20N2O2/c1-2-3-14-17-18(22)20(15-10-6-4-7-11-15)21(19(17)23)16-12-8-5-9-13-16/h4-13,17H,2-3,14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O2/c1-7(2,3)9-10-8(4,5)6/h1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO/c1-6-4-2-3-5-7(6)8(9)10/h2-5H,1H3,(H2,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O2/c1-17(2,15-11-7-5-8-12-15)19-20-18(3,4)16-13-9-6-10-14-16/h5-14H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O2/c1-3-5-7-10-8(9)6-4-2/h3-7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O/c1-3-5-7-9-8-6-4-2/h3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-3-4(2)5(6)7/h3H2,1-2H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22N6O4/c17-14(24)12-2-1-5-22(12)16(26)11(6-9-7-18-8-19-9)21-15(25)10-3-4-13(23)20-10/h7-8,10-12H,1-6H2,(H2,17,24)(H,18,19)(H,20,23)(H,21,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O/c1-3-5-6-8(4-2)7-9/h6-7H,3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N/c1-7-2-4-8(6-9)5-3-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2/c1-2-4-8-6-10-9-5-7(8)3-1/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-2-1-3-7(9)5(6)4-10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O3/c1-6(10)7-3-4-8(11)9(5-7)12-2/h3-5,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-6(2)5-10-8(9)7(3)4/h6H,3,5H2,1-2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O2/c1-10(2,3)8-6-7(11)4-5-9(8)12/h4-6,11-12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2/c7-5-2-1-3-6(8)4-5/h5-6H,1-4,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15NO2/c1-2-3-8-14-11(13)9-4-6-10(12)7-5-9/h4-7H,2-3,8,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20/c1-8(2)10-6-4-9(3)5-7-10/h8-10H,4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H10N2/c4-2-1-3-5/h1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O2/c1-9-6-7-12-13(8-9)15(17)11-5-3-2-4-10(11)14(12)16/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13NO/c18-16-9-7-14(8-10-16)17-15-6-5-12-3-1-2-4-13(12)11-15/h1-11,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O2/c1-3-5-6-7(4-2)8(9)10/h7H,3-6H2,1-2H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6Cl2/c1-2-4(6)3-5/h2,4H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O2/c1-8(2)5-6-12-10(11)7-9(3)4/h8-9H,5-7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO2/c3-1-2(4)5/h1,3H2,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7FO/c8-7-3-1-6(5-9)2-4-7/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H17NO2S/c1-2-3-4-11-5-6-12-7-8-13-9-10/h2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15NO2S/c16-13-11-8-4-5-9-12(11)14(17)15(13)18-10-6-2-1-3-7-10/h4-5,8-10H,1-3,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12Cl2N4/c1-10-21-22-16-9-20-17(12-4-2-3-5-14(12)19)13-8-11(18)6-7-15(13)23(10)16/h2-8H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O2/c16-14-9-6-12(7-10-14)8-11-15(17)13-4-2-1-3-5-13/h1-11,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c9-6-8(10)7-4-2-1-3-5-7/h1-6,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4ClNO2/c7-5-2-1-3-6(4-5)8(9)10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11N3O3/c19-14-9-16-15(10-4-2-1-3-5-10)12-8-11(18(20)21)6-7-13(12)17-14/h1-8H,9H2,(H,17,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O6/c5-1(3(7)8)2(6)4(9)10/h1-2,5-6H,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2S/c1-3-6(2,4)5/h3H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O/c1-5(2)4-6(3)7/h5-7H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O/c10-8-4-7-9-5-2-1-3-6-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H19N/c1-7(2)5-9-6-8(3)4/h7-9H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9Br/c13-12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11ClN4O2S/c15-11-2-1-3-12-14(11)17-8-13(18-12)19-22(20,21)10-6-4-9(16)5-7-10/h1-8H,16H2,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N4O2/c1-10-5-4(8-3-9-5)6(12)11(2)7(10)13/h3H,1-2H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O2/c1-4-2-3/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2O4/c3-1(4)2(5)6/h(H,3,4)(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2Cl6/c3-1(4,5)2(6,7)8">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14Cl3NO4S/c1-22-3-2-10(13(19)20)17-12(18)6-21-11-5-8(15)7(14)4-9(11)16/h4-5,10H,2-3,6H2,1H3,(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H38O/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19/h19H,2-18H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9NO6/c8-4(9)1-7(2-5(10)11)3-6(12)13/h1-3H2,(H,8,9)(H,10,11)(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H19NOS/c1-4-7-10(8-5-2)9(11)12-6-3/h4-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO2/c1-7-2-3-8(6-9(7)12)10-4-5-11/h2-3,6,10-12H,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O/c1-2-3/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15NO3/c1-8(2)5-6(7(11)12)9(3,4)10(8)13/h5,13H,1-4H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2O3/c2-1(3)4/h(H2,2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O/c1-2-3-4-5-6-8-7-9-8/h8H,2-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H30O8/c1-3-5-7-9-16(27)11-15-12-17(28)13-20-22(15)26(32)34-21-14-19(29)23(25(30)31)18(24(21)33-20)10-8-6-4-2/h12-14,28-29H,3-11H2,1-2H3,(H,30,31)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O2/c1-4-5-9-6-7-10(12-2)11(8-9)13-3/h4,6-8H,1,5H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17O4P/c1-16-9-8-14-19(15-16)23-24(20,21-17-10-4-2-5-11-17)22-18-12-6-3-7-13-18/h2-15H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6Cl3NO3/c13-7-5-10(14)12(11(15)6-7)19-9-3-1-8(2-4-9)16(17)18/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6O3/c12-10-4-2-7-1-3-9-8(5-6-13-9)11(7)14-10/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O4/c1-6(11)7-4-8(13-2)10(12)9(5-7)14-3/h4-5,12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H40O2S/c1-23-13-10-19-17(7-6-16-14-20-21(28-20)15-24(16,19)2)18(23)8-9-22(23)27-25(26-3)11-4-5-12-25/h16-22H,4-15H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O6P/c4-1-3(5)2-9-10(6,7)8/h3-5H,1-2H2,(H2,6,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H27N/c1-3-5-7-9-11-13-12-10-8-6-4-2/h13H,3-12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8OS/c1-6-4-2-3-5/h3H,2,4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O3/c5-1-3-7-4-2-6/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H25N3/c1-25(2)21-13-7-18(8-14-21)23(17-5-11-20(24)12-6-17)19-9-15-22(16-10-19)26(3)4/h5-16,24H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c10-7-5-3-1-2-4-6(5)8(11)9-7/h1-2,5-6H,3-4H2,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9NO/c1-6-4-2-3-5(6)7/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7N/c1-2-7-5-3-4-6-8-7/h2-6H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H27O4P/c1-3-5-12-18(4-2)17-22-25(21,23-19-13-8-6-9-14-19)24-20-15-10-7-11-16-20/h6-11,13-16,18H,3-5,12,17H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O4/c15-7-1-3-9-11(5-7)14(18)10-4-2-8(16)6-12(10)13(9)17/h1-6,15-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H44O8/c1-2-6-22-21(5-1)29-17-13-25-9-10-27-15-19-31-23-7-3-4-8-24(23)32-20-16-28-12-11-26-14-18-30-22/h21-24H,1-20H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H42N/c1-4-5-6-7-8-9-10-11-12-13-14-18-21-24(2,3)22-23-19-16-15-17-20-23/h15-17,19-20H,4-14,18,21-22H2,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14N4O5/c9-1-5(13)10-2-6(14)11-3-7(15)12-4-8(16)17/h1-4,9H2,(H,10,13)(H,11,14)(H,12,15)(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO2/c15-11-7-3-1-5-9(11)13-14-10-6-2-4-8-12(10)16-13/h1-8,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15O3P/c1-4-8-10(7,6-3)9-5-2/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O3/c1-9(2)7-8-12-13(16)10-5-3-4-6-11(10)14(17)15(12)18/h3-7,12H,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6Br2/c8-5-6-1-3-7(9)4-2-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O2/c1-5-3-7(9)4-6(2)8(5)10/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H25BrN2/c1-12-5-16-17-7-15(21)8-19-20(17)14(6-18(16)22(2)9-12)11-23(19)10-13-3-4-13/h7-8,11-13,16,18H,3-6,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H22O6/c1-11(2)13(15)19-9-7-17-5-6-18-8-10-20-14(16)12(3)4/h1,3,5-10H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H12O4P/c5-1-9(2-6,3-7)4-8/h5-8H,1-4H2/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O7S2/c11-7-2-1-6-3-8(18(12,13)14)5-10(9(6)4-7)19(15,16)17/h1-5,11H,(H,12,13,14)(H,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H27ClO5/c1-12(24)22(28-13(2)25)8-6-16-14-9-18(23)17-10-19(26)27-11-20(17,3)15(14)5-7-21(16,22)4/h9-10,14-16H,5-8,11H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H12N2/c1-2-8-14-13(7-1)21-20-19(15-9-3-5-11-17(15)23-21)16-10-4-6-12-18(16)24-22(14)20/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14N2O/c1-12-6-9-14(10-7-12)18-19-17-15-5-3-2-4-13(15)8-11-16(17)20/h2-11,20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H21ClFNO3/c1-16-23(30)15-21(17-7-5-4-6-8-17)29(26(16)18-9-11-19(28)12-10-18)22-13-20(31-2)14-24(32-3)25(22)27/h4-15H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H21ClO3/c1-25-19-10-4-16(5-11-19)22(17-6-12-20(26-2)13-7-17)23(24)18-8-14-21(27-3)15-9-18/h4-15H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Cl2/c9-5-7-3-1-2-4-8(7)6-10/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O8P2/c1-3-17(13-5-9-15(10-6-13)25-27(19,20)21)18(4-2)14-7-11-16(12-8-14)26-28(22,23)24/h5-12H,3-4H2,1-2H3,(H2,19,20,21)(H2,22,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3O3S/c1-7-8(2)13-17-11(7)14-18(15,16)10-5-3-9(12)4-6-10/h3-6,14H,12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H36O/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-18-17-19-18/h18H,2-17H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N2O6/c1-9-13(16(20)24-3)15(14(10(2)18-9)17(21)25-4)11-7-5-6-8-12(11)19(22)23/h5-8,15,18H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O/c1-2-3-8-4-6-9(10)7-5-8/h2,4-7,10H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2/c7-5-2-1-3-6(8)4-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c1-5-2-3-6(9(11)12)4-7(5)8-10/h2-4,8,10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H32O3/c1-19-11-13(12-22)18(23)10-14(19)4-5-15-16(19)6-8-20(2)17(15)7-9-21(20,3)24/h12-17,24H,4-11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19ClN4O2S/c1-10-4-3-5-11(2)15(10)20-13-8-12(17)19-16(21-13)24-9-14(23)18-6-7-22/h3-5,8,22H,6-7,9H2,1-2H3,(H,18,23)(H,19,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO2/c1-2-12-9(11)7-5-3-4-6-8(7)10/h3-6H,2,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2/c1-2-3-4(5)6/h2-3H2,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O5/c11-9-13-7-6(8(18)14-9)12-10(19)15(7)5-1-3(17)4(2-16)20-5/h3-5,16-17H,1-2H2,(H,12,19)(H3,11,13,14,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8Cl4N2O2/c17-9-5-13(19)15(21-7-9)23-11-1-2-12(4-3-11)24-16-14(20)6-10(18)8-22-16/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O3/c1-8(12)3-4-9-5-6-10(13)11(7-9)14-2/h5-7,13H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2O2S/c13-9-1-5-11(6-2-9)17(15,16)12-7-3-10(14)4-8-12/h1-8H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O/c8-6-3-1-5(2-4-6)7(9)10/h1-4H,8H2,(H2,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO2/c1-2-3(4)5/h2H,1H3,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9Cl2NO3/c11-7-2-1-6(5-8(7)12)13-9(14)3-4-10(15)16/h1-2,5H,3-4H2,(H,13,14)(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H24N2O4/c1-5-6-12(4,7-17-10(13)15)8-18-11(16)14-9(2)3/h9H,5-8H2,1-4H3,(H2,13,15)(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16O2/c1-11(16)3-4-12-5-6-14-10-15(17-2)8-7-13(14)9-12/h5-10H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H5Cl3O3/c9-4-1-6(11)7(2-5(4)10)14-3-8(12)13/h1-2H,3H2,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15NO3/c8-4-1-7(2-5-9)3-6-10/h8-10H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14Cl2O/c17-14-7-3-12(4-8-14)16(19,11-1-2-11)13-5-9-15(18)10-6-13/h3-11,19H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8ClNO2/c1-6(11)10(12)8-4-2-7(9)3-5-8/h2-5,12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3/c7-4-2-1-3-5(8)6(4)9/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H30NO3/c1-16(2)24(5,17(3)4)14-15-26-23(25)22-18-10-6-8-12-20(18)27-21-13-9-7-11-19(21)22/h6-13,16-17,22H,14-15H2,1-5H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2/c7-5-1-2-6(8)4-3-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O4/c1-14-9-6-7(2-4-8(9)11)3-5-10(12)13/h2-6,11H,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H21N/c1-2-3-4-5-6-16-7-11-18(12-8-16)19-13-9-17(15-20)10-14-19/h7-14H,2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12F2N2O3/c1-2-21-8-11(17(23)24)16(22)10-7-12(18)13(14(19)15(10)21)9-3-5-20-6-4-9/h3-8H,2H2,1H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6O/c1-5-3-2-4-6-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15ClN2O5/c12-2-1-6-4-14(11(18)13-10(6)17)9-3-7(16)8(5-15)19-9/h4,7-9,15-16H,1-3,5H2,(H,13,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H3Cl2N3/c5-2-1-3(6)9-4(7)8-2/h1H,(H2,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12O3/c15-13-9-5-4-8-12(13)14(16)17-10-11-6-2-1-3-7-11/h1-9,15H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N3/c1-2-8-3-7-5-10-9-4-6(1)7/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11FO/c16-14-9-6-12(7-10-14)8-11-15(17)13-4-2-1-3-5-13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O2/c9-7(11)5-3-1-2-4-6(5)8(10)12/h1-4H,(H2,9,11)(H2,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16N2O/c1-11(18)17-15-8-4-13(5-9-15)10-12-2-6-14(16)7-3-12/h2-9H,10,16H2,1H3,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO3/c1-15-13(16)9-5-3-4-8-6-7-10(18-2)12(11(8)9)14(15)17/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O2/c1-3-5-6-9-7(8)4-2/h4H,2-3,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4O2/c5-4-2-1-3-6-4/h1-2H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H18N2O/c29-28(22-10-12-26-20(16-22)14-18-6-2-4-8-24(18)26)27-21-9-11-25-19(15-21)13-17-5-1-3-7-23(17)25/h1-12,15-16H,13-14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20S2/c1-7-3-4-9(5-10(7)12)8(2)6-11/h7-12H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O4/c1-4-3-6(10)7(5(2)9)8(11)12-4/h3,7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5N3O3/c4-3(9)6-5-1-2(7)8/h1H,(H,7,8)(H3,4,6,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16FN3O3/c1-2-3-4-5-6-13-10(17)15-7-8(12)9(16)14-11(15)18/h7H,2-6H2,1H3,(H,13,17)(H,14,16,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2N2/c4-2-1-3-5/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H40O3/c1-15(4-9-22(26)27)19-7-8-20-18-6-5-16-14-17(25)10-12-23(16,2)21(18)11-13-24(19,20)3/h15-21,25H,4-14H2,1-3H3,(H,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4F3NO2/c8-7(9,10)5-3-1-2-4-6(5)11(12)13/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl4NO3/c1-15-7-4(10)2(8)6(12(13)14)3(9)5(7)11/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H20N2/c1-3-5-7-10(9)8-6-4-2/h3-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H28N2O4/c1-4-15-14-25-11-9-16(15)12-21(25)22(29-23(26)28-5-2)18-8-10-24-20-7-6-17(27-3)13-19(18)20/h4,6-8,10,13,15-16,21-22H,1,5,9,11-12,14H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9Br/c13-12-8-6-11(7-9-12)10-4-2-1-3-5-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8Cl4/c6-1-5(2-7,3-8)4-9/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8ClNO/c14-10-7-5-9(6-8-10)13-15-11-3-1-2-4-12(11)16-13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl2F5/c4-1(5)2(6,7)3(8,9)10/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19N3S/c1-16(2)8-9-17(11-13-6-10-18-12-13)14-5-3-4-7-15-14/h3-7,10,12H,8-9,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N4O5/c1-9-3-5-11(17(20)21)7-13(9)15-16(19)14-8-12(18(22)23)6-4-10(14)2/h3-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19NO3/c19-17(18-10-4-1-5-11-18)7-3-2-6-14-8-9-15-16(12-14)21-13-20-15/h2-3,6-9,12H,1,4-5,10-11,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15NO2/c1-5(8)3-7-4-6(2)9/h5-9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O2/c1-3-12(4-2)8-5-6-9(11-14)10(13)7-8/h5-7,13H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O2/c1-9-7-3-5-8(10-2)6-4-7/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO6S/c8-3-1-4(7(10)11)6(9)5(2-3)15(12,13)14/h1-2,9H,8H2,(H,10,11)(H,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO4S/c7-5-3-4(12(9,10)11)1-2-6(5)8/h1-3,8H,7H2,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H22NO3PS/c1-6-16-18(15,14-10(2)3)17-12-7-8-13(19-5)11(4)9-12/h7-10,15H,6H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11FO/c16-14-9-7-13(8-10-14)15(17)11-6-12-4-2-1-3-5-12/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9Br/c1-7(9)8-5-3-2-4-6-8/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2O/c9-6-5-8-3-1-7-2-4-8/h7,9H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H17NO5/c1-23-14-7-3-12(4-8-14)18-16(11-17(21)22)25-20-19(18)13-5-9-15(24-2)10-6-13/h3-10H,11H2,1-2H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H6Cl5NO3/c14-4-1-6(16)11(20)8(2-4)19-13(22)9-10(18)5(15)3-7(17)12(9)21/h1-3,20-21H,(H,19,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO3/c17-15(13-7-2-1-3-8-13)11-10-12-6-4-5-9-14(12)16(18)19/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O2/c8-7(9)6-4-2-1-3-5-6/h1-5H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H24N2S/c16-13(14-11-7-3-1-4-8-11)15-12-9-5-2-6-10-12/h11-12H,1-10H2,(H2,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Br2NO/c8-5-1-4(3-10)2-6(9)7(5)11/h1-2,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H17NO3/c1-8(2)5-6(7(11)12)9(3,4)10(8)13/h6,13H,5H2,1-4H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3O/c7-3-1-4(8)6(9)5(10)2-3/h1-2,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H30O3/c1-22-6-3-12(25)9-17(22)13-10-14(13)20-16(22)4-7-23(2)21(20)15-11-18(15)24(23)8-5-19(26)27-24/h14-16,18,20-21H,3-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13ClN2O/c1-19-14-8-7-12(17)9-13(14)16(18-10-15(19)20)11-5-3-2-4-6-11/h2-9H,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H18/c1-15-6-7-17-8-9-20-22-11-10-18-16(2)4-3-5-19(18)21(22)12-13-23(20)24(17)14-15/h3-14H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-3-5-6-7-10-8(9)4-2/h4H,2-3,5-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20O2/c1-2-3-12-23-20-13-18-16(10-11-19(18)22)17-9-8-14-6-4-5-7-15(14)21(17)20/h4-9,13H,2-3,10-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N2O2/c1-3-2(5)4-6/h6H,1H3,(H2,3,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-7-4-8(2)6-9(3)5-7/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO3/c1-10-5-9(13)6-2-3-7(11)8(12)4-6/h2-4,9-13H,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO/c1-2-6-10(7-3-1)13-14-11-8-4-5-9-12(11)15-13/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-3-5-7-9-11-15-19-27-23(25)21-17-13-14-18-22(21)24(26)28-20-16-12-10-8-6-4-2/h13-14,17-18H,3-12,15-16,19-20H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H24N2O2/c22-18-13-20(19(23)15-7-2-1-3-8-15)12-17-16-9-5-4-6-14(16)10-11-21(17)18/h4-6,9,15,17H,1-3,7-8,10-13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8O/c8-6-7-4-2-1-3-5-7/h1-5,8H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N/c1-4-7(5-2)6-3/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11BrO/c16-14-9-7-13(8-10-14)15(17)11-6-12-4-2-1-3-5-12/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14N2O3/c21-11-5-7-15-17(9-11)25-18-10-12(22)6-8-16(18)19(15)13-3-1-2-4-14(13)20(23)24/h1-10,21H,22H2,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Br2/c9-5-7-2-1-3-8(4-7)6-10/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O/c7-4-2-1-3-5(9)6(4)8/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9NO/c1-4-2-3-5/h4-5H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H26O4/c21-19(23-15-9-3-1-4-10-15)17-13-7-8-14-18(17)20(22)24-16-11-5-2-6-12-16/h7-8,13-16H,1-6,9-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20Cl2N6O3/c1-28(2)21(32)20-26-17(11-25-18(30)10-24)29(27-20)16-8-7-12(22)9-14(16)19(31)13-5-3-4-6-15(13)23/h3-9H,10-11,24H2,1-2H3,(H,25,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H22O4/c1-11(2)13(15)17-9-7-5-6-8-10-18-14(16)12(3)4/h1,3,5-10H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O/c1-9(2)5-4-6-10(3)7-8-11/h5,10-11H,4,6-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5ClOS/c1-2-6-3(4)5/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl2NO/c7-3-1-4(8)6(10)5(9)2-3/h1-2,10H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl2N3O3/c4-7-1(9)6-2(10)8(5)3(7)11/h(H,6,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2O2/c1-8(2,3)7-5-4-6(9)10/h7H,4-5H2,1-3H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9Cl5/c15-11-5-1-9(2-6-11)13(14(17,18)19)10-3-7-12(16)8-4-10/h1-8,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO3/c12-9-5-8(10(13)14)11-7-4-2-1-3-6(7)9/h1-5H,(H,11,12)(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6Cl6O3S/c10-5-6(11)8(13)4-2-18-19(16)17-1-3(4)7(5,12)9(8,14)15/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-8-4-3-7-2-1-5-10-9(7)6-8/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO3/c1-6(10)7-4-2-3-5-8(7)9(11)12/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO2S/c1-3-10-13(11,12)9-6-4-8(2)5-7-9/h4-7,10H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2O2/c1-3(4,5)2(6)7/h1H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14/c1-3-8-15(9-4-1)17-12-7-13-18(14-17)16-10-5-2-6-11-16/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6Cl2O3/c1-13-7-5(10)3-2-4(9)6(7)8(11)12/h2-3H,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-4-8-6(7)5(2)3/h2,4H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9N3/c6-2-1-5-3-7-4-8-5/h3-4H,1-2,6H2,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H24O6/c1-26(17-30-23(27)20-11-5-2-6-12-20,18-31-24(28)21-13-7-3-8-14-21)19-32-25(29)22-15-9-4-10-16-22/h2-16H,17-19H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6O4/c9-7(10)5-1-2-6(4-3-5)8(11)12/h1-4H,(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10O/c14-10-11-5-4-8-13(9-11)12-6-2-1-3-7-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H16N2/c7-5-3-1-2-4-6-8/h1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO2/c1-4-2-3(5)6/h4H,2H2,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3/c7-4-1-5(8)3-6(9)2-4/h1-3,7-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O3/c1-7(13)8-2-3-10-9(6-8)11(14)12(15-10)4-5-12/h2-3,6H,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H20O4/c1-9(2)11(14)16-7-13(5,6)8-17-12(15)10(3)4/h1,3,7-8H2,2,4-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3N3O8/c10-5-2(7(12)13)1-3(8(14)15)6(11)4(5)9(16)17/h1,10-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O/c1-3-5(2)4-6/h4-5H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClF3N/c8-5-2-1-4(3-6(5)12)7(9,10)11/h1-3H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9N/c1-4(2)3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N/c1-8(2)10-9-6-4-3-5-7-9/h3-8,10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10N2O5/c17-12-6-5-10(7-11(12)14(20)21)16-15-9-3-1-8(2-4-9)13(18)19/h1-7,17H,(H,18,19)(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O4S/c13-9-1-5-11(6-2-9)17(15,16)12-7-3-10(14)4-8-12/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-9(2)8-6-4-3-5-7-8/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4ClN/c6-5-1-3-7-4-2-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CCl3F/c2-1(3,4)5">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H11NO3S2/c1-7(2)6(11)8-4(5(9)10)3-12-13-7/h4H,3H2,1-2H3,(H,8,11)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14/c1-2-7-17-14-22-18(13-16(17)6-1)10-12-20-19-8-4-3-5-15(19)9-11-21(20)22/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO/c1-10-6-8-11(9-7-10)14-15-12-4-2-3-5-13(12)16-14/h2-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H36N2O3/c1-5-8-9-10-13-16-25-20-15-12-11-14-19(20)22-21(24)26-18(4)17-23(6-2)7-3/h11-12,14-15,18H,5-10,13,16-17H2,1-4H3,(H,22,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H40O4/c1-14(4-7-21(27)28)17-5-6-18-22-19(9-11-24(17,18)3)23(2)10-8-16(25)12-15(23)13-20(22)26/h14-20,22,25-26H,4-13H2,1-3H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16ClO5PS/c1-4-17-21(22,18-5-2)20-10-6-7-11-9(3)13(15)14(16)19-12(11)8-10/h6-8H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6Cl2F4/c7-1-3(9)2(8)5(11)6(12)4(1)10">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9ClO/c1-10-8-4-2-7(6-9)3-5-8/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O3/c7-4-2-1-3-5(6(4)9)8(10)11/h1-3,9H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10N2O4/c16-10-6-5-9(11(17)14-10)15-12(18)7-3-1-2-4-8(7)13(15)19/h1-4,9H,5-6H2,(H,14,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2/c8-7(9)6-4-2-1-3-5-6/h1-5H,(H3,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O/c1-7(2)9-5-4-8(3)10(11)6-9/h4,9H,1,5-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N4/c1-17(2)13-7-5-11(6-8-13)15-16-12-4-3-9-14-10-12/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO/c9-6-8(10)7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H19N3O4/c10-6(8(13)14)3-1-2-4-12-5-7(11)9(15)16/h6-7,12H,1-5,10-11H2,(H,13,14)(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O4/c5-3(6)1-2-4(7)8/h1-2H2,(H,5,6)(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22O2/c1-18-9-8-14-13-5-3-12(19)10-11(13)2-4-15(14)16(18)6-7-17(18)20/h2,8-9,15-17,20H,3-7,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO2/c8-6(9)5-2-1-3-7-4-5/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O/c1-7-2-4-8(6-9)5-3-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-7(2)9-5-4-8(3)10(11)6-9/h4,9-11H,1,5-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H22O/c1-2-4-6-8-10-12-11(13-12)9-7-5-3-1/h11-12H,1-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N/c1-4(2)3-5/h4H,3,5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O2/c1-7(9)4-5-8-3-2-6-10-8/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15NO/c1-2-9-4-3-5-11-10(6-7-14)8-13-12(9)11/h3-5,8,13-14H,2,6-7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26O/c1-11-8-16-15(9-14(11)13(3)19)17(4,5)10-12(2)18(16,6)7/h8-9,12H,10H2,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H33NO3/c1-2-3-4-5-6-7-8-9-10-11-16(20)17(12-14-18)13-15-19/h18-19H,2-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H26N4O8S/c1-21(2)15(20(32)33)25-18(31)14(19(25)34-21)24(17(30)11(23-3)8-12(27)28)13(16(22)29)9-4-6-10(26)7-5-9/h4-7,11,13-15,19,23,26H,8H2,1-3H3,(H2,22,29)(H,27,28)(H,32,33)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H19Cl2NO3/c1-22(2)17(12-19(23)24)20(22)21(26)28-18(13-25)14-7-6-10-16(11-14)27-15-8-4-3-5-9-15/h3-12,17-18,20H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N6/c6-3-2-4(9-1-8-2)11-5(7)10-3/h1H,(H5,6,7,8,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9NO6/c8-3-1-11-6-4(13-7(9)10)2-12-5(3)6/h3-6,8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-4-5-10-8(9)6-7(2)3/h4,7H,1,5-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O2/c1-2-6-10(11)12-9-7-4-3-5-8-9/h9H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O5/c1-7-3-8(16)4-12-13(7)10-5-9(19-2)6-11(17)14(10)15(18)20-12/h3-6,16-17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4HCl3N2/c5-2-1-3(6)9-4(7)8-2/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O2/c15-14(16)12-9-5-4-8-11(12)13-10-6-2-1-3-7-10/h1-9,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O2/c21-18(22)15-10-13-12-8-4-5-9-14(12)19-17(13)16(20-15)11-6-2-1-3-7-11/h1-9,15-16,19-20H,10H2,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5NO/c4-2-1-3-5/h5H,1,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16Cl3NO4/c1-7(2)3-11(14(20)21)18-13(19)6-22-12-5-9(16)8(15)4-10(12)17/h4-5,7,11H,3,6H2,1-2H3,(H,18,19)(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13NO2/c14-12(15)7-3-4-9-8-13-11-6-2-1-5-10(9)11/h1-2,5-6,8,13H,3-4,7H2,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O3PS/c1-5-7(4,6-2)8-3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C30H50O4/c1-3-5-7-9-11-13-15-17-21-25-33-29(31)27-23-19-20-24-28(27)30(32)34-26-22-18-16-14-12-10-8-6-4-2/h19-20,23-24H,3-18,21-22,25-26H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O3/c16-8-9-5-6-12-13(7-9)15(18)11-4-2-1-3-10(11)14(12)17/h1-7,16H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O/c1-7-4-3-5-8(2)6(7)9/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H23ClFNO2/c22-18-7-5-17(6-8-18)21(26)11-14-24(15-12-21)13-1-2-20(25)16-3-9-19(23)10-4-16/h3-10,26H,1-2,11-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-2-1-5(4-10)7(9)3-6/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N/c1-6-3-2-4-7(8)5-6/h2-5H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-9(2)7-4-5-10(9,3)8(11)6-7/h7-8,11H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11BrO/c16-14-9-6-12(7-10-14)8-11-15(17)13-4-2-1-3-5-13/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O2/c1-3-5-8-6(7)4-2/h3-4H,1-2,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13NO2/c1-2-3-4-5-6-7(8)9/h6H,2-5H2,1H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H19O6PS2/c1-5-15-9(11)7-8(10(12)16-6-2)19-17(18,13-3)14-4/h8H,5-7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4O3S/c1-5(2,3)4/h1H3,(H,2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O2/c19-17-15-8-4-3-7-13(15)14-10-9-11-5-1-2-6-12(11)16(14)18(17)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O2/c1-6(2)5-7-8(9(11)12)10(7,3)4/h5,7-8H,1-4H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c10-8-3-4-9-7(6-8)2-1-5-11-9/h1-6H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H39O7P/c1-4-7-10-20-13-16-23-26(19,24-17-14-21-11-8-5-2)25-18-15-22-12-9-6-3/h4-18H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O2/c16-14-9-7-13(8-10-14)15(17)11-6-12-4-2-1-3-5-12/h1-11,16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c9-5-6-2-1-3-7(4-6)8(10)11/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9N3O2S2/c10-7-1-3-8(4-2-7)16(13,14)12-9-11-5-6-15-9/h1-6H,10H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O2/c11-8(6-9-12)10-7-4-2-1-3-5-7/h1-6,12H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C30H40O/c1-24(13-8-9-14-25(2)16-11-18-27(4)23-31)15-10-17-26(3)20-21-29-28(5)19-12-22-30(29,6)7/h8-11,13-18,20-21,23H,12,19,22H2,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O/c1-7(2)9-5-4-8(3)10(11)6-9/h4-7,11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O2/c1-5(7)3-4-6(2)8/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO3/c12-7-1-2-9-8(4-7)6(5-11-9)3-10(13)14/h1-2,4-5,11-12H,3H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H27NO2/c1-3-5-12-19(4-2)18-27-24(26)22(17-25)23(20-13-8-6-9-14-20)21-15-10-7-11-16-21/h6-11,13-16,19H,3-5,12,18H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10O4/c1-5(8)4-6(9)2-3-7(10)11/h2-4H2,1H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O4/c10-7-3-1-6(5-8(7)11)2-4-9(12)13/h1-5,10-11H,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H5ClINO/c10-6-4-7(11)9(13)8-5(6)2-1-3-12-8/h1-4,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17ClN2O2/c1-15(2,3)13(19)14(18-9-8-17-10-18)20-12-6-4-11(16)5-7-12/h4-10,14H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12/c1-11-5-4-8-14-9-12-6-2-3-7-13(12)10-15(11)14/h2-10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O4/c8-6-3-4-5(11-6)1-2-10-7(4)9/h1,3,7,9H,2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O5/c1-6-2-7(15)5-11-12(6)9-3-8(16)4-10(17)13(9)14(18)19-11/h2-5,15-17H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18O5/c1-9(2)11(13)16-7-5-15-6-8-17-12(14)10(3)4/h1,3,5-8H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O/c1-3-5-6-8(4-2)7-9/h7-8H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16N2O5/c1-2-6-4-13(11(17)12-10(6)16)9-3-7(15)8(5-14)18-9/h4,7-9,14-15H,2-3,5H2,1H3,(H,12,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClN3O4S2/c8-4-1-5-7(2-6(4)16(9,12)13)17(14,15)11-3-10-5/h1-2,10-11H,3H2,(H2,9,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O/c1-7(2)9-5-4-8(3)6-10(9)11/h4-7,11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl2N/c6-4-1-5(7)3-8-2-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12ClN3O3S/c1-2-9-13-7-4-6(11)8(18(12,16)17)3-5(7)10(15)14-9/h3-4,9,13H,2H2,1H3,(H,14,15)(H2,12,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO/c1-12(2)11-7-5-10(6-8-11)4-3-9-13/h3-9H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H21NO2/c1-12(2)17-10-14(18)11-19-16-9-5-7-13-6-3-4-8-15(13)16/h3-9,12,14,17-18H,10-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O/c8-6-7-4-2-1-3-5-7/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11NO3S/c1-8(11(14)15)9-2-4-10(5-3-9)16-12-13-6-7-17-12/h2-8H,1H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H4Cl4/c11-7-5-3-1-2-4-6(5)8(12)10(14)9(7)13/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H31NO3/c1-4-23-17-11-16-21(2,3)26-20(24)22(25,18-12-7-5-8-13-18)19-14-9-6-10-15-19/h5,7-8,12-13,19,23,25H,4,6,9-10,14-15,17H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16O/c22-21(20-9-5-2-6-10-20)16-13-17-11-14-19(15-12-17)18-7-3-1-4-8-18/h1-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24N2O2/c1-3-13-12-22-9-7-14(13)10-19(22)20(23)16-6-8-21-18-5-4-15(24-2)11-17(16)18/h3-6,8,11,13-14,19-20,23H,1,7,9-10,12H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Cl2/c9-5-7-2-1-3-8(4-7)6-10/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5NS/c1-2-4-3-5/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2/c7-5-1-2-6(8)4-3-5/h5-6H,1-4,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O2/c13-11-7-3-1-5-9(11)10-6-2-4-8-12(10)14/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2F4/c3-1-2(4,5)6/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5F3/c8-7(9,10)6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O7S2/c19-15-8-1-10-9-13(27(23,24)25)6-7-14(10)16(15)18-17-11-2-4-12(5-3-11)26(20,21)22/h1-9,19H,(H,20,21,22)(H,23,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-9(2)5-4-6-10(3)7-8-11/h5,8,10H,4,6-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12Cl3N/c7-1-4-10(5-2-8)6-3-9/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6BrCl/c8-7-3-1-6(5-9)2-4-7/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O/c1-2-3-4-5-6-7-8-10-9-11-10/h10H,2-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c5-4-2-1-3-6-4/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12Cl8O2/c13-1-2(14)6(18)10-9(5(1)17)21-11-7(19)3(15)4(16)8(20)12(11)22-10">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O3/c1-3-8-5(7)4(2)6/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H20/c1-3-5-7-9-8-6-4-2/h3-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H14N2O4/c24-18-9-10-19(25)22(18)16-5-1-14(2-6-16)13-15-3-7-17(8-4-15)23-20(26)11-12-21(23)27/h1-12H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11FO2/c16-12-8-6-11(7-9-12)14-15(18-14)13(17)10-4-2-1-3-5-10/h1-9,14-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-3-9-6-4-8(2)5-7-9/h4-7H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12O2/c1-2-6-8(10-6)4-3-7-5(1)9-7/h5-8H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Br/c1-6-3-2-4-7(8)5-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H17NOS/c1-2-12-9(11)10-7-5-3-4-6-8-10/h2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N/c1-10(2)8-9-6-4-3-5-7-9/h3-7H,8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10/c1-7-4-3-5-8(2)6-7/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15O3P/c1-4-10-16(11-5-1)19-22(20-17-12-6-2-7-13-17)21-18-14-8-3-9-15-18/h1-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2Cl2/c3-1-2-4/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6S2/c1-3-4-2/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2N2/c5-3-1-2-4-6/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2O4S2/c1-14-10(18)12-5-7-3-2-4-8(17)9(7)15(12)11(19)13(14,6-16)21-20-12/h2-4,8-9,16-17H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O4/c7-5(8)3-1-2-4-6(9)10/h1-4H,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16N2O/c1-2-13(16)15-10-8-14(9-11-15)12-6-4-3-5-7-12/h2-7H,1,8-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O2/c1-10-8-4-2-7(6-9)3-5-8/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10Cl2S/c14-11-3-1-10(2-4-11)9-16-13-7-5-12(15)6-8-13/h1-8H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6Cl6/c7-1-2(8)4(10)6(12)5(11)3(1)9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13NO2S/c1-9-11(16-8-7-15-9)12(14)13-10-5-3-2-4-6-10/h2-6H,7-8H2,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17O4PS2/c1-4-16-12(13)11(10-8-6-5-7-9-10)19-17(18,14-2)15-3/h5-9,11H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H21N2O3PS/c1-6-15-18(19,16-7-2)17-11-8-10(5)13-12(14-11)9(3)4/h8-9H,6-7H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11N3O4S2/c1-16-10(13(18)15-9-4-2-3-6-14-9)11(17)12-8(5-7-21-12)22(16,19)20/h2-7,10H,1H3,(H,14,15,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H17O2PS3/c1-4-8-10(11,9-5-2)13-7-12-6-3/h4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O3/c1-2-3-5-10-7-8-11-6-4-9/h9H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O2/c1-10-8-4-2-7(6-9)3-5-8/h2-5,9H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O3/c15-10-5-1-3-8-7-9-4-2-6-11(16)13(9)14(17)12(8)10/h1-7,15-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H18N2O4/c1-7-8(2)11(14(16)17)10(13(4,5)6)12(9(7)3)15(18)19/h1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O2/c1-3-5-6-7-8(9)10-4-2/h3-7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N/c1-6-4-2-3-5-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO/c9-6-8(10)7-4-2-1-3-5-7/h1-5,8,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15NO5S/c1-5(14)7-10(15)13-8(12(16)17)9(19-11(7)13)6-3-2-4-18-6/h5-7,11,14H,2-4H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16O/c1-4-11(2,3)9-5-7-10(12)8-6-9/h5-8,12H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O6/c7-1-3(9)5(11)6(12)4(10)2-8/h3-12H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO/c8-7-3-1-6(5-9)2-4-7/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6ClF5/c7-1-2(8)4(10)6(12)5(11)3(1)9">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO4/c17-13(10-4-2-1-3-5-10)15-14(20-15)11-6-8-12(9-7-11)16(18)19/h1-9,14-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2O/c16-13(14-11-7-3-1-4-8-11)15-12-9-5-2-6-10-12/h1-10H,(H2,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C30H42O2/c1-27(2,3)21-15-19(16-22(25(21)31)28(4,5)6)13-14-20-17-23(29(7,8)9)26(32)24(18-20)30(10,11)12/h13-18H,1-12H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21NO4/c1-3-17(9-14(20)21)16-13(7-8-22-17)12-6-4-5-11(10(2)19)15(12)18-16/h4-6,10,18-19H,3,7-9H2,1-2H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO3/c8-7(9)4-3-6-2-1-5-10-6/h1-3,5H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H24/c1-10(2)13-8-6-12(4)14-7-5-11(3)9-15(13)14/h5-6,10,13-15H,7-9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6BrNO2/c8-5-6-3-1-2-4-7(6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16/c1-7-4-5-8-6-9(7)10(8,2)3/h8-9H,1,4-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5N/c8-6-7-4-2-1-3-5-7/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO5S/c8-7(9)5-3-1-2-4-6(5)13(10,11)12/h1-4H,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H42O4/c1-5-9-13-19(7-3)17-25-21(23)15-11-12-16-22(24)26-18-20(8-4)14-10-6-2/h19-20H,5-18H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO3/c1-7(12)11-9-4-2-8(3-5-9)6-10(13)14/h2-5H,6H2,1H3,(H,11,12)(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20FN3O6S/c1-10-16(31-21(29)30-10)9-23-3-5-24(6-4-23)15-8-14-12(7-13(15)22)18(26)17(20(27)28)19-25(14)11(2)32-19/h7-8,11H,3-6,9H2,1-2H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22O3/c1-2-3-4-5-6-7-12-18-14-10-8-13(9-11-14)15(16)17/h8-11H,2-7,12H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H26N2/c1-24(2)21-14-10-19(11-15-21)23(18-8-6-5-7-9-18)20-12-16-22(17-13-20)25(3)4/h5-17,23H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6N4/c7-1-5(2-8)6(3-9)4-10">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N/c1-6-3-2-4-7-5-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8N2O4/c17-15(18)13-9-5-1-2-6-10(9)14(16(19)20)12-8-4-3-7-11(12)13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O2/c1-2-6-4-3-5/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N4O2/c1-13(23)21(3)17-9-5-15(6-10-17)19-20-16-7-11-18(12-8-16)22(4)14(2)24/h5-12H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H26O2/c1-12(2)10-8-6-5-7-9-11-16-14(15)13(3)4/h12H,3,5-11H2,1-2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO3/c1-3-5(4(2)7)6(8)9/h4,7H,3H2,1-2H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H28O2/c1-3-20-11-9-17-16-8-6-15(22)13-14(16)5-7-18(17)19(20)10-12-21(20,23)4-2/h2,13,16-19,23H,3,5-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO/c12-7-8-5-6-11-10-4-2-1-3-9(8)10/h1-6,12H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-8-3-4-9-7(6-8)2-1-5-10-9/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO2/c1-2-7-13-10(12)8-5-3-4-6-9(8)11/h2-6H,1,7,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N2/c6-5-3-1-2-4-7-5/h1-4H,(H2,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-2-3-4-5/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15NO2/c1-5-8(12)10-9(3,4)6-7(2)11/h5H,1,6H2,2-4H3,(H,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12ClO2PS2/c1-3-7-9(10,8-4-2)11-5-6/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-3-1-2-5(4-10)7(6)9/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H42/c1-3-5-7-9-11-13-15-17-19-20-18-16-14-12-10-8-6-4-2/h3-20H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H32O2/c1-17(9-7-10-18(2)14-16-24-20(4)23)12-13-21-19(3)11-8-15-22(21,5)6/h7,9-10,12-14H,8,11,15-16H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H26O4/c1-11(2)9-17-13(15)7-5-6-8-14(16)18-10-12(3)4/h11-12H,5-10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO2/c8-6-3-1-5(2-4-6)7(9)10/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H22N2/c1-9(2,11)8-4-6-10(3,12)7-5-8/h8H,4-7,11-12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H46O4/c1-3-5-7-9-11-13-15-17-19-21-23(25)27-28-24(26)22-20-18-16-14-12-10-8-6-4-2/h3-22H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O7S2/c1-10-7-11(2)16(28(22,23)24)8-14(10)19-20-15-9-17(29(25,26)27)12-5-3-4-6-13(12)18(15)21/h3-9,21H,1-2H3,(H,22,23,24)(H,25,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16N2O2/c1-9(16)14-6-5-10-8-15-13-4-3-11(17-2)7-12(10)13/h3-4,7-8,15H,5-6H2,1-2H3,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16ClN5/c1-5(2)11-8-13-7(10)14-9(15-8)12-6(3)4/h5-6H,1-4H3,(H2,11,12,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16O2/c1-10(2)9-14-12(13)8-11-6-4-3-5-7-11/h3-7,10H,8-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-6(2)7(9)10-8(3,4)5/h1H2,2-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O2/c1-6(8)5-7(2,3)9-4/h5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O/c1-8-11(9-2-4-14-5-3-9)6-10(7-13)12(16)15-8/h2-6H,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14BrCl2O4P/c1-3-17-20(16,18-4-2)19-12(8-13)10-6-5-9(14)7-11(10)15/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O2/c1-11(10-12)7-8-3-5-9(13-2)6-4-8/h3-6H,7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H21O2PS3/c1-6-10-12(13,11-7-2)15-8-14-9(3,4)5/h6-8H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9F/c13-12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7Cl/c11-10-6-5-8-3-1-2-4-9(8)7-10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO2S/c6-4(7)3-1-8-2-5-3/h3,5H,1-2H2,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NOS/c9-7-5-3-1-2-4-6(5)10-8-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c8-6-2-1-3-7(9(11)12)5(6)4-10/h1-3,10H,4,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4N2/c9-5-7-2-1-3-8(4-7)6-10/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19N5O3S/c1-2-22-11(21)7-15-10(20)5-3-4-6-23-14-12-13(17-8-16-12)18-9-19-14/h8-9H,2-7H2,1H3,(H,15,20)(H,16,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18O4/c1-3-17-10-11-18-14(15)9-6-12-4-7-13(16-2)8-5-12/h4-9H,3,10-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H22/c1-3-5-7-9-11-10-8-6-4-2/h3H,1,4-11H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O2/c1-5(7)4-6(2,3)8/h8H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8ClN5/c1-2-8-5-10-3(6)9-4(7)11-5/h2H2,1H3,(H3,7,8,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-9(2)5-4-6-10(3)7-8-11/h5,7,11H,4,6,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H50O4/c1-5-9-17-23(7-3)21-29-25(27)19-15-13-11-12-14-16-20-26(28)30-22-24(8-4)18-10-6-2/h23-24H,5-22H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O/c1-7-2-4-8(6-9)5-3-7/h2-5,9H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O/c1-5-6(2,3)7-4/h5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2/c7-5-3-1-2-4-6(5)8/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO/c1-2-10-8-6-4-3-5-7(8)9/h3-6H,2,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O/c18-10-11-8-12-4-3-7-15-13-5-1-2-6-14(13)16(9-11)17(12)15/h1-9,18H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13BrN2O5/c12-2-1-6-4-14(11(18)13-10(6)17)9-3-7(16)8(5-15)19-9/h1-2,4,7-9,15-16H,3,5H2,(H,13,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9BrO4/c1-7(14)16-9-2-3-10-8(6-13)4-12(15)17-11(10)5-9/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20N2O/c1-3-18(15-11-7-5-8-12-15)17(20)19(4-2)16-13-9-6-10-14-16/h5-14H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO/c1-7(10)9-8-5-3-2-4-6-8/h2-6H,1H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21O4P/c1-16-7-4-10-19(13-16)23-26(22,24-20-11-5-8-17(2)14-20)25-21-12-6-9-18(3)15-21/h4-15H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H29N3O4/c1-6-19-17(24)21-13-7-8-16(15(9-13)12(2)22)25-11-14(23)10-20-18(3,4)5/h7-9,14,20,23H,6,10-11H2,1-5H3,(H2,19,21,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18O7/c1-4-11(16)19-8-14(7-15,9-20-12(17)5-2)10-21-13(18)6-3/h4-6,15H,1-3,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4/c7-3-1-4(8)6(10)5(9)2-3/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-14(4-7-21(27)28)17-5-6-18-22-19(9-11-24(17,18)3)23(2)10-8-16(25)12-15(23)13-20(22)26/h14-19,22,25H,4-13H2,1-3H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O2/c1-4-5-6-7-8-12-10(11)9(2)3/h2,4-8H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8ClNO2/c11-7-1-3-8(4-2-7)12-9(13)5-6-10(12)14/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c8-6-4(7(10)11)2-1-3-5(6)9/h1-3,9H,8H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H27O4P/c1-4-7-10-14-17(13,15-11-8-5-2)16-12-9-6-3/h4-12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N/c1-13-9-7-12(8-10-13)11-5-3-2-4-6-11/h2-10H,1H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8Cl2O3/c1-5(9(12)13)14-8-3-2-6(10)4-7(8)11/h2-5H,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H11NO3/c15-14(16)12-8-6-11(7-9-12)10-17-13-4-2-1-3-5-13/h1-9H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O3/c1-10-7-4-5(8)2-3-6(7)9/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H14N2/c1-7(2)5-3-4-6/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O/c9-8-5-6-1-3-7-4-2-6/h1-5,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO4/c10-8(11)5-6-2-1-3-7(4-6)9(12)13/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O/c1-9(2)8-5-6-10(9,3)11(4,12)7-8/h8,12H,5-7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15N/c1-4-10-16(11-5-1)19(17-12-6-2-7-13-17)18-14-8-3-9-15-18/h1-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7Br2Cl/c1-4(6,2-5)3-7/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16O2/c1-11(2,3)9-7-8(13-4)5-6-10(9)12/h5-7,12H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H23N/c1-3-5-7-9-11-10-8-6-4-2/h11H,3-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2O4/c5-1-2(6)4(8)3(1)7/h1,5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7F3O/c9-8(10,11)7-3-1-6(5-12)2-4-7/h1-4,12H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14N2O4S/c23-18-12-10-13-5-1-3-7-15(13)19(18)22-21-17-11-9-14-6-2-4-8-16(14)20(17)27(24,25)26/h1-12,23H,(H,24,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O3/c1-2-7-3-4(5)6/h2-3H2,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H16/c1-2-17-18-9-5-4-8-15(18)13-16-12-11-14-7-3-6-10-19(14)20(16)17/h3-13H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8/c1-4(2)3/h1H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-6-4(7(10)11)2-1-3-5(6)8(12)13/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H17ClO6/c1-8-5-9(19)6-12(23-4)17(8)16(20)13-10(21-2)7-11(22-3)14(18)15(13)24-17/h6-8H,5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH3NO2/c1-2(3)4/h1H2,(H,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H19N/c1-4-7-8-9(5-2)6-3/h4-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N3O5/c12-9(11(16)17)5-6-10(15)13-7-1-3-8(4-2-7)14(18)19/h1-4,9H,5-6,12H2,(H,13,15)(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14NO4P/c1-9-12(8,10-2)7-3-5-11-6-4-7/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O5/c1-4-6(9(13)14)2-5(8(11)12)3-7(4)10/h2-3,10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N/c1-2-4-8-7(3-1)5-6-9-8/h1-6,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H20O4/c1-2-3-13-22-18(20)16-11-7-8-12-17(16)19(21)23-14-15-9-5-4-6-10-15/h4-12H,2-3,13-14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClF3/c8-6-3-1-2-5(4-6)7(9,10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H10O6/c18-8-2-1-3-9-13(8)16(20)14-11(22-9)6-10-12(15(14)19)7-4-5-21-17(7)23-10/h1-7,17-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N/c1-5(2)4-6(3)7/h5-6H,4,7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H13NO3/c1-5(9)3-8-4-6(2)11-7(8)10/h5-6,9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO3S/c1-5-2-3-6(8)7(4-5)12(9,10)11/h2-4H,8H2,1H3,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10BrNO/c1-7-2-4-8(5-3-7)11-9(12)6-10/h2-5H,6H2,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2/c1-2-4-7-6(3-1)8-5-9-7/h1-5H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18O2/c1-3-5-6-7-8-9(10)11-4-2/h3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8N2/c1-3-9-5-6-10-4-2-8-14-12(10)11(9)13-7-1/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N2O2/c1-12(20)18-16-7-3-14(4-8-16)11-15-5-9-17(10-6-15)19-13(2)21/h3-10H,11H2,1-2H3,(H,18,20)(H,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N/c1-7-3-2-4-8(5-7)6-9/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2/c13-14(11-7-3-1-4-8-11)12-9-5-2-6-10-12/h1-10H,13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H17NO/c1-18(2)16-11-8-14(9-12-16)10-13-17(19)15-6-4-3-5-7-15/h3-13H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9NO/c1-2-7-5-3-4-6(7)8/h2H,1,3-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H31O4P/c1-20(2)14-8-4-3-5-13-19-24-27(23,25-21-15-9-6-10-16-21)26-22-17-11-7-12-18-22/h6-7,9-12,15-18,20H,3-5,8,13-14,19H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16/c1-9-5-7-10(8-6-9)11(2,3)4/h5-8H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15N5/c17-15(18)10-3-1-9(2-4-10)13-7-11-5-6-12(16(19)20)8-14(11)21-13/h1-8,21H,(H3,17,18)(H3,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22O4/c1-3-5-8-12(4-2)11-20-16(19)14-10-7-6-9-13(14)15(17)18/h6-7,9-10,12H,3-5,8,11H2,1-2H3,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H33N3O4/c1-7-23(8-2)19(26)22-15-9-10-18(17(11-15)14(3)24)27-13-16(25)12-21-20(4,5)6/h9-11,16,21,25H,7-8,12-13H2,1-6H3,(H,22,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H26/c1-3-5-7-9-11-13-12-10-8-6-4-2/h3H,1,4-13H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H12N2S/c16-13(14-11-7-3-1-4-8-11)15-12-9-5-2-6-10-12/h1-10H,(H2,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O2/c1-2-21-18-11-16-14(9-10-17(16)20)15-8-7-12-5-3-4-6-13(12)19(15)18/h3-8,11H,2,9-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H30/c1-3-5-7-9-11-13-15-14-12-10-8-6-4-2/h3H,1,4-15H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6O4/c9-7(10)5-3-1-2-4-6(5)8(11)12/h1-4H,(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O3/c1-6(11)9-7-2-4-8(5-3-7)10(12)13/h2-5H,1H3,(H,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H22N6OP/c1-15(2)20(16(3)4,17(5)6)19-18-12-10-8-7-9-11(12)13-14-18/h7-10H,1-6H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5N/c1-4(2)3-5/h1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13NO2S/c1-2-10-4-3-5(7)6(8)9/h5H,2-4,7H2,1H3,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2O3/c1-8(2)7-5(9)3-4-6(10)11/h3-4H2,1-2H3,(H,7,9)(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NOS/c1-5(2,8-3)4-6-7/h4,7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H25N3O4/c1-21-20(25)15-5-4-6-16(12-15)23-13-19(24)22-10-9-14-7-8-17(26-2)18(11-14)27-3/h4-8,11-12,23H,9-10,13H2,1-3H3,(H,21,25)(H,22,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4O3/c6-5(7)4-2-1-3-8-4/h1-3H,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8Cl2N2O2/c9-5-6(10)8(14)4(2-12)3(1-11)7(5)13">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N/c1-7-4-2-3-5-8(7)6-9/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12N2S/c1-6(2)5(8)7(3)4/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3ClO2/c7-5-3-4(8)1-2-6(5)9/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H24O/c1-2-3-4-5-6-7-8-9-14-10-12-15(16)13-11-14/h10-13,16H,2-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H17Cl3N2O2/c1-14(25-9-8-24-13-25)20(18-7-4-16(22)12-19(18)23)27-11-10-26-17-5-2-15(21)3-6-17/h2-9,12-13H,10-11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-5-4-8-6(2)7(3)9-5/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClNO/c7-5-1-3-6(8-9)4-2-5/h1-4,8-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16N4O2/c1-11(19-15(21)13-5-3-7-17-10-13)8-18-14(20)12-4-2-6-16-9-12/h2-7,9-11H,8H2,1H3,(H,18,20)(H,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7ClO2/c1-2-7-4(6)3-5/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O/c7-4-1-2-5(8)6(9)3-4/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H40O3/c1-17(6-13-25(29)20-8-9-20)23-11-12-24-19(5-4-14-27(23,24)3)7-10-21-15-22(28)16-26(30)18(21)2/h6-7,10,13,17,20,22-26,28-30H,2,4-5,8-9,11-12,14-16H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c1-5-6(2)8-4-3-7-5/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H20O2/c1-6-14-11(13)10-9(7-8(2)3)12(10,4)5/h7,9-10H,6H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11ClN2O2/c16-10-6-7-12-11(8-10)13(9-4-2-1-3-5-9)18-15(20)14(19)17-12/h1-8,15,20H,(H,17,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7NO3S/c3-1-2-7(4,5)6/h1-3H2,(H,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H24N6O/c1-30-10-12-31(13-11-30)18-5-9-21-23(15-18)29-25(27-21)17-4-8-20-22(14-17)28-24(26-20)16-2-6-19(32)7-3-16/h2-9,14-15,32H,10-13H2,1H3,(H,26,28)(H,27,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO3/c1-3(2-5)4(6)7/h5H,2H2,1H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H22N2O2/c1-12(2)19-10-13(21)11-22-17-9-5-8-16-18(17)14-6-3-4-7-15(14)20-16/h3-9,12-13,19-21H,10-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O3/c1-2-5(7)8-4-3-6/h2,6H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H19NO2/c1-8(2,3)9(4-6-10)5-7-11/h10-11H,4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H19N5/c1-3-14(19-21-7-8-22-19)4-2-13(1)17-11-15-5-6-16(12-18(15)25-17)20-23-9-10-24-20/h1-6,11-12,25H,7-10H2,(H,21,22)(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O/c1-2-3-4-5/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18N2O2/c1-10-5-3-6-11(2)14(10)15-12(17)9-16-8-4-7-13(16)18/h3,5-6H,4,7-9H2,1-2H3,(H,15,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H34N2O3/c1-2-3-8-16-26-19-11-9-10-18(17-19)23-22(25)27-21-13-5-4-12-20(21)24-14-6-7-15-24/h9-11,17,20-21H,2-8,12-16H2,1H3,(H,23,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO/c1-7-4-3-5-9(6-7)10-8(2)11/h3-6H,1-2H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2O/c10-7-5-3-1-2-4-6(5)8-9-7/h1-4H,(H2,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14F3NO2/c1-3-18(4-2)9-5-6-10-11(14(15,16)17)8-13(19)20-12(10)7-9/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20N2O4S/c1-22-8-7-12(16-10-18)14(19)17-13(15(20)21)9-11-5-3-2-4-6-11/h2-6,10,12-13H,7-9H2,1H3,(H,16,18)(H,17,19)(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H39NO3/c1-28-18-25(19-5-8-21(9-6-19)30(2)3)27-23-12-10-22(32)17-20(23)7-11-24(27)26(28)13-15-29(28,33)14-4-16-31/h5-9,24-26,31,33H,4,10-18H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9N3O2S/c17-16(18)13-7-5-12(6-8-13)15-11-3-1-10(2-4-11)14-9-19/h1-8,15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H32O2/c1-14-9-16(20(24)18(11-14)22(3,4)5)13-17-10-15(2)12-19(21(17)25)23(6,7)8/h9-12,24-25H,13H2,1-8H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H24N6O4S/c1-9-15(25)22-12(7-28-9)16(26)21-11(5-10-6-19-8-20-10)17(27)23-4-2-3-13(23)14(18)24/h6,8-9,11-13H,2-5,7H2,1H3,(H2,18,24)(H,19,20)(H,21,26)(H,22,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O3/c1-11(19)17-13-3-7-15(8-4-13)21-16-9-5-14(6-10-16)18-12(2)20/h3-10H,1-2H3,(H,17,19)(H,18,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11BrN2O2/c1-12(14-2)9(13)11-8-5-3-7(10)4-6-8/h3-6H,1-2H3,(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O6/c1-10(17)21-14-9-5-3-7-12(14)16(20)22-13-8-4-2-6-11(13)15(18)19/h2-9H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H27O4P/c1-16-7-10-22(19(4)13-16)26-29(25,27-23-11-8-17(2)14-20(23)5)28-24-12-9-18(3)15-21(24)6/h7-15H,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10N2O3/c7-5(10)3-8-2-4(9)1-6(8)11/h4,9H,1-3H2,(H2,7,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NS/c1-2(3)4/h1H3,(H2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2/c1-2-6-5-7-3-4-8-6/h3-5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H13NO3S2/c1-7(2,13)6(11)8-4(3-12)5(9)10/h4,12-13H,3H2,1-2H3,(H,8,11)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H16N2/c15-16(11-13-7-3-1-4-8-13)12-14-9-5-2-6-10-14/h1-10H,11-12,15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7N5O3/c15-8(9(16)17)10-6-3-1-2-5(4-6)7-11-13-14-12-7/h1-4H,(H,10,15)(H,16,17)(H,11,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H15N3O6/c13-4-1-10-7(16)11(2-5-14)9(18)12(3-6-15)8(10)17/h13-15H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16/c1-8(2)10-6-4-9(3)5-7-10/h4,10H,1,5-7H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6Cl5NO2/c7-1-2(8)4(10)6(12(13)14)5(11)3(1)9">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO/c8-7-3-1-2-6(4-7)5-9/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO3S/c7-5-2-1-3-6(4-5)11(8,9)10/h1-4H,7H2,(H,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12/c1-3-7-13(8-4-1)11-12-14-9-5-2-6-10-14/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4O3/c9-7-5-3-1-2-4-6(5)8(10)11-7/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-11-8(10)6-4-2-3-5-7(6)9/h2-5H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O4S/c12-7-2-1-5(10-7)8(13)11-4-16-3-6(11)9(14)15/h5-6H,1-4H2,(H,10,12)(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11N3OS/c1-11-9(14)13(2)10-12-7-5-3-4-6-8(7)15-10/h3-6H,1-2H3,(H,11,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H24O4/c1-2-3-13-21-17(19)15-11-7-8-12-16(15)18(20)22-14-9-5-4-6-10-14/h7-8,11-12,14H,2-6,9-10,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O2/c1-5-3-2-4/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H28O/c1-2-3-4-5-6-7-8-9-10-11-12-14-13-15-14/h14H,2-13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8N2O/c1-4-3(6)5-2/h1-2H3,(H2,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H15NO2/c1-16-13-7-3-11(4-8-13)15-12-5-9-14(17-2)10-6-12/h3-10,15H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H11NO2/c20-19(21)18-15-8-4-2-6-13(15)11-17-14-7-3-1-5-12(14)9-10-16(17)18/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O3/c1-2-3-4-9-5-6(7)8/h2-5H2,1H3,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN/c7-5-3-1-2-4-6(5)8/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12N2/c1-7-4-2-6-3-5-7/h6H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O3/c1-4(6)3-5(7)8-2/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HBrClF3/c3-1(4)2(5,6)7/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14/c1-5-6(2,3)4/h5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H16O/c22-21(16-11-17-7-3-1-4-8-17)20-14-12-19(13-15-20)18-9-5-2-6-10-18/h1-16H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O2/c1-4(2)7-5(3)6/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H23NO3/c1-21(2)19(22(21,3)4)20(24)26-18(14-23)15-9-8-12-17(13-15)25-16-10-6-5-7-11-16/h5-13,18-19H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H24O/c1-11(18)14-9-12(16(2,3)4)10-15-13(14)7-8-17(15,5)6/h9-10H,7-8H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N4O9S2/c17-11-3-1-8-5-10(30(24,25)26)7-13(21)15(8)16(11)19-18-12-4-2-9(20(22)23)6-14(12)31(27,28)29/h1-7,21H,17H2,(H,24,25,26)(H,27,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N2/c1-2-6-4-3-5-1/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4F3NO2/c8-7(9,10)5-2-1-3-6(4-5)11(12)13/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H21NO3/c1-19-8-7-18-11-4-5-13(20)17(18)22-16-14(21-2)6-3-10(15(16)18)9-12(11)19/h3-6,11-13,17,20H,7-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6S/c1-5-3-2-4-6-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18O3/c1-8-4-5-10-9(2)14(17)18-13(10)15(3)11(8)6-7-12(15)16/h6,8,10,13H,2,4-5,7H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO3/c8-6-4-2-1-3-5(6)7(9)10/h1-4,8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl3N/c7-4-1-3(10)2-5(8)6(4)9/h1-2H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13N/c1-2-9-14(10-3-1)17-16-12-6-8-13-7-4-5-11-15(13)16/h1-12,17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO3/c14-12-7-6-10(8-11(12)13(15)16)9-4-2-1-3-5-9/h1-8,14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N4O2/c3-1(7)5-6-2(4)8/h(H3,3,5,7)(H3,4,6,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3ClF3NO2/c8-5-2-1-4(7(9,10)11)3-6(5)12(13)14/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19N3/c1-3-19(4-2)16-12-10-15(11-13-16)18-17-14-8-6-5-7-9-14/h5-13H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH3NO/c1-2-3/h3H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-9-5-6-10-8-4-2-1-3-7(8)9/h1-6H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N3/c7-1-4-9-5-2-8-3-6-9/h8H,1-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8O/c14-13-11-7-3-1-5-9(11)10-6-2-4-8-12(10)13/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16O4/c1-5-9(12)14-7-11(3,4)8-15-10(13)6-2/h5-6H,1-2,7-8H2,3-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12BrNO/c1-10(2,11)9(13)12-8-6-4-3-5-7-8/h3-7H,1-2H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22O3/c1-20(2,19(21)22)23-16-12-10-15(11-13-16)18-9-5-7-14-6-3-4-8-17(14)18/h3-4,6,8,10-13,18H,5,7,9H2,1-2H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H25NO2/c1-11(2)13-9-8-12(3)10-16(13)20-17(19)14-6-4-5-7-15(14)18/h4-7,11-13,16H,8-10,18H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8Br3NO2/c14-7-1-3-9(4-2-7)17-13(19)10-5-8(15)6-11(16)12(10)18/h1-6,18H,(H,17,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15P/c1-4-10-16(11-5-1)19(17-12-6-2-7-13-17)18-14-8-3-9-15-18/h1-15H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13N3O2S/c1-20-15(19)18-14-16-12-8-7-11(9-13(12)17-14)21-10-5-3-2-4-6-10/h2-9H,1H3,(H2,16,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O/c15-13-14(11-7-3-1-4-8-11)12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H18N2O2/c16-12-10-7-4-8-11(10)14-13(17)15(12)9-5-2-1-3-6-9/h9H,1-8H2,(H,14,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15NO2/c17-15-11-5-4-10-14(15)16(18)19-12-6-9-13-7-2-1-3-8-13/h1-11H,12,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8OS/c1-3-6-4-2-5-1/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O/c16-15(14-9-5-2-6-10-14)12-11-13-7-3-1-4-8-13/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H14O6/c1-9-5-12-19(16(25)6-9)17(26)8-13(21(12)27)18-10(2)7-11-14(23)3-4-15(24)20(11)22(18)28/h3-8,25,28H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10N2O/c1-8-7-10(13)12(11-8)9-5-3-2-4-6-9/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6F3N/c8-7(9,10)5-2-1-3-6(11)4-5/h1-4H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N4O3/c15-14(19)12-4-7-17(8-5-12)10-21-11-18-6-2-1-3-13(18)9-16-20/h1-9H,10-11H2,(H-,15,19)/p+2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7N/c1-2-3-4/h2H,1,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Cl3NO3PS/c1-12-15(16,13-2)14-7-5(9)3-4(8)6(10)11-7/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H26O/c1-11-14-10-16-15(9-13(14)7-8-19-11)17(3,4)12(2)18(16,5)6/h9-12H,7-8H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2O3S/c7-4-1-2-5(8)6(3-4)12(9,10)11/h1-3H,7-8H2,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O/c1-2-7-5-3-4-6-8(7)9/h3-6,9H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16O2/c1-3-5-6-7-9(10)11-8-4-2/h4H,2-3,5-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H12N4O5/c1-9-3-5-11(7-13(9)17(20)21)15-16(19)12-6-4-10(2)14(8-12)18(22)23/h3-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O2/c9-10-7(11)5-3-1-2-4-6(5)8(10)12/h1-4H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO/c1-6(9)7-4-2-3-5-8-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O6/c1-21-11-7-12-13(8-5-6-22-18(8)24-12)17-15(11)16(20)14-9(19)3-2-4-10(14)23-17/h2-4,7-8,18-19H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H20ClNO2/c1-4-12-8-6-7-11(3)14(12)16(10-18-5-2)13(17)9-15/h6-8H,4-5,9-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H5NO/c1-2(3)4/h1H3,(H2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO3/c9-6-1-3-7(4-2-6)12-5-8(10)11/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl2N/c7-5-2-1-4(9)3-6(5)8/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4ClN/c6-5-2-1-3-7-4-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4N2O2/c6-2-1-4-3(7)5-2/h1H2,(H2,4,5,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O2/c1-3-5-8(10)7(4-2)6-9/h7-10H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H24N2O3/c1-10(18)13-7-11(16)5-6-14(13)20-9-12(19)8-17-15(2,3)4/h5-7,12,17,19H,8-9,16H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H11NO/c8-6-7(9)4-2-1-3-5-7/h9H,1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O2/c15-13(11-7-3-1-4-8-11)14(16)12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H22O7/c1-3-13(15)20-11-9-18-7-5-17-6-8-19-10-12-21-14(16)4-2/h3-4H,1-2,5-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-4(2)3-5/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NO2/c14-13(15)12-9-5-4-8-11(12)10-6-2-1-3-7-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7ClOS/c1-10(9)7-4-2-6(8)3-5-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N3O5/c10-8-5(15)2-12(9(16)11-8)7-1-4(14)6(3-13)17-7/h4,6-7,13-14H,1-3H2,(H2,10,11,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HCl3O2/c3-2(4,5)1(6)7/h(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-2-7-5-3-4-6-8(7)9(10)11/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15N5/c11-9(12)15-10(13)14-7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H6,11,12,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N/c1-9-8-12(2,3)13-11-7-5-4-6-10(9)11/h4-8,13H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12NO4PS2/c1-10-12(13,11-2)14-5-6(9)7-3-4-8/h4H,3,5H2,1-2H3,(H,7,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12Cl2O3/c1-7(2)16-11(14)6-15-10-4-3-8(12)5-9(10)13/h3-5,7H,6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H26FNO4/c1-15(2)26-21-6-4-3-5-20(21)24(16-7-9-17(25)10-8-16)22(26)12-11-18(27)13-19(28)14-23(29)30/h3-12,15,18-19,27-28H,13-14H2,1-2H3,(H,29,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O/c1-5-7-6(2,3)4/h5H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H28/c1-3-5-7-9-11-13-14-12-10-8-6-4-2/h3H,1,4-14H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H22/c1-3-5-7-9-10-8-6-4-2/h3-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O5/c1-2-12-5-6-14-9-10-15-8-7-13-4-3-11-1/h1-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13N/c1-8-11(2,3)9-6-4-5-7-10(9)12-8/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O2/c1-2-3-4-5-6-7-8-9-10(11)12/h2-9H2,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O/c1-2-3-4/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H26O3/c1-2-3-4-5-6-7-8-9-10-11-12-14-13-15(17)19-16(14)18/h10-11,14H,2-9,12-13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H22O6/c1-11(2)16-8-14-15(28-16)6-5-12-22(24)21-13-7-18(25-3)19(26-4)9-17(13)27-10-20(21)29-23(12)14/h5-7,9,16,20-21H,1,8,10H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H14O3/c1-11(2,3)8-5-7(14-4)6-9(12)10(8)13/h5-6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H28N2O4/c1-16(22)25-15-19(23)20-9-6-12-24-18-8-5-7-17(13-18)14-21-10-3-2-4-11-21/h5,7-8,13H,2-4,6,9-12,14-15H2,1H3,(H,20,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Br/c1-6-4-2-3-5-7(6)8/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O/c1-12(13)7-3-5-10(12)9-4-2-6-11-8-9/h2,4,6,8,10H,3,5,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H20N4O3S/c1-11(2)18-16(21)20-24(22,23)15-10-17-8-7-14(15)19-13-6-4-5-12(3)9-13/h4-11H,1-3H3,(H,17,19)(H2,18,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H30N2O3/c1-6-29-23-15-25-21(13-17(23)4)27(19-11-9-10-12-20(19)28(31)32-8-3)22-14-18(5)24(30-7-2)16-26(22)33-25/h9-16,29H,6-8H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H14N2O2S2/c31-23-18-12-14-20-26(34-28(30-20)16-9-5-2-6-10-16)22(18)24(32)17-11-13-19-25(21(17)23)33-27(29-19)15-7-3-1-4-8-15/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O3/c1-9-8-13-15(18-19(22-18)17(21)16(13)20)12-7-6-10-4-2-3-5-11(10)14(9)12/h2-8,16-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14N2O2/c1-5(2)3-6-8(12)9-4-7(11)10-6/h5-6H,3-4H2,1-2H3,(H,9,12)(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-8-5-7-3-1-2-4-9(7)10-6-8/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H32N2O5/c1-3-33-26(32)23(14-13-19-9-5-4-6-10-19)27-18(2)25(31)28(17-24(29)30)22-15-20-11-7-8-12-21(20)16-22/h4-12,18,22-23,27H,3,13-17H2,1-2H3,(H,29,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H23NO/c1-3-5-7-11(9-10-12)8-6-4-2/h12H,3-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3Cl3N6/c4-10-1-7-2(11-5)9-3(8-1)12-6/h(H3,7,8,9,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22FN3O3/c1-10-8-22(6-5-21-10)15-7-14-16(11(2)17(15)20)18(24)13(19(25)26)9-23(14)12-3-4-12/h7,9-10,12,21H,3-6,8H2,1-2H3,(H,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O3/c4-1-3(6)2-5/h3-6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO/c1-9-8(10)7-5-3-2-4-6-7/h2-6H,1H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11N/c1-2-7-5-3-4-6-8(7)9/h3-6H,2,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H4O5/c10-7(11)4-1-2-5-6(3-4)9(13)14-8(5)12/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H24N2/c1-14(2)13-15(3)19-17-9-11-18(12-10-17)20-16-7-5-4-6-8-16/h4-12,14-15,19-20H,13H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H6O3/c12-11-2-1-7-5-8-3-4-13-9(8)6-10(7)14-11/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl2N/c7-4-1-2-5(8)6(9)3-4/h1-3H,9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H20O4/c1-3-5-9-15-11(13)7-8-12(14)16-10-6-4-2/h7-8H,3-6,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H8N2/c1-3-4-2/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8O2/c13-10-6-7-12(14)11(8-10)9-4-2-1-3-5-9/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H10N2/c1-3(5)2-4/h3H,2,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11NO/c1-2-13-10-7-3-5-9-6-4-8-12-11(9)10/h3-8H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO/c1-10-6-2-3-7-11(10)14-15-12-8-4-5-9-13(12)16-14/h2-9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4N2S/c2-1(3)4/h(H4,2,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Br2/c9-5-7-1-2-8(6-10)4-3-7/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2O5/c4-1(2(5)6)3(7)8/h(H,5,6)(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H8O7/c16-6-3-8-12(10(18)4-6)14(20)11-7(13(8)19)1-5(15(21)22)2-9(11)17/h1-4,16-18H,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClN/c7-5-6-1-3-8-4-2-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15N/c1-9(11(2)3)10-7-5-4-6-8-10/h4-9H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15FN2O4/c1-7-6-23-14-11(16(18)2-3-16)10(17)4-8-12(14)19(7)5-9(13(8)20)15(21)22/h4-5,7H,2-3,6,18H2,1H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N2O2/c15-14(16)12-8-6-11(7-9-12)13-10-4-2-1-3-5-10/h1-9,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10O4/c15-13(11-7-3-1-4-8-11)17-18-14(16)12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H21NO/c1-4-11-7-6-8-12-13-9-10-18-16(3,5-2)15(13)17-14(11)12/h6-8,17H,4-5,9-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O3/c1-9(14(15)16)10-3-4-12-8-13(17-2)6-5-11(12)7-10/h3-9H,1-2H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O/c1-12-9(4-5-10(12)13)8-3-2-6-11-7-8/h2-3,6-7,9H,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-2-3-4-5-6-7-8-9-10-11/h6-10H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O7/c1-22-11-4-7(2-3-9(11)18)16-15(21)14(20)13-10(19)5-8(17)6-12(13)23-16/h2-6,16-19H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12O/c1-5(2,3)6-4/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O2/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O2/c1-2-3-4-5-6(7)8/h2-5H,1H3,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2O2S/c1-3-12(4-2)15(13,14)10-7-5-9(11)6-8-10/h5-8H,3-4,11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO2/c1-2-4(7)5-3-6/h2,6H,1,3H2,(H,5,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-9(2)5-4-6-10(3)7-8-11/h5,7-8H,4,6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2/c1-7-6-10-8-4-2-3-5-9(8)11-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O3/c1-7(10)2-3-9(11)8-4-5-12-6-8/h4-7,10H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO/c1-4(6)5(2)3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO/c1-6-2-4-7-5-3-6/h2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c1-4(2)7-5(3)6/h1H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O3/c1-3-9-6(8)4-5(2)7/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO5S/c8-7(9)5-2-1-3-6(4-5)13(10,11)12/h1-4H,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H15NO3S2/c1-8(2,14-3)7(12)9-5(4-13)6(10)11/h5,13H,4H2,1-3H3,(H,9,12)(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H5Cl3N4/c10-5-3-1-2-4-6(5)13-9-15-7(11)14-8(12)16-9/h1-4H,(H,13,14,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20FN3O4/c1-10-9-26-17-14-11(16(23)12(18(24)25)8-22(10)14)7-13(19)15(17)21-5-3-20(2)4-6-21/h7-8,10H,3-6,9H2,1-2H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO3/c1-12-9(11)7(6-10)5-8-3-2-4-13-8/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8/c1-4-5(2)3/h4H,1-2H2,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6/c1-2-4-6-5-3-1/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H25NO/c1-3-5-7-11(4-2)10-13-9-6-8-12/h11H,3-10,12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6BrNO2/c8-5-6-2-1-3-7(4-6)9(10)11/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13ClN2/c1-8-6-9(11)4-5-10(8)12-7-13(2)3/h4-7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H20N2O7/c1-10(22)9-28-19(24)16-12(3)20-11(2)15(18(23)27-4)17(16)13-7-5-6-8-14(13)21(25)26/h5-8,17,20H,9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H23NO3/c18-11-13-3-8-15(9-4-13)17(21)14-6-1-12(2-7-14)5-10-16(19)20/h1-2,6-7,13,15H,3-5,8-11,18H2,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H30N2O5/c1-6-23-17(22)14-13(24-14)16(21)19-12(9-11(4)5)15(20)18-8-7-10(2)3/h10-14H,6-9H2,1-5H3,(H,18,20)(H,19,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O4/c1-5-2-9(13)14-8-4-6(11)3-7(12)10(5)8/h2-4,11-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17N3/c1-12-6-4-5-7-15(12)17-16-13-8-10-14(11-9-13)18(2)3/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO5/c1-11(19)18-13-7-9-14(10-8-13)23-17(21)15-5-3-4-6-16(15)22-12(2)20/h3-10H,1-2H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O/c1-2-4-7(5-3-1)6-8-7/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2S/c1-2-3-6-4(5)7/h2H,1,3H2,(H3,5,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H40O4/c1-14(4-9-22(27)28)18-7-8-19-17-6-5-15-12-16(25)10-11-23(15,2)20(17)13-21(26)24(18,19)3/h14-21,25-26H,4-13H2,1-3H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H13N3O3S/c1-10(17)15-11-5-7-12(8-6-11)20(18,19)16-13-4-2-3-9-14-13/h2-9H,1H3,(H,14,16)(H,15,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H34O5/c1-3-4-9-13-21(2,26)14-12-17-16(18(22)15-19(17)23)10-7-5-6-8-11-20(24)25/h5,7,12,14,16-17,19,23,26H,3-4,6,8-11,13,15H2,1-2H3,(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10/c1-8(2)9-6-4-3-5-7-9/h3-7H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O2/c8-5-1-3-7-4-2-6-9-7/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H36O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18(19)20/h2-17H2,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H35N/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17/h2-17H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12ClN5/c1-3-9-6-11-5(8)12-7(13-6)10-4-2/h3-4H2,1-2H3,(H2,9,10,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O3PS/c1-4-7(8,5-2)6-3/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6HCl5/c7-2-1-3(8)5(10)6(11)4(2)9/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-2-3-4-5(6)7/h4H,2-3H2,1H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9N/c1-8-7-5-3-2-4-6-7/h2-6,8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4O2/c1-2-3(4)5/h2H,1H2,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H39N/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-19/h2-19H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9BrO3/c1-14-8-2-3-9-7(6-12)4-11(13)15-10(9)5-8/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5N/c1-2-3-4/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-2-8-5-7-3-4-9(8)6-7/h2-4,7,9H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14/c1-5(2)6(3)4/h5-6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O3/c1-6-2-3(4)5/h2H2,1H3,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-9-8(11)10-7-5-3-2-4-6-7/h2-6H,1H3,(H2,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8OS/c1-3-7-11-9(5-1)13-10-6-2-4-8-12(10)14-11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O4/c1-3-7(9)11-5-6-12-8(10)4-2/h3-4H,1-2,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H19NO2S/c1-11-7-9-13(10-8-11)17(15,16)14-12-5-3-2-4-6-12/h7-10,12,14H,2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H24N2/c1-5-11(3)15-13-7-9-14(10-8-13)16-12(4)6-2/h7-12,15-16H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H21ClO4/c1-13(2)24-19(23)20(3,4)25-17-11-7-15(8-12-17)18(22)14-5-9-16(21)10-6-14/h5-13H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O/c7-5-2-1-4(9)3-6(5)8/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15NO2/c1-4-14-11-7-12-10(5-9(11)3)8(2)6-13(15)16-12/h5-7,14H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14Cl3O4P/c1-3-17-20(16,18-4-2)19-12(8-13)10-6-5-9(14)7-11(10)15/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3HCl2N3O/c4-1-6-2(5)8-3(9)7-1/h(H,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O2/c1-18-15-10-8-14(9-11-15)16(17)12-7-13-5-3-2-4-6-13/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O8S2/c1-10-7-14(16(28-2)9-17(10)30(25,26)27)19-20-18-13-5-4-12(29(22,23)24)8-11(13)3-6-15(18)21/h3-9,21H,1-2H3,(H,22,23,24)(H,25,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13NO2/c1-8-3-5-10(6-4-8)12-11(14)7-9(2)13/h3-6H,7H2,1-2H3,(H,12,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N/c1-3-5-6-7-4-2/h7H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11ClN2O5S/c13-9-5-10(15-6-7-2-1-3-20-7)8(12(16)17)4-11(9)21(14,18)19/h1-5,15H,6H2,(H,16,17)(H2,14,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H22N2O3/c1-10(2)15-8-13(18)9-19-14-6-4-12(5-7-14)16-11(3)17/h4-7,10,13,15,18H,8-9H2,1-3H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3F3/c1-2(3,4)5/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18O/c1-2-3-4-5-6-7-8-9-10/h9H,2-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10/c1-3-7-11(8-4-1)12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClF3/c8-6-4-2-1-3-5(6)7(9,10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18O/c1-7(2)5-9(10)6-8(3)4/h7-8H,5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18O/c1-2-3-5-10-14(12-15)11-13-8-6-4-7-9-13/h4,6-9,11-12H,2-3,5,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-5(2)3-4(6)7/h3H2,1-2H3,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9ClO3/c1-2-10-6(9)3-5(8)4-7/h2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O3/c9-8(10)6-11-7-4-2-1-3-5-7/h1-5H,6H2,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9Br/c13-12-8-4-7-11(9-12)10-5-2-1-3-6-10/h1-9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10/c1-7-5-3-4-6-8(7)2/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H18/c1-3-16-19-11-7-6-9-17(19)14(2)21-18-10-5-4-8-15(18)12-13-20(16)21/h4-13H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H46O4/c1-21(2)15-9-5-7-13-19-27-23(25)17-11-12-18-24(26)28-20-14-8-6-10-16-22(3)4/h21-22H,5-20H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O2/c7-5-3-1-2-4-6(5)8/h1-4,7-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H17NO2/c14-12-9-5-4-8-11(12)13(15)16-10-6-2-1-3-7-10/h4-5,8-10H,1-3,6-7,14H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9N/c1-2-4-5-3-1/h5H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H27N/c1-4-7-10-13(11-8-5-2)12-9-6-3/h4-12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18N2O/c1-10(2)13-11(3)15(4)16(14(13)17)12-8-6-5-7-9-12/h5-10H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14S/c1-3-7-13(8-4-1)11-15-12-14-9-5-2-6-10-14/h1-10H,11-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O3/c1-8-6(7)5-3-2-4-9-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3IN2O3/c8-5-1-4(3-9)2-6(7(5)11)10(12)13/h1-2,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O3/c1-11-8-4-3-7(6-10)5-9(8)12-2/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8O2/c15-13-11-7-3-1-5-9(11)10-6-2-4-8-12(10)14(13)16/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6O/c1-2-3/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO2/c1-6(10)9-7-2-4-8(11)5-3-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H34O4/c1-17(2,3)21-23-19(7,8)15-12-11-13-16(14-15)20(9,10)24-22-18(4,5)6/h11-14H,1-10H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7ClS/c1-9-7-4-2-6(8)3-5-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H12O2/c25-23-17-7-3-1-5-13(17)15-9-11-20-22-16(10-12-19(23)21(15)22)14-6-2-4-8-18(14)24(20)26/h1-12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O4/c21-15-9-5-13(6-10-15)20(14-7-11-16(22)12-8-14)18-4-2-1-3-17(18)19(23)24-20/h1-12,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Cl2/c9-5-7-1-2-8(6-10)4-3-7/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N2S3/c7-4-6-2-1-5-3(6)8-9-4/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O2/c1-3(5)4(2)6/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7NO/c3-1-2-4/h4H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14ClN5/c1-4-10-7-12-6(9)13-8(14-7)11-5(2)3/h5H,4H2,1-3H3,(H2,10,11,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10ClNO3/c11-7-1-3-8(4-2-7)12-9(13)5-6-10(14)15/h1-4H,5-6H2,(H,12,13)(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2O3/c16-6-11-12-8(5-10(14-11)13(17)18)7-3-1-2-4-9(7)15-12/h1-4,10-11,14-16H,5-6H2,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c1-3-4(5)6-2/h3H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18N2/c1-12(2)16-14-8-10-15(11-9-14)17-13-6-4-3-5-7-13/h3-12,16-17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18O2/c1-4-5-9(10)11-7-6-8(2)3/h8H,4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C25H24N2O6/c1-16-21(24(28)32-3)23(19-12-7-13-20(15-19)27(30)31)22(17(2)26-16)25(29)33-14-8-11-18-9-5-4-6-10-18/h4-13,15,23,26H,14H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2O/c1-3-5-6(7)4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15NO3/c1-12(2)7-8-5-4-6-9(10(8)16-12)15-11(14)13-3/h4-6H,7H2,1-3H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2/c1-9(2)7-3-5-8-6-4-7/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H29NO2/c1-2-3-4-5-6-7-8-9-10-11-14(17)15-12-13-16/h16H,2-13H2,1H3,(H,15,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2/c1-3(2)4(5)6/h1H2,2H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16N2O/c1-12-9-13(2)11-15(10-12)19-20-18-16-6-4-3-5-14(16)7-8-17(18)21/h3-11,21H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O2/c1-2-3-4-5-6-7-10-8-9-11(12)13-10/h10H,2-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c8-4-1-2-6(9)5(3-4)7(10)11/h1-3,9H,8H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11N2O2P/c1-4-9-10(8,5-6)7(2)3/h4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C30H44O2/c1-27(2,3)21-15-19(16-22(25(21)31)28(4,5)6)13-14-20-17-23(29(7,8)9)26(32)24(18-20)30(10,11)12/h13-18,31-32H,1-12H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl3N/c7-3-1-4(8)6(10)5(9)2-3/h1-2H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O2S/c3-2(4)1-5/h5H,1H2,(H,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O2/c1-4-7(8)9-5-6(2)3/h4,6H,1,5H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H22N2/c1-9(2)4-8(12)5-10(3,6-9)7-11/h8H,4-7,11-12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8N2O3/c1-5-2-3-6(8-10)4-7(5)9(11)12/h2-4,8,10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8Cl8/c9-2-1(4(11)8(15)16)3(10)6(13)7(14)5(2)12">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-9-8(10)11-7-5-3-2-4-6-7/h2-6H,1H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9NO2/c10-8-4-1-7(2-5-8)3-6-9(11)12/h1-6H,10H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6O4/c10-7-5-3-1-2-4-6(5)8(11)9(7,12)13/h1-4,12-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H15N7/c1-8-7-9(2)22(21-8)15-13-12(14(18-16)19-20-15)10-5-3-4-6-11(10)17-13/h3-7,17H,16H2,1-2H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N6/c4-1-7-2(5)9-3(6)8-1/h(H6,4,5,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14/c1-7-5-6-8(2)10(4)9(7)3/h5-6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2/c1-5-6(2)10(12)8(4)7(3)9(5)11/h11-12H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15NO2/c1-8(2)7-14-11(13)9-5-3-4-6-10(9)12/h3-6,8H,7,12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H19NO3/c1-2-15-12-5-3-4-6-13(12)17-10-11-9-14-7-8-16-11/h3-6,11,14H,2,7-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-6-2-4-7(5-3-6)10-8(9)11/h2-5H,1H3,(H3,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3ClO2/c3-1-2(4)5/h1H2,(H,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H15NO4S2/c15-10-4-2-1-3-8(10)12-14(11(16)5-6-19)9(7-20-12)13(17)18/h1-4,9,12,15,19H,5-7H2,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NS/c1-6-9-7-4-2-3-5-8(7)10-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9N3O4S/c15-14(16)9-4-6-10(7-5-9)19(17,18)13-11-3-1-2-8-12-11/h1-8H,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H19NO/c1-8(2)6-5-7-9(3,4)10(8)11/h11H,5-7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H26O3/c1-2-3-4-5-6-7-8-9-10-11-12-14-13-15(17)19-16(14)18/h11-12,14H,2-10,13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11Cl3NO4P/c1-3-15-18(14,16-4-2)17-9-7(11)5-6(10)8(12)13-9/h5H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O3/c1-2(4)3(5)6/h2,4H,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H31N3O5/c22-13-5-4-9-16(19(25)24-14-6-10-18(24)21(28)29)23-17(20(26)27)12-11-15-7-2-1-3-8-15/h1-3,7-8,16-18,23H,4-6,9-14,22H2,(H,26,27)(H,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O6S2/c15-11-5-3-9(13(7-11)23(17,18)19)1-2-10-4-6-12(16)8-14(10)24(20,21)22/h1-8H,15-16H2,(H,17,18,19)(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12N2OS2/c1-2-4-10-9(3-1)12-11(15-10)16-13-5-7-14-8-6-13/h1-4H,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18Cl2O4/c1-2-3-6-18-7-8-19-14(17)10-20-13-5-4-11(15)9-12(13)16/h4-5,9H,2-3,6-8,10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H34N2O5/c1-3-31-24(30)19(14-13-17-9-5-4-6-10-17)25-16(2)22(27)26-20-12-8-7-11-18(20)15-21(26)23(28)29/h4-6,9-10,16,18-21,25H,3,7-8,11-15H2,1-2H3,(H,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O2/c8-5-6-3-1-2-4-7(6)9/h1-5,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl2N/c6-4-1-2-5(7)8-3-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9Cl2NO/c1-2-9(13)12-6-3-4-7(10)8(11)5-6/h3-5H,2H2,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9N3/c7-3-1-5-9-6-2-4-8/h9H,1-2,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H17ClO3/c1-17(2,16(19)20-3)21-15-10-6-13(7-11-15)12-4-8-14(18)9-5-12/h4-11H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N/c1-3-5-7-6-4-2/h7H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H38O4/c1-4-5-6-13-16-20(25-19(2)22)17-14-11-9-7-8-10-12-15-18-21(23)24-3/h11,14,20H,4-10,12-13,15-18H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H2ClF3N2O4/c8-6-4(12(14)15)1-3(7(9,10)11)2-5(6)13(16)17/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H19O6PS2/c1-5-15-9(11)7-8(10(12)16-6-2)19-17(13,14-3)18-4/h8H,5-7H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11N3O4/c10-5-1-2-12-8-7(16-9(12)11-5)6(14)4(3-13)15-8/h1-2,4,6-8,10,13-14H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16Cl2N2O8/c16-14(17)15(24)18-10(7-27-12(22)6-5-11(20)21)13(23)8-1-3-9(4-2-8)19(25)26/h1-4,10,13-14,23H,5-7H2,(H,18,24)(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O3/c1-14(2,3)13(17)10-11(15)8-6-4-5-7-9(8)12(10)16/h4-7,10H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O3S/c1-6(11)10-14(12,13)8-4-2-7(9)3-5-8/h2-5H,9H2,1H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H20N2O8/c1-9(2)11(17)21-5-7-23-13(19)15-16-14(20)24-8-6-22-12(18)10(3)4/h1,3,5-8H2,2,4H3,(H,15,19)(H,16,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22FN3O/c20-17-8-6-16(7-9-17)18(24)4-3-11-22-12-14-23(15-13-22)19-5-1-2-10-21-19/h1-2,5-10H,3-4,11-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9NO3S/c1-4-2-3-8(5,6)7/h4H,2-3H2,1H3,(H,5,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O2/c8-5-6-3-1-2-4-7(6)9(10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N/c1-3-5(2)4-6/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14N4O5S/c23-16-9-6-13(11-15(16)18(24)25)21-20-12-4-7-14(8-5-12)28(26,27)22-17-3-1-2-10-19-17/h1-11,23H,(H,19,22)(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H50O3/c1-4-7-9-10-12-15-19-24-25(29-24)20-16-13-11-14-17-21-26(27)28-22-23(6-3)18-8-5-2/h23-25H,4-22H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10O/c14-13(11-7-3-1-4-8-11)12-9-5-2-6-10-12/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6Br2/c4-2-1-3-5/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H24O5/c1-7-20(3,4)15-9-13-8-14-10-18(21(5,6)26-12(2)22)24-16(14)11-17(13)25-19(15)23/h7-9,11,18H,1,10H2,2-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13NO/c23-21-7-3-6-15-16(21)9-11-20-18(15)12-17-14-5-2-1-4-13(14)8-10-19(17)22-20/h1-12,23H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H19NO3/c1-18-7-6-17-10-3-5-13(20)16(17)21-15-12(19)4-2-9(14(15)17)8-11(10)18/h2-5,10-11,13,16,19-20H,6-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6F3N/c8-7(9,10)5-3-1-2-4-6(5)11/h1-4H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18ClN3S/c1-17(2)9-10-18(14-5-3-4-8-16-14)11-12-6-7-13(15)19-12/h3-8H,9-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H20O5/c1-2-4-14-13(3-1)18-11-9-16-7-5-15-6-8-17-10-12-19-14/h1-4H,5-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6S/c1-3-2-4-3/h3H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-14(4-9-22(27)28)18-7-8-19-17-6-5-15-12-16(25)10-11-23(15,2)20(17)13-21(26)24(18,19)3/h14-20,25H,4-13H2,1-3H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O2/c7-3-1-5(9)4(8)2-6(3)10/h1-2,9-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H21NO7/c12-2-5(3-13)11-6-1-10(18,4-14)9(17)8(16)7(6)15/h5-9,11-18H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O3S/c1-6(11)10-7-2-4-8(5-3-7)14(9,12)13/h2-5H,1H3,(H,10,11)(H2,9,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H43N/c1-3-5-7-9-11-13-15-25-17-21-27(22-18-25)29-28-23-19-26(20-24-28)16-14-12-10-8-6-4-2/h17-24,29H,3-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO2/c1-3-9-6(8)5(2)4-7/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O2/c1-5-4-6(8)2-3-7(5)9/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H26O3/c1-18-7-6-15-14-4-3-13(21)10-12(14)2-5-16(15)19(18)8-9-20(18,23)17(22)11-19/h3-4,10,15-17,21-23H,2,5-9,11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14O2/c19-17-15-8-4-3-7-13(15)14-10-9-11-5-1-2-6-12(11)16(14)18(17)20/h1-10,17-20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18O4/c1-9(2)11(13)15-7-5-6-8-16-12(14)10(3)4/h1,3,5-8H2,2,4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO2/c8-6-3-1-2-5(4-6)7(9)10/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2O2/c4-1-2(5)3(6)7/h2H,1H2,(H,6,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H10N2O2S/c1-9-12(10,11)7-4-2-6(8)3-5-7/h2-5,9H,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15N/c1-5(2)7-6(3)4/h5-7H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4O/c7-2-1-3(11)5(9)6(10)4(2)8/h1,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2BrN/c3-1-2-4/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6ClNO2/c4-1-3(7)5-2-6/h6H,1-2H2,(H,5,7)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H34O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18(19)20/h9-10H,2-8,11-17H2,1H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClNO3S/c1-4-2-6(9)7(3-5(4)8)13(10,11)12/h2-3H,9H2,1H3,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO3/c8-6-3-1-5(2-4-6)7(9)10/h1-4,8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2O3/c4-3(8)5-1-2(6)7/h1H2,(H,6,7)(H3,4,5,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14N2/c1-7-3-5-8(2)6-4-7/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11N3O2/c1-12(2)11-10-8-5-3-7(4-6-8)9(13)14/h3-6H,1-2H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11ClO3/c1-6-5-8(11)3-4-9(6)14-7(2)10(12)13/h3-5,7H,1-2H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl2N2/c9-7-8(10)12-6-4-2-1-3-5(6)11-7/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H16N2/c1-7(2)5-6-8(3)4/h5-6H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH2O2/c2-1-3/h1H,(H,2,3)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H16O2/c1-3-5-6-7-8-11-9(10)4-2/h4H,2-3,5-8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O4/c1-5-4-6(10)8(12-2)9(13-3)7(5)11/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18O10/c1-23-11-5-9(19(21)25-3)13(17-15(11)27-7-29-17)14-10(20(22)26-4)6-12(24-2)16-18(14)30-8-28-16/h5-6H,7-8H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10/c1-3-9-4-2-6-11-8-7-10(5-1)12(9)11/h1-6H,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O2/c9-6(10)2-1-5-3-7-4-8-5/h1-4H,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13N/c1-2-8-15(9-3-1)17-16-11-10-13-6-4-5-7-14(13)12-16/h1-12,17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H18O2/c1-9(2)8-11-4-6-12(7-5-11)10(3)13(14)15/h4-7,9-10H,8H2,1-3H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12FN3O3/c1-23-16(22)20-15-18-12-7-4-10(8-13(12)19-15)14(21)9-2-5-11(17)6-3-9/h2-8H,1H3,(H2,18,19,20,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10F3NO2/c15-14(16,17)9-4-3-5-10(8-9)18-12-7-2-1-6-11(12)13(19)20/h1-8,18H,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H8Cl4/c15-11-5-1-9(2-6-11)13(14(17)18)10-3-7-12(16)8-4-10/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9N/c1-3(2)4/h3H,4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O2/c6-4-5-2-1-3-7-5/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2/c1-3(5)4(2)6/h3,5H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H22O/c1-9-13(2,3)10-7-6-8-11(15)12(10)14(9,4)5/h9H,6-8H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H24O/c1-10-8-14-15(9-13(10)11(2)18)17(6,7)12(3)16(14,4)5/h8-9,12H,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14/c1-3-5-6-4-2/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12S2/c1-3-5-7-8-6-4-2/h3H,1,4-6H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N5/c1-15-8-4-6-5-12-3-2-7(6)13-9(8)14-10(15)11/h2-5H,1H3,(H2,11,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2O2S/c7-5-1-3-6(4-2-5)11(8,9)10/h1-4H,7H2,(H2,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6ClNO4S/c7-3-1-4(8)6(9)5(2-3)13(10,11)12/h1-2,9H,8H2,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Cl/c7-6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O2/c1-10-8(9)7-5-3-2-4-6-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16/c1-12-11-14-6-4-8-15(14)17-10-9-13-5-2-3-7-16(13)18(12)17/h2-3,5,7,9-11H,4,6,8H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N/c1-3-5-4-2/h5H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20O2/c1-3-17(13-5-9-15(19)10-6-13)18(4-2)14-7-11-16(20)12-8-14/h5-12,19-20H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H16N2O4S/c1-11(19)17-13-3-7-15(8-4-13)23(21,22)16-9-5-14(6-10-16)18-12(2)20/h3-10H,1-2H3,(H,17,19)(H,18,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5ClO2/c1-6-3(5)2-4/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O/c1-4(2)5(3)6/h1H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H17NO/c1-12(2)17-15-10-8-14(9-11-15)16-13-6-4-3-5-7-13/h3-12,16H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O2/c1-5-3-8(10)6(2)4-7(5)9/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O2/c19-15-13-7-3-1-5-11(13)9-17-16(20)14-8-4-2-6-12(14)10-18(15)17/h1-8H,9-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H22O2/c1-4-5-6-7-8-9-10-14-12(13)11(2)3/h2,4-10H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H9ClO2/c1-4(2)8-5(7)3-6/h4H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO/c1-4(2,6)3-5/h6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H9ClO3/c1-6-4-7(10)2-3-8(6)13-5-9(11)12/h2-4H,5H2,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H23NO4/c1-10(2)16-7-13(18)9-19-14-5-3-4-11-6-12(17)8-20-15(11)14/h3-5,10,12-13,16-18H,6-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10N6O2/c19-18(20)9-3-1-8(2-4-9)5-13-11-10-12(15-6-14-10)17-7-16-11/h1-4,6-7H,5H2,(H2,13,14,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O3/c1-3(5)7-4(2)6/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11Br/c1-5(2,3)4-6/h4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6Cl2O3/c9-5-1-2-7(6(10)3-5)13-4-8(11)12/h1-3H,4H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N3O/c11-9-5-8(6-13-10(9)14)7-1-3-12-4-2-7/h1-6H,11H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H24O/c1-10-8-11(14(2,3)4)13(16)12(9-10)15(5,6)7/h8-9,16H,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8Br2/c9-5-7-3-1-2-4-8(7)6-10/h1-4H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10FO2P/c1-4(2)7-8(3,5)6/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H8O2/c17-15-11-5-1-3-9-7-8-10-4-2-6-12(16(15)18)14(10)13(9)11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H26S/c1-10(2,3)8-12(7,13)9-11(4,5)6/h13H,8-9H2,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14O4/c1-3-9-17-13(15)11-7-5-6-8-12(11)14(16)18-10-4-2/h3-8H,1-2,9-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O6/c16-8-4-11(19)15-12(20)6-13(21-14(15)5-8)7-1-2-9(17)10(18)3-7/h1-6,16-19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H13N5O3/c18-4-8-7(19)3-9(20-8)17-6-14-10-11-13-1-2-16(11)5-15-12(10)17/h1-2,5-9,18-19H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H18N3OP/c1-7(2)11(10,8(3)4)9(5)6/h1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10N2O/c1-8(14)13-10-6-9-4-2-3-5-11(9)12-7-10/h2-7H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O/c1-7(9)8-5-3-2-4-6-8/h2-7,9H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4N2O2/c8-5-6-1-3-7(4-2-6)9(10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H13N3/c5-1-3-7-4-2-6/h7H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O4/c1-3(5(8)9)2-4(6)7/h3H,2H2,1H3,(H,6,7)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H30O2/c1-2-3-4-5-6-7-8-9-10-11-12-16-13-15-14-17-15/h15H,2-14H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6O2/c6-4-5-2-1-3-7-5/h1-3,6H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14O/c1-2-3-4-5-6-7-8-9-10/h3-4,7-9H,2,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N/c1-13-9-7-12(8-10-13)11-5-3-2-4-6-11/h2-7H,8-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H2ClN/c3-1-2-4/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8HCl4F11O2/c9-3(15,2(13,14)1(24)25)6(18,19)4(10,16)7(20,21)5(11,17)8(12,22)23/h(H,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11NO/c1-6-4-2-3-5/h2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9NS/c1-3-7-11-9(5-1)13-10-6-2-4-8-12(10)14-11/h1-8,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19N3O4S/c1-16(2)11(15(22)23)19-13(21)10(14(19)24-16)18-12(20)9(17)8-6-4-3-5-7-8/h3-7,9-11,14H,17H2,1-2H3,(H,18,20)(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO2/c1-4(2,3)5(6)7/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H44O3/c1-17(2)25(29)13-8-18(3)23-11-12-24-20(7-6-14-27(23,24)5)9-10-21-15-22(28)16-26(30)19(21)4/h9-10,17-18,22-26,28-30H,4,6-8,11-16H2,1-3,5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO2/c9-7-4-2-1-3-6(7)5-8(10)11/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H14O2S2/c21-17-5-1-15-11-19(7-3-13(15)9-17)23-24-20-8-4-14-10-18(22)6-2-16(14)12-20/h1-12,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O4/c1-7(11)12-5-8-2-3-9-10(4-8)14-6-13-9/h2-4H,5-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2/c1-5(2)3-4/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-5-9-11-19(7-3)17-27-23(25)21-13-15-22(16-14-21)24(26)28-18-20(8-4)12-10-6-2/h13-16,19-20H,5-12,17-18H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4O3/c5-3-1-2-4(6)7-3/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O3/c1-12-9(11)8-4-2-7(6-10)3-5-8/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H10O3/c1-8(12)2-3-9-4-5-10-11(6-9)14-7-13-10/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c1-11-7-4-2-3-6(5-7)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H25N5O6/c29-9-17-19(31)20(32)23(34-17)28-12-27-18-21(25-11-26-22(18)28)24-8-14(30)10-33-16-7-3-5-13-4-1-2-6-15(13)16/h1-7,11-12,14,17,19-20,23,29-32H,8-10H2,(H,24,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16/c1-4-10-16(11-5-1)19(17-12-6-2-7-13-17)18-14-8-3-9-15-18/h1-15,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-8-4-6-9(7-5-8)10(2,3)11/h4,9,11H,5-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H25N3O4/c1-28-19-7-3-16(14-20(19)29-2)22(27)25-11-9-24(10-12-25)17-5-6-18-15(13-17)4-8-21(26)23-18/h3,5-7,13-14H,4,8-12H2,1-2H3,(H,23,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H24N4O2/c20-18(21)14-4-8-16(9-5-14)24-12-2-1-3-13-25-17-10-6-15(7-11-17)19(22)23/h4-11H,1-3,12-13H2,(H3,20,21)(H3,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c9-5-6-3-1-2-4-7(6)8(10)11/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-9(17)16-14-7-11-6-10-4-2-3-5-12(10)13(11)8-15(14)18/h2-5,7-8,18H,6H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H33N3O4/c1-13(24)16-10-14(22-18(26)23-20(5,6)7)8-9-17(16)27-12-15(25)11-21-19(2,3)4/h8-10,15,21,25H,11-12H2,1-7H3,(H2,22,23,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8BrNO/c9-6-8(11)10-7-4-2-1-3-5-7/h1-5H,6H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18O/c1-2-4-6-8-10-12-11(13-12)9-7-5-3-1/h3-6,11-12H,1-2,7-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-6(10)9-7-3-2-4-8(11)5-7/h2-5,11H,1H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11N/c1-3-5-7-6-4-2/h3-4,7H,1-2,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N4O2/c1-10-4-9-6-5(10)7(13)12(3)8(14)11(6)2/h4H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O/c8-6-2-1-5(4-10)3-7(6)9/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H22N2O6/c1-10(2)16-7-12(18)8-21-14-5-3-4-11-6-13(23-17(19)20)9-22-15(11)14/h3-5,10,12-13,16,18H,6-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8N2O/c1-3-5-6(2)4-7/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9NO2/c1-8-6-9-4-2-3-5-10(9)7-11(8)12(13)14/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H44O2/c1-26(2,3)20-14-18(15-21(24(20)30)27(4,5)6)13-19-16-22(28(7,8)9)25(31)23(17-19)29(10,11)12/h14-17,30-31H,13H2,1-12H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2/c1-2-4-10(5-3-1)12-8-6-11-7-9-12/h1-5,11H,6-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3F2N/c6-4-2-1-3-5(7)8-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H32O/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-16-15-17-16/h16H,2-15H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3/c7-4-1-2-5(8)6(9)3-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10N2/c1-2-6-4-3-5-1/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H25NO7/c1-3-12-8-11(2)18(23,10-20)17(22)25-9-13-4-6-19(24)7-5-14(15(13)19)26-16(12)21/h3-4,11,14-15,20,23H,5-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Cl/c1-6-4-2-3-5-7(6)8/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H20/c1-3-16-19-11-7-8-12-20(19)17(4-2)22-18-10-6-5-9-15(18)13-14-21(16)22/h5-14H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15O3PS2/c1-4-12-6-5-9-10(11,7-2)8-3/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9ClO3/c1-3-10-6(9)5(7)4(2)8/h5H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O3/c1-9-8-14-12(11-5-3-2-4-10(9)11)6-7-13-15(14)18-19(22-18)17(21)16(13)20/h2-8,16-21H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6BrN/c7-5-1-3-6(8)4-2-5/h1-4H,8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H16O4/c1-2-10-5-6-12-8-7-11-4-3-9-1/h1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H11NO/c8-6-4-2-1-3-5-7-6/h1-5H2,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6HCl4NO2/c7-2-1-3(11(12)13)5(9)6(10)4(2)8/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N3O6/c10-7-3(14)1-12(9(17)11-7)8-6(16)5(15)4(2-13)18-8/h4-6,8,13,15-16H,1-2H2,(H2,10,11,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12O/c10-8-4-7-9-5-2-1-3-6-9/h1-3,5-6,10H,4,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16N2O2S/c1-7-6-8(2)13-9(12-7)16-10(14)15-11(3,4)5/h6H,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O2/c10-9(11)7-6-8-4-2-1-3-5-8/h1-7H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16NO5P/c1-3-16-20(15,17-4-2)19-13-10-12(18-14-13)11-8-6-5-7-9-11/h5-10H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O2/c1-2(3)4/h1H3,(H,3,4)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N/c9-7-6-8-4-2-1-3-5-8/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6Cl2N2O2/c1-5(2)3(10)8(6)4(11)9(5)7/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O/c1-3-4(2)5/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6HBr5O/c7-1-2(8)4(10)6(12)5(11)3(1)9/h12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H17NO2/c1-4-15(5-2)11-6-7-12-10(3)8-14(16)17-13(12)9-11/h6-9H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H17N3/c7-3-1-5-9-6-2-4-8/h9H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O3/c1-2-12-9-5-7(6-10)3-4-8(9)11/h3-6,11H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H12N2O/c1-9-8-11(14)13(12(9)2)10-6-4-3-5-7-10/h3-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O4/c1-12-8-5-10(14-3)9(13-2)4-7(8)6-11/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13ClN2O3S/c1-2-7-12-10(14)13-17(15,16)9-5-3-8(11)4-6-9/h3-6H,2,7H2,1H3,(H2,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H11Cl2NO4/c1-6(11(16)17)14-10(15)5-18-9-3-2-7(12)4-8(9)13/h2-4,6H,5H2,1H3,(H,14,15)(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9N5/c1-15-8-5-7-6(3-2-4-12-7)13-9(8)14-10(15)11/h2-5H,1H3,(H2,11,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO3S/c11-14(12,13)8-5-1-3-7-4-2-6-10-9(7)8/h1-6H,(H,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2/c1-6-9-5-7-3-2-4-8(7)10-6/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H25FN6O/c1-29(23-26-13-10-22(32)28-23)19-11-14-30(15-12-19)24-27-20-4-2-3-5-21(20)31(24)16-17-6-8-18(25)9-7-17/h2-10,13,19H,11-12,14-16H2,1H3,(H,26,28,32)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O5/c16-9-3-1-8(2-4-9)13-7-12(19)15-11(18)5-10(17)6-14(15)20-13/h1-6,13,16-18H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O2/c1-7(10)9(11)8-5-3-2-4-6-8/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13NO3S/c18-15(20-11-12-6-2-1-3-7-12)10-17-13-8-4-5-9-14(13)21-16(17)19/h1-9H,10-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5Cl6/c6-1-2(7)4(9)5(10,11)3(1)8">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7BrO/c9-6-8(10)7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14O/c1-2-3-4-5-6-7-8/h7H,2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8O/c1-3-7-11-9(5-1)10-6-2-4-8-12(10)13-11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6O2/c1-5-2-3-6(4-7)8-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O/c1-2-4-6-8-7(9-8)5-3-1/h7-8H,1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H9NO/c1-3-6-4-2-5-1/h5H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO2/c9-7-8-5-3-1-2-4-6(5)10-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13N3/c17-15-11-10-12-6-4-5-9-14(12)16(15)19-18-13-7-2-1-3-8-13/h1-11H,17H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO/c9-6-8-7-4-2-1-3-5-7/h1-6H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15O2PS3/c1-4-11-5-6-12-9(10,7-2)8-3/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10NO3PS/c1-4(6)5-9(7,8-2)10-3/h7H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H34O4/c1-13(2,3)17-19-15(7,8)11-12-16(9,10)20-18-14(4,5)6/h11-12H2,1-10H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClNO2/c1-5-2-3-6(8)4-7(5)9(10)11/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14O3/c1-3-14-11(13)10-12(2,15-10)9-7-5-4-6-8-9/h4-8,10H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O4/c1-9-5(7)3-4-6(8)10-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H34N2O3/c1-2-3-4-5-11-17-25-20-13-8-7-12-19(20)22-21(24)26-18-16-23-14-9-6-10-15-23/h7-8,12-13H,2-6,9-11,14-18H2,1H3,(H,22,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-6(2)8-5-9(11)7(3)4-10(8)12/h4-5,11-12H,1H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6O/c1-2-4-8-7(3-1)5-6-9-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O/c1-7(9)8-5-3-2-4-6-8/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H17NO2S/c1-2-3-5-12-6-4-7(9)8(10)11/h7H,2-6,9H2,1H3,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO3/c9-5-6-1-3-7(4-2-6)8(10)11/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2O3/c1-13(2,3)17-12(16)18-15-11(9-14)10-7-5-4-6-8-10/h4-8H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O2/c1-4-5-9-7(8)6(2)3/h2,4-5H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N2O/c1-5(8)7-3-2-6-4-7/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO4/c12-7-3-1-2-5-8(13)4-6(10(14)15)11-9(5)7/h1-4,12H,(H,11,13)(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4N2O2/c5-3-1-2-4-6/h1-2,5-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N2/c5-3-1-2-4-6/h1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO3S/c7-5-1-3-6(4-2-5)11(8,9)10/h1-4H,7H2,(H,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O3/c20-17-6-3-7-18-16(17)11-15(19(21)22-18)14-9-8-12-4-1-2-5-13(12)10-14/h1-7,11,14,20H,8-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO2/c1-6-4-10(12)13-9-5-7(11)2-3-8(6)9/h2-5H,11H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H13NO2/c1-9(17)16-14-7-6-12-11-5-3-2-4-10(11)8-13(12)15(14)18/h2-7,18H,8H2,1H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H32N2O4/c1-11(17)7-15(8-12(2)18)5-6-16(9-13(3)19)10-14(4)20/h11-14,17-20H,5-10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H30O5/c1-3-5-7-20-8-9-21-10-11-22-14-17-13-19-18(23-15-24-19)12-16(17)6-4-2/h12-13H,3-11,14-15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O3/c1-7(11)12-9-4-2-8(6-10)3-5-9/h2-5,10H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4O/c1-2/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O3/c1-7-3-5-9-6-4-8-2/h3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c1-3-5(7)4(2)6/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18N2O2/c1-8(2)5-6(7(10)12)9(3,4)11(8)13/h6,13H,5H2,1-4H3,(H2,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H13ClO3/c1-8-7-9(12)4-5-10(8)15-6-2-3-11(13)14/h4-5,7H,2-3,6H2,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2O3/c5-3-1-2-4(6)7-3/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H19N/c1-3-5-6-8(4-2)7-9/h8H,3-7,9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14N2O4/c1-7(2)8-3-4-12-9(5-8)13(19)10-6-11(16(20)21)14(17)18-15(10)22-12/h3-7H,1-2H3,(H2,17,18)(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4ClF3/c8-6-3-1-5(2-4-6)7(9,10)11/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N4O2S2/c1-6-11-12-9(16-6)13-17(14,15)8-4-2-7(10)3-5-8/h2-5H,10H2,1H3,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18N2O3S/c1-4-14(5-2)18(16,17)12-8-6-11(7-9-12)13-10(3)15/h6-9H,4-5H2,1-3H3,(H,13,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O3/c8-5-1-2-6-7(3-5)10-4-9-6/h1-3,8H,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H16O/c1-4-6(2)7(3)5-8/h6-8H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N2O5/c7-1-4(10,11)2(8)6-3(9)5-1/h10-11H,(H2,5,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO4/c5-2(4(8)9)1-3(6)7/h2H,1,5H2,(H,6,7)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O2/c1-5(2)7(8)9-6(3)4/h6H,1H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c1-3-7-4-5-8(10)9(6-7)11-2/h3-6,10H,1H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H24/c1-3-5-7-9-11-10-8-6-4-2/h3-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8O4/c1-6(10)13-8-5-3-2-4-7(8)9(11)12/h2-5H,1H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15NO2/c1-2-3-8-14-11(13)9-6-4-5-7-10(9)12/h4-7H,2-3,8,12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14/c1-11-7-8-14-10-9-13-5-3-4-6-15(13)16(14)12(11)2/h3-10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O/c7-6(9)5-2-1-3-8-4-5/h1-4H,(H2,7,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-9(2)7-3-4-10(6-11-10)8(9)5-7/h7-8H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5Br/c7-6-4-2-1-3-5-6/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H28O2/c1-2-3-4-5-6-7-8-9-10-11-12-13-14(15)16/h2-13H2,1H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N4/c5-1-3(7)4(8)2-6/h3,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6ClN/c10-9-6-5-7-3-1-2-4-8(7)11-9/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H9N3O4/c16-10-5-6-11(12(17)7-10)14-13-8-1-3-9(4-2-8)15(18)19/h1-7,16-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H10O2/c19-17-10-9-15-14-6-5-11-3-1-2-4-12(11)13(14)7-8-16(15)18(17)20/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11NO5/c1-8-2-4-9(5-3-8)13(17)10-6-11(15(19)20)14(18)12(16)7-10/h2-7,16,18H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H37NO3/c1-28-18-25(19-5-8-21(9-6-19)30(2)3)27-23-12-10-22(32)17-20(23)7-11-24(27)26(28)13-15-29(28,33)14-4-16-31/h4-9,14,24-26,31,33H,10-13,15-18H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H38O2/c1-10-11-18(19-14-21(25(4,5)6)23(27)12-16(19)2)20-15-22(26(7,8)9)24(28)13-17(20)3/h12-15,18,27-28H,10-11H2,1-9H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11NO/c1-5(2)3-4-6/h6H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O/c7-4-1-2-6(9)5(8)3-4/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO2/c12-10(13)8-5-1-3-7-4-2-6-11-9(7)8/h1-6H,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N/c1-2-4-6-5-3-1/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O/c9-8-5-6-3-1-2-4-7-6/h1-5,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7Cl3O2/c9-5-3-7(11)8(4-6(5)10)13-2-1-12/h3-4,12H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6O2/c3-1-2-4/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O7S/c9-7(10)4-1-2-6(16(13,14)15)5(3-4)8(11)12/h1-3H,(H,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4N2O5/c9-6-2-1-4(7(10)11)3-5(6)8(12)13/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17NO/c1-3-13(4-2)12(14)10-11-8-6-5-7-9-11/h5-9H,3-4,10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14N2O8/c11-4-2-18-8(16,7(15)6(4)14)3-10(9-17)1-5(12)13/h4,6-7,11,14-16H,1-3H2,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H14N2/c1-13-7-3-11(4-8-13)12-5-9-14(2)10-6-12/h3-10H,1-2H3/q+2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H14O7/c1-20-9-6-10-12(8-3-5-22-17(8)23-10)14-11(9)7-2-4-21-15(18)13(7)16(19)24-14/h6,8,17H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C28H46O4/c1-23(2)17-11-7-5-9-15-21-31-27(29)25-19-13-14-20-26(25)28(30)32-22-16-10-6-8-12-18-24(3)4/h13-14,19-20,23-24H,5-12,15-18,21-22H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c1-8(10)11-7-9-5-3-2-4-6-9/h2-6H,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7NO/c10-7-1-2-8-6(5-7)3-4-9-8/h1-5,9-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4Br2/c1-2(3)4/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22Cl2N2O6/c1-9(2)30-19(26)16-13(8-29-20(23)27)24-10(3)14(18(25)28-4)15(16)11-6-5-7-12(21)17(11)22/h5-7,9,15,24H,8H2,1-4H3,(H2,23,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H12O4/c6-1-5(2-7,3-8)4-9/h6-9H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl2O/c7-4-1-5(8)3-6(9)2-4/h1-3,9H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8ClN/c1-5-2-3-6(9)4-7(5)8/h2-4H,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H26O2/c1-4-5-6-7-8-9-10-11-12-16-14(15)13(2)3/h2,4-12H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9Cl2NO4/c1-19-10-5-9(16(17)18)6-11(7-10)20-13-3-2-8(14)4-12(13)15/h2-7H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9Cl3N2O/c14-8-1-3-9(4-2-8)17-13(19)18-10-5-6-11(15)12(16)7-10/h1-7H,(H2,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12/c1-2-8-6-4-3-5-7-8/h2-4,8H,1,5-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O/c11-4-3-7-6-12-10-2-1-8(13)5-9(7)10/h1-2,5-6,12-13H,3-4,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8O3/c1-11-8-4-6(5-9)2-3-7(8)10/h2-5,10H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9Cl4O4P/c1-16-19(15,17-2)18-10(5-11)6-3-8(13)9(14)4-7(6)12/h3-5H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O/c1-9(8-11)7-10-5-3-2-4-6-10/h2-8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H18/c1-12(2)14-7-10-17-15(11-14)8-9-16-13(3)5-4-6-18(16)17/h4-12H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20O2/c19-16-8-4-14(5-9-16)18(12-2-1-3-13-18)15-6-10-17(20)11-7-15/h4-11,19-20H,1-3,12-13H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O4/c1-5(2)8(11)6(12-3)4-7(9)10/h4H,1H2,2-3H3,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O5/c1-3-9(11)14-7-5-13-6-8-15-10(12)4-2/h3-4H,1-2,5-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18O4/c1-3-11(13)15-9-7-5-6-8-10-16-12(14)4-2/h3-4H,1-2,5-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O2/c3-1-2-4/h1,4H,2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO/c1-4(2)3-5/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H16O7/c1-22-10-4-3-9(20)14-16(21)15-11(23-2)7-12-13(18(15)26-17(10)14)8-5-6-24-19(8)25-12/h3-4,7-8,19-20H,5-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H42O4/c1-21(2)15-9-5-7-13-19-29-25(27)23-17-11-12-18-24(23)26(28)30-20-14-8-6-10-16-22(3)4/h11-12,17-18,21-22H,5-10,13-16,19-20H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H24O6/c1-2-14-5-6-16-9-10-18-12-11-17-8-7-15-4-3-13-1/h1-12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H30N2O/c1-18-10-8-11-19(2)24(18)17-9-15-22(25,20-12-4-3-5-13-20)21-14-6-7-16-23-21/h3-7,12-14,16,18-19,25H,8-11,15,17H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22O4/c1-11(2)9-19-15(17)13-7-5-6-8-14(13)16(18)20-10-12(3)4/h5-8,11-12H,9-10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H25Cl/c1-2-3-4-5-6-7-8-9-10-11-12-13/h2-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14N2O/c1-15-14(17)16(12-8-4-2-5-9-12)13-10-6-3-7-11-13/h2-11H,1H3,(H,15,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O2/c1-2-3-4-5-6(7)8/h2-5H2,1H3,(H,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H51O3P/c1-7-13-16-22(10-4)19-25-28(26-20-23(11-5)17-14-8-2)27-21-24(12-6)18-15-9-3/h22-24H,7-21H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-9-6-5-7-3-1-2-4-8(7)10-9/h1-6H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Cl3O/c7-3-1-2-4(10)6(9)5(3)8/h1-2,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7BrO/c8-7-3-1-6(5-9)2-4-7/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N/c1-6-4-2-3-5-7-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12O6/c1-21-16-11(19)7-13-14(15(16)20)10(18)6-12(22-13)8-2-4-9(17)5-3-8/h2-7,17,19-20H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H23NO3/c1-4-9-18-14-7-5-6-8-15(14)19-11-13(17)10-16-12(2)3/h4-8,12-13,16-17H,1,9-11H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16O2/c1-2-3-4-5-9-6-10(12)8-11(13)7-9/h6-8,12-13H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16O4/c1-3-10(12)14-8-6-5-7-9-15-11(13)4-2/h3-4H,1-2,5-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H7NO2/c1-3(5-7)4(2)6/h7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H19NO3/c1-3-16(10-14(18)19)15-12(8-9-20-16)11-6-4-5-7-13(11)17(15)2/h4-7H,3,8-10H2,1-2H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H17NO5/c1-9(2)4-5-10-12-13(14(20)17-16(10)23-8-24-17)19-18-11(6-7-22-18)15(12)21-3/h4,6-7,20H,5,8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H26N2O4/c1-27-16-8-14-15(9-17(16)28-2)25-20(26)10-18-21-13-7-19-23(14,22(21)25)4-5-24(19)11-12(13)3-6-29-18/h3,8-9,13,18-19,21-22H,4-7,10-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H10O3/c13-12(14)8-15-11-6-5-9-3-1-2-4-10(9)7-11/h1-7H,8H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H7N/c1-2-3-4-5-6/h3-4H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c1-5-6(2)8(10)4-3-7(5)9/h3-4H,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H9NO/c17-15-12-7-6-10-3-1-2-9-4-5-11(8-16-15)14(12)13(9)10/h1-8H,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H28N4O5S2/c1-20-11-16-7-8-17(28-16)13-29-10-9-21-19(23-30(2,26)27)22-12-18(25)14-3-5-15(24)6-4-14/h3-8,18,20,24-25H,9-13H2,1-2H3,(H2,21,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H19N3O/c1-9(2)15-12(16)11-6-4-10(5-7-11)8-14-13-3/h4-7,9,13-14H,8H2,1-3H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H15Cl2N/c1-10-2-4-11(5-3-10)14(8-6-12)9-7-13/h2-5H,6-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11Cl2FN2O2S2/c1-13(2)18(15,16)14(17-9(10,11)12)8-6-4-3-5-7-8/h3-7H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11NO2/c6-3-1-5-2-4-7/h5-7H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O/c1-10(2,3)9-4-6-11(7-5-9)8-12-11/h9H,4-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H4Cl2F2O/c1-8-3(6,7)2(4)5/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H5Cl2NO/c10-6-4-7(11)9(13)8-5(6)2-1-3-12-8/h1-4,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O/c1-2-3-4-5-6/h5H,2-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H20O/c1-10-6-5-9-13(3,4)12(10)8-7-11(2)14/h7-8H,5-6,9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10O3S/c1-6-3-4-8(5-7(6)2)12(9,10)11/h3-5H,1-2H3,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H23NO2/c1-5-11-7-6-8-12-9-14(19-15(11)12)13(18)10-17-16(2,3)4/h6-9,13,17-18H,5,10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H23NO2/c1-5-17(4,12-8-9-13(2)3)20-16(19)14-10-6-7-11-15(14)18/h5-7,9-11H,1,8,12,18H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H13N/c1-12-5-4-7-14-11-15-10-9-13-6-2-3-8-16(13)18(15)19-17(12)14/h2-11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13Cl/c22-12-19-16-7-2-1-6-15(16)17-10-8-13-4-3-5-14-9-11-18(19)21(17)20(13)14/h1-11H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O4/c16-10-3-1-9(2-4-10)13-8-19-14-7-11(17)5-6-12(14)15(13)18/h1-8,16-17H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12N2O2/c18-13-15(17-14(19)16-13,11-7-3-1-4-8-11)12-9-5-2-6-10-12/h1-10H,(H2,16,17,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H30O4/c1-3-5-7-11-15-23-19(21)17-13-9-10-14-18(17)20(22)24-16-12-8-6-4-2/h9-10,13-14H,3-8,11-12,15-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5N/c1-2-4-5-3-1/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H26N2/c1-5-14-9-16(20)7-12(3)18(14)11-19-13(4)8-17(21)10-15(19)6-2/h7-10H,5-6,11,20-21H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3NO/c3-1-2-4/h4H,2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O2/c1-4(6)3-5(2)7/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO2/c12-10(13)5-7-6-11-9-4-2-1-3-8(7)9/h1-4,6,11H,5H2,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H16N4O4/c16-8-4-14(5-9(17)12-8)2-1-3-15-6-10(18)13-11(19)7-15/h1-7H2,(H,12,16,17)(H,13,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H18O3S/c1-9(2)12-6-5-10(3)15-13(8-12)11(4)7-14(15)19(16,17)18/h5-9H,1-4H3,(H,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H18N2O5/c1-7-10(9(3)17)8(2)13(16(20)21)11(14(4,5)6)12(7)15(18)19/h1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11Cl7/c11-2-8(3-12)5-1-10(16,17)9(8,4-13)7(15)6(5)14/h5-7H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4/c7-3-1-2-4(8)6(10)5(3)9/h1-2H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8O2/c1-9-7-5-3-2-4-6(7)8/h2-5,8H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6ClF3/c9-5-6-1-3-7(4-2-6)8(10,11)12/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c10-9(11)7-6-8-4-2-1-3-5-8/h1-5H,6-7H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H23NO4/c1-20-7-6-19-10-14(21)16(24-3)9-12(19)13(20)8-11-4-5-15(23-2)18(22)17(11)19/h4-5,9,12-13,22H,6-8,10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7NO2/c12-9-6-5-7-3-1-2-4-8(7)10(9)11-13/h1-6,12H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14N2O/c1-8-13-11(5-6-14-8)10-4-3-9(16-2)7-12(10)15-13/h3-4,7,15H,5-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO2/c1-10-8-6-4-3-5-7(8)9(11)12-2/h3-6,10H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10Cl2O3/c11-7-3-4-9(8(12)6-7)15-5-1-2-10(13)14/h3-4,6H,1-2,5H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10Cl4/c15-10-7-5-9(6-8-10)13(14(17)18)11-3-1-2-4-12(11)16/h1-8,13-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O/c1-3-5-6-8(4-2)7-9/h8-9H,3-7H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-5-10(4,11)8-6-7-9(2)3/h5,7,11H,1,6,8H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H16BrNO/c1-12(2,3)10(13)11(15)14-9-7-5-4-6-8-9/h4-8,10H,1-3H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5NO5S/c8-7(9)5-1-3-6(4-2-5)13(10,11)12/h1-4H,(H,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7ClO2S/c1-11(9,10)7-4-2-6(8)3-5-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21NO3/c1-3-11-6-5-7-12-13-8-9-21-17(4-2,10-14(19)20)16(13)18-15(11)12/h5-7,18H,3-4,8-10H2,1-2H3,(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H34O8/c1-5-8-11-25-17(22)14-20(28-16(4)21,19(24)27-13-10-7-3)15-18(23)26-12-9-6-2/h5-15H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H17NO/c1-11(15)13(7-9-14-10-8-13)12-5-3-2-4-6-12/h2-6,14H,7-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20N2S4/c1-5-11(6-2)9(13)15-16-10(14)12(7-3)8-4/h5-8H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c8-6-3-1-5(2-4-6)7(9)10/h1-4H,8H2,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O3/c1-11(16(18)19)13-8-5-9-14(10-13)15(17)12-6-3-2-4-7-12/h2-11H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7Cl/c1-2-7-5-3-4-6-8(7)9/h2-6H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H13N3/c1-7(2)5(6)8(3)4/h6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H23N3O7S/c1-10-12(31-20(28)30-10)9-29-19(27)15-21(2,3)32-18-14(17(26)24(15)18)23-16(25)13(22)11-7-5-4-6-8-11/h4-8,13-15,18H,9,22H2,1-3H3,(H,23,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2N2S2/c4-1-6-3-7-2-5/h3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O2/c8-4-1-2-6(9)5(3-4)7(10)11/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H20O2/c1-4-7-8-10(5-2)9-13-11(12)6-3/h6,10H,3-5,7-9H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O4/c7-5(8)3-1-2-4-6(9)10/h1-4H2,(H,7,8)(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6Br2O/c9-5-8(11)6-1-3-7(10)4-2-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12/c1-2-6-10-8-4-3-7-9(10)5-1/h1-2,5-6H,3-4,7-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H29NO/c1-4-25(21-11-7-5-8-12-21)26(22-13-9-6-10-14-22)23-15-17-24(18-16-23)28-20-19-27(2)3/h5-18H,4,19-20H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O/c1-8(2)10-5-3-9(7-11)4-6-10/h3,7,10H,1,4-6H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2F6O/c4-2(5,6)1(10)3(7,8)9/h1,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H10O/c1-5(2)3-4-6/h4-5H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H5Cl7/c11-4-2-1-3-5(4)9(15)7(13)6(12)8(3,14)10(9,16)17/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8O/c1-3-5(2)4-6-5/h3H,1,4H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H36N2/c1-15(2)7-9-17(5)21-19-11-13-20(14-12-19)22-18(6)10-8-16(3)4/h11-18,21-22H,7-10H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O2/c1-3(4)5-2/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N/c1-4(2,3)5/h5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7N/c1-3-2/h3H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-6-4-9(11)8-5-7(6)10(8,2)3/h4,7-9,11H,5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11ClN2O/c1-12(2)9(13)11-8-5-3-7(10)4-6-8/h3-6H,1-2H3,(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H15O4P/c1-4-8-11(7,9-5-2)10-6-3/h4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7Cl3O3/c1-4(9(13)14)15-8-3-6(11)5(10)2-7(8)12/h2-4H,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14N3O8P/c10-5-1-2-12(9(15)11-5)8-7(14)6(13)4(20-8)3-19-21(16,17)18/h1-2,4,6-8,13-14H,3H2,(H2,10,11,15)(H2,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O/c1-3(2)4/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14O/c1-7-4-8(10)6-9(2,3)5-7/h4H,5-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H19NO4S/c1-3-9-14(10-4-2)19(17,18)12-7-5-11(6-8-12)13(15)16/h5-8H,3-4,9-10H2,1-2H3,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O2/c8-4-2-1-3-5(9)6(4)7(10)11/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10/c1-7-3-5-8(2)6-4-7/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O/c1-2-3-4/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4S/c1-2-4-5-3-1/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H6O2S/c5-7(6)3-1-2-4-7/h1-2H,3-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H6N2O6S/c7-4-1-3(8(10)11)2-5(6(4)9)15(12,13)14/h1-2,9H,7H2,(H,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10O8/c1-3(11)15-7-5-6(18-9(7)13)8(10(14)17-5)16-4(2)12/h5-8H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6ClN/c9-5-7-1-3-8(6-10)4-2-7/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2O8/c13-7(14)3-11(4-8(15)16)1-2-12(5-9(17)18)6-10(19)20/h1-6H2,(H,13,14)(H,15,16)(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20/c1-3-5-7-9-10-8-6-4-2/h3H,1,4-10H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H4Cl4O2/c13-5-1-9-10(2-6(5)14)18-12-4-8(16)7(15)3-11(12)17-9/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12N2O3/c18-12-8-6-11(7-9-12)15(10-4-2-1-3-5-10)13(19)16-14(20)17-15/h1-9,18H,(H2,16,17,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14/c1-3-9-15(10-4-1)17-13-7-8-14-18(17)16-11-5-2-6-12-16/h1-14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9Cl/c1-7-2-4-8(6-9)5-3-7/h2-5H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N4O/c12-7(10-3-1-8-5-10)11-4-2-9-6-11/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H11NO2/c1-8(12)7-10(13)11-9-5-3-2-4-6-9/h2-6H,7H2,1H3,(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H13IN5O2/c20-15-6-8-16(9-7-15)23-21-19(14-4-2-1-3-5-14)22-24(23)17-10-12-18(13-11-17)25(26)27/h1-13H/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O/c1-3-8(2)9-6-4-5-7-10(9)11/h4-8,11H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12N2/c1-2-8-5-3-7(1)4-6-8/h1-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H10BrCl2O4P/c1-15-18(14,16-2)17-10(6-11)8-4-3-7(12)5-9(8)13/h3-6H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14O3/c1-5(7)3-9-4-6(2)8/h5-8H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12NO5PS/c1-7-6-8(4-5-9(7)10(11)12)15-16(17,13-2)14-3/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H24O2/c1-2-3-4-5-6-7-8-9-10-11-12(13)14/h2-11H2,1H3,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO/c8-7(9)6-4-2-1-3-5-6/h1-5H,(H2,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H5ClO/c1-3(5)2-4/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10FNO2/c10-7-3-1-6(2-4-7)5-8(11)9(12)13/h1-4,8H,5,11H2,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O2/c1-18-15-10-7-13(8-11-15)9-12-16(17)14-5-3-2-4-6-14/h2-12H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H5ClN2/c9-8-7-4-2-1-3-6(7)5-10-11-8/h1-5H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10/c1-2-8-6-4-3-5-7-8/h3-7H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H20O6/c1-26-20-11-14(5-9-18(20)24)3-7-16(22)13-17(23)8-4-15-6-10-19(25)21(12-15)27-2/h3-12,24-25H,13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9N3O2/c1-6(12)10-11-8(13)7-4-2-3-5-9-7/h2-5H,1H3,(H,10,12)(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16N2O3/c1-8(16)14-4-3-9-7-15-11-6-12(17)13(18-2)5-10(9)11/h5-7,15,17H,3-4H2,1-2H3,(H,14,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12Br4/c9-4-8(12)5-1-2-6(10)7(11)3-5/h5-8H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6N2/c4-2-1-3-5/h1-2,4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H14O5/c16-10-4-1-9(2-5-10)3-6-12(18)15-13(19)7-11(17)8-14(15)20/h1-2,4-5,7-8,16-17,19-20H,3,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4Cl2/c1-2(3)4/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9NO/c15-13-9-5-1-3-7-11(9)14-12-8-4-2-6-10(12)13/h1-8H,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H15NO2/c23-20-15-8-4-3-7-14(15)17-11-16-13-6-2-1-5-12(13)9-10-18(16)22-19(17)21(20)24/h1-11,20-21,23-24H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2S/c1-2-7-5-6(8(9)11)3-4-10-7/h3-5H,2H2,1H3,(H2,9,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10/c1-3-4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7ClO2/c10-8-4-1-7(2-5-8)3-6-9(11)12/h1-6H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11N/c1-2-3-4-5/h2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H31N3O/c1-7-21(3,4)15-13-16(22(5,6)8-2)20(26)19(14-15)25-23-17-11-9-10-12-18(17)24-25/h9-14,23-24,26H,7-8H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7NO/c7-5-1-3-6(8)4-2-5/h1-4,8H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O/c7-6-4-2-1-3-5-6/h6-7H,1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H11NO3/c17-15(13-6-2-1-3-7-13)10-9-12-5-4-8-14(11-12)16(18)19/h1-11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H9O3P/c1-5-7(3,4)6-2/h1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H26O/c1-2-3-4-5-6-7-8-9-10-11-12-13/h13H,2-12H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8Cl4O3/c9-3-1-2(8(14)15-7(1)13)4(10)6(12)5(3)11">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6S3/c10-9-11-6-8(12-9)7-4-2-1-3-5-7/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H9F3N2O2/c14-13(15,16)8-3-1-4-9(7-8)18-11-10(12(19)20)5-2-6-17-11/h1-7H,(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12/c1-6-4-2-3-5-6/h6H,2-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10O2/c10-7-5-8-3-1-2-4-9(8,6-7)11-8/h1-4,7,10H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H12O2/c1-5-6(8)9-7(2,3)4/h5H,1H2,2-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6S/c1-5-2-3-6-4-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H9Cl4O5P/c1-13-16(12,14-2)5(6(8,9)10)15-4(11)3-7/h5H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7ClO/c8-7-3-1-6(5-9)2-4-7/h1-4,9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5Cl4O2/c6-1-2(7)4(11)5(8,9)3(1)10">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H51O4P/c1-4-7-10-13-16-19-22-26-29(25,27-23-20-17-14-11-8-5-2)28-24-21-18-15-12-9-6-3/h4-24H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O/c1-2-6-4-3-5-7-6/h3-5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H12O/c19-17-11-13-6-2-3-7-14(13)16-10-9-12-5-1-4-8-15(12)18(16)17/h1-11,19H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H9NO3S/c1-5-4-6(12(9,10)11)2-3-7(5)8/h2-4H,8H2,1H3,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17NO/c1-4-13(5-2)12(14)11-8-6-7-10(3)9-11/h6-9H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12ClNO2/c1-8(15(18)19)9-2-4-11-12-7-10(16)3-5-13(12)17-14(11)6-9/h2-8,17H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H24O11/c13-1-4(16)7(18)11(5(17)2-14)23-12-10(21)9(20)8(19)6(3-15)22-12/h4-21H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H7N/c1-2-3/h2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H8N2O2S/c10-14(12,13)8-5-1-3-7-4-2-6-11-9(7)8/h1-6H,(H2,10,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H14ClN3O2S/c1-8-4-3-5-10(9(8)2)16-12-6-11(15)17-14(18-12)21-7-13(19)20/h3-6H,7H2,1-2H3,(H,19,20)(H,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14/c1-7-5-9(3)10(4)6-8(7)2/h5-6H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H34O4/c1-3-5-15-21-17(19)13-11-9-7-8-10-12-14-18(20)22-16-6-4-2/h3-16H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H18O2/c1-2-3-4-5-6-10-7-8-11(13)9-12(10)14/h7-9,13-14H,2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H21NO3/c1-7(11)4-10(5-8(2)12)6-9(3)13/h7-9,11-13H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10Cl2N2O2/c16-10-6-5-9(12(17)7-10)8-19-13-4-2-1-3-11(13)14(18-19)15(20)21/h1-7H,8H2,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H3Br3O/c7-3-1-4(8)6(10)5(9)2-3/h1-2,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H5N5/c6-5-7-1-3-4(10-5)9-2-8-3/h1-2H,(H3,6,7,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N/c1-3-7-11(8-4-1)13-12-9-5-2-6-10-12/h1-10,13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15ClO3/c1-4-15-11(14)12(2,3)16-10-7-5-9(13)6-8-10/h5-8H,4H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O2/c5-3-1-2-4-6/h5-6H,1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H23O4P/c1-3-5-12-16-19(15,17-13-6-4-2)18-14-10-8-7-9-11-14/h7-11H,3-6,12-13H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H20N2O5S/c21-18-15(28(25,26)27)10-14(22-11-6-2-1-3-7-11)16-17(18)20(24)13-9-5-4-8-12(13)19(16)23/h4-5,8-11,22H,1-3,6-7,21H2,(H,25,26,27)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4BrNO/c3-1-2(4)5/h1H2,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6Cl4N2O/c13-9-3-1-7(5-11(9)15)17-18(19)8-2-4-10(14)12(16)6-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2HF5/c3-1(4)2(5,6)7/h1H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H26O/c1-8-11-9-12(15(2,3)4)14(17)13(10-11)16(5,6)7/h9-10,17H,8H2,1-7H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H8O2/c16-15-11-5-1-3-9-7-8-10-4-2-6-12(17-15)14(10)13(9)11/h1-8H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4INO/c3-1-2(4)5/h1H2,(H2,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2S3/c1-5-7(12-13-8(5)11)6-4-9-2-3-10-6/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H4Cl3N/c7-3-1-2-4(10)6(9)5(3)8/h1-2H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N3O6/c1-6-9(13(16)17)7(2)11(15(20)21)8(12(3,4)5)10(6)14(18)19/h1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H12O/c16-15-13-7-3-1-5-11(13)9-10-12-6-2-4-8-14(12)15/h1-8H,9-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-7-4-5-8(2)9(3)6-7/h4-6H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO2/c9-8(10)11-6-7-4-2-1-3-5-7/h1-5H,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O6/c18-8-2-1-3-10-13(8)15(20)14-9(19)6-11-12(16(14)22-10)7-4-5-21-17(7)23-11/h1-3,6-7,17-19H,4-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5ClO4/c5-2(4(8)9)1-3(6)7/h2H,1H2,(H,6,7)(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6O2/c1-4-2-3-5(6)7-4/h2H,3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H4Cl2N2/c9-7-5-3-1-2-4-6(5)8(10)12-11-7/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H12O/c18-10-11-8-9-16-14-5-2-1-4-13(14)15-7-3-6-12(11)17(15)16/h1-9,18H,10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H8N2O4/c1-5-3-7(9(11)12)4-8(6(5)2)10(13)14/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2/c1-2-6-4-3-5-1/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O/c1-5-3-4-6(2)7-5/h3-4H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8O2/c8-5-6-1-3-7(9)4-2-6/h1-4,8-9H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H9NO3/c16-14-11-7-3-1-5-9(11)13(15(17)18)10-6-2-4-8-12(10)14/h1-8H,(H,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H38O5/c1-16(29)31-21-12-20-23(4)10-7-9-22(2,3)19(23)8-11-24(20,5)26(30)13-17(14-27)18(15-28)25(21,26)6/h14-15,19-21,30H,7-13H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20O6/c1-9(5-7-13(18)19)4-6-11-15(20)14-12(8-23-17(14)21)10(2)16(11)22-3/h4,20H,5-8H2,1-3H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13NO/c1-8(2)10(12)11-9-6-4-3-5-7-9/h3-8H,1-2H3,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7ClO2/c9-7-3-1-6(2-4-7)5-8(10)11/h1-4H,5H2,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7N/c1-2-4-9-7-10-6-5-8(9)3-1/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H6O8/c15-5-1-3-7-8-4(14(20)22-11(7)9(5)17)2-6(16)10(18)12(8)21-13(3)19/h1-2,15-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H2Cl4O/c7-2-1-3(8)5(10)6(11)4(2)9/h1,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H8/c1-7-5-3-2-4-6-7/h2-6H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Cl2N/c8-6-2-1-3-7(9)5(6)4-10/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16O3/c1-12(2)21-14-8-9-15-17(10-14)20-11-16(18(15)19)13-6-4-3-5-7-13/h3-12H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO/c11-10-7-3-5-8-4-1-2-6-9(8)10/h1-7H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H22ClN3O/c1-3-24(4-2)13-14-11-16(6-8-20(14)25)23-18-9-10-22-19-12-15(21)5-7-17(18)19/h5-12,25H,3-4,13H2,1-2H3,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H16N2S2/c1-2-6-10(7-3-1)15-17-13-14-11-8-4-5-9-12(11)16-13/h4-5,8-10,15H,1-3,6-7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H10N2O/c1-2-10(9-11)8-6-4-3-5-7-8/h3-7H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H2O3/c5-2-1-3(6)4(2)7/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H16O2/c1-15(2,11-3-7-13(16)8-4-11)12-5-9-14(17)10-6-12/h3-10,16-17H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H15NO2/c1-13(19)18-16-10-8-15(9-11-16)17(20)12-7-14-5-3-2-4-6-14/h2-12H,1H3,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4O3/c1-2(3)5-4/h4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20N2O4S/c1-11(18)12-7-9-14(10-8-12)22(20,21)17-15(19)16-13-5-3-2-4-6-13/h7-10,13H,2-6H2,1H3,(H2,16,17,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O/c1-4(2,3)5/h5H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14Cl2O3/c1-12(2,11(16)17)18-9-5-3-8(4-6-9)10-7-13(10,14)15/h3-6,10H,7H2,1-2H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c1-6-3-2-4-7(5-6)8(9)10/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7NO2/c1-2-3-4(5)6/h3H,2H2,1H3,(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O3/c1-4-2-6-3-5-1/h1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H18/c1-3-16-20-11-7-6-9-17(20)14(2)18-13-12-15-8-4-5-10-19(15)21(16)18/h4-13H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H8O2/c1-3-6-4(2)5/h3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O2/c1-2-13-8-5-3-7(4-6-8)11-9(10)12/h3-6H,2H2,1H3,(H3,10,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H6O/c1-3(2)4/h1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7Cl/c1-6-2-4-7(8)5-3-6/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H21NO/c1-3-5-7-11(4-2)10-13-9-6-8-12/h11H,3-7,9-10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6Cl2/c8-5-6-1-3-7(9)4-2-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H10O3/c14-12-9-5-4-8-11(12)13(15)16-10-6-2-1-3-7-10/h1-9,14H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H2ClN/c1-3(4)2-5/h1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O5/c1-3-9-5(7)11-6(8)10-4-2/h3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H20N2/c1-8(10(4)5)6-7-9(2)3/h8H,6-7H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-5-6(2)10(12)8(4)7(3)9(5)11/h1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H15N3O3/c1-4-7-13-10(16)14(8-5-2)12(18)15(9-6-3)11(13)17/h4-6H,1-3,7-9H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2O2/c15-12(16)10-5-8-7-3-1-2-4-9(7)14-11(8)6-13-10/h1-4,10,13-14H,5-6H2,(H,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H13N/c1-2-3-4-5-6/h2-6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H8N4O12/c10-6(11)18-1-5(2-19-7(12)13,3-20-8(14)15)4-21-9(16)17/h1-4H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H18O8/c1-23-10-7-11-13(8-4-5-26-20(8)27-11)18-15(10)16(22)14-9(21)6-12(24-2)17(25-3)19(14)28-18/h6-8,20-21H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClO2/c8-6-4-2-1-3-5(6)7(9)10/h1-4H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H10O/c7-6-4-2-1-3-5-6/h1-5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H21O4P/c1-16-10-12-19(13-11-16)23-26(22,24-20-8-4-6-17(2)14-20)25-21-9-5-7-18(3)15-21/h4-15H,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H10ClNO4/c15-8-5-6-10(14(19)20)12(7-8)16-11-4-2-1-3-9(11)13(17)18/h1-7,16H,(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H13NO/c1-2-3-4-5-6(7)8/h2-5H2,1H3,(H2,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H28O5S/c1-2-3-4-5-6-7-8-9-10-11-14(15)19-12-13-20(16,17)18/h2-13H2,1H3,(H,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6Cl4O2S/c13-5-1-7(15)11(17)9(3-5)19-10-4-6(14)2-8(16)12(10)18/h1-4,17-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H13NO/c23-22-20-11-9-14-5-1-3-7-16(14)18(20)13-19-17-8-4-2-6-15(17)10-12-21(19)22/h1-13H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H6Cl4O2S/c13-7-1-3-8(4-2-7)19(17,18)12-6-10(15)9(14)5-11(12)16/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H16ClO2P/c1-6(7(2,3)4)10-11(5,8)9/h6H,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H7Cl2NO2/c11-6-3-7(12)5-8(4-6)13-9(14)1-2-10(13)15/h3-5H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H12N2/c9-5-7-2-1-3-8(4-7)6-10/h1-4H,5-6,9-10H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H8Cl2O4S/c14-11-7(13(18)9-2-1-5-20-9)3-4-8(12(11)15)19-6-10(16)17/h1-5H,6H2,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H10O/c20-19-14-5-1-3-11-7-9-13-10-8-12-4-2-6-15(19)17(12)18(13)16(11)14/h1-10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N2/c1-5-4-6-2-3-7-5/h2-4H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H11NO/c1-2-4(6)3-5/h4,6H,2-3,5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H16O7/c1-6-14(22)12(8(3)20)16-13(15(6)23)18(4)10(25-16)5-9(21)11(7(2)19)17(18)24/h5,11,22-23H,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3NOS2/c5-2-1-7-3(6)4-2/h1H2,(H,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6FN/c10-8-5-7-3-1-2-4-9(7)11-6-8/h1-6H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O5/c16-9-3-1-8(2-4-9)13-7-12(19)15-11(18)5-10(17)6-14(15)20-13/h1-7,16-18H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O5/c8-4-1-3(7(11)12)2-5(9)6(4)10/h1-2,8-10H,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6O2/c1-3-5(6)7-4-2/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H18Cl3O4P/c1-7(4-10)14-17(13,15-8(2)5-11)16-9(3)6-12/h7-9H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14O2/c1-9(2)6-4-5-10(9,3)8(12)7(6)11/h6H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N2O4/c18-14-6-2-12(3-7-14)16(20)22-10-1-11-23-17(21)13-4-8-15(19)9-5-13/h2-9H,1,10-11,18-19H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12O2/c1-3-4-8-5-6-9(11)10(7-8)12-2/h3-7,11H,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H17Cl2NO4/c1-8(2)5-11(14(19)20)17-13(18)7-21-12-4-3-9(15)6-10(12)16/h3-4,6,8,11H,5,7H2,1-2H3,(H,17,18)(H,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H4Cl2O2/c8-5-1-4(7(10)11)2-6(9)3-5/h1-3H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O2/c1-3-4-5-8-6(2)7/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18/c1-2-6-10-8-4-3-7-9(10)5-1/h9-10H,1-8H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H9NO2/c1-2-7-3-5-8(6-4-7)9(10)11/h3-6H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H3Br5/c1-2-3(8)5(10)7(12)6(11)4(2)9/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N/c1-11(2,3)9-10-7-5-4-6-8-10/h4-8H,9H2,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3N/c1-2-3/h1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H42NO2/c1-26(2,3)22-27(4,5)24-13-15-25(16-14-24)30-20-19-29-18-17-28(6,7)21-23-11-9-8-10-12-23/h8-16H,17-22H2,1-7H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H50N/c1-4-5-6-7-8-9-10-11-12-13-14-15-16-17-18-22-25-28(2,3)26-27-23-20-19-21-24-27/h19-21,23-24H,4-18,22,25-26H2,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H18O4S/c1-3-5-6-8(4-2)7-12-13(9,10)11/h8H,3-7H2,1-2H3,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H26F3N3OS/c23-22(24,25)17-6-7-21-19(16-17)28(18-4-1-2-5-20(18)30-21)9-3-8-26-10-12-27(13-11-26)14-15-29/h1-2,4-7,16,29H,3,8-15H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H16O11/c24-11(9-31-14-3-1-5-16-20(14)12(25)7-18(33-16)22(27)28)10-32-15-4-2-6-17-21(15)13(26)8-19(34-17)23(29)30/h1-8,11,24H,9-10H2,(H,27,28)(H,29,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O4S/c19-15-9-6-11-10-13(23(20,21)22)7-8-14(11)16(15)18-17-12-4-2-1-3-5-12/h1-10,19H,(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O7S2/c19-13-7-6-10-8-12(26(20,21)22)9-14(27(23,24)25)15(10)16(13)18-17-11-4-2-1-3-5-11/h1-9,19H,(H,20,21,22)(H,23,24,25)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H22N2/c1-18(2)13-14-19(17-11-7-4-8-12-17)15-16-9-5-3-6-10-16/h3-12H,13-15H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H20O/c1-7(2)9-5-4-8(3)6-10(9)11/h7-11H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H19NO2/c1-17-14(16)13(11-7-3-2-4-8-11)12-9-5-6-10-15-12/h2-4,7-8,12-13,15H,5-6,9-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H24N2O3/c1-13(7-8-14-5-3-2-4-6-14)21-12-18(23)15-9-10-17(22)16(11-15)19(20)24/h2-6,9-11,13,18,21-23H,7-8,12H2,1H3,(H2,20,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H13N3O7S2/c17-12-8-11(27(21,22)23)6-9-7-13(28(24,25)26)15(16(20)14(9)12)19-18-10-4-2-1-3-5-10/h1-8,20H,17H2,(H,21,22,23)(H,24,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H25NO4/c1-17-21(26)19-11-8-12-20(23(19)29-22(17)18-9-4-2-5-10-18)24(27)28-16-15-25-13-6-3-7-14-25/h2,4-5,8-12H,3,6-7,13-16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H20N2S/c1-13(18(2)3)12-19-14-8-4-6-10-16(14)20-17-11-7-5-9-15(17)19/h4-11,13H,12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H50O2/c1-20(2)12-9-13-21(3)14-10-15-22(4)16-11-18-29(8)19-17-26-25(7)27(30)23(5)24(6)28(26)31-29/h20-22,30H,9-19H2,1-8H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H11NO2/c1-6(2,3)4-5(7)8/h4H2,1-3H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH5NO/c1-3-2/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N2O4S/c19-15-10-5-11-3-1-2-4-14(11)16(15)18-17-12-6-8-13(9-7-12)23(20,21)22/h1-10,19H,(H,20,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H17N4OS/c1-8-11(3-4-17)18-7-16(8)6-10-5-14-9(2)15-12(10)13/h5,7,17H,3-4,6H2,1-2H3,(H2,13,14,15)/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3N3O3/c7-1-4-2(8)6-3(9)5-1/h(H3,4,5,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H7NO2/c11-8-5-1-3-7-4-2-6-10(12)9(7)8/h1-6,11H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H4Cl6O4/c10-3-4(11)8(13)2(6(18)19)1(5(16)17)7(3,12)9(8,14)15/h1-2H,(H,16,17)(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O/c11-8-7-4-2-1-3-6(7)5-9-10-8/h1-5H,(H,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H11N5/c1-2-4-9(5-3-1)6-13-11-10-12(15-7-14-10)17-8-16-11/h1-5,7-8H,6H2,(H2,13,14,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H25NO5/c1-4-12-9-11(2)18(3,22)17(21)23-10-13-5-7-19-8-6-14(15(13)19)24-16(12)20/h4-5,11,14-15,22H,6-10H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H4N6O/c5-4-6-2-1(3(11)7-4)8-10-9-2/h(H4,5,6,7,8,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H38O7/c1-2-3-4-5-6-7-8-9-10-11-12-13-14-15-18(24)28-16-17(23)21-19(25)20(26)22(27)29-21/h17,23,25-27H,2-16H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H38O4/c1-5-9-11-16-21(7-3)27-23(25)19-14-13-15-20(18-19)24(26)28-22(8-4)17-12-10-6-2/h13-15,18,21-22H,5-12,16-17H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O2/c11-7-5-3-1-2-4-6(5)8(12)10-9-7/h1-4H,(H,9,11)(H,10,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NS2/c9-7-8-5-3-1-2-4-6(5)10-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O4/c5-1-3(7)4(8)2-6/h3-8H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-9(2)6-4-7(9)10(3)8(5-6)11-10/h6-8H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H20N2O3/c1-9(23)14-18(24)17-16-11-8-21-13-6-4-5-10(15(11)13)7-12(16)20(2,3)22(17)19(14)25/h4-6,8,12,16,21,24-25H,7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H32O9/c1-11(2)7-17(26)30-15-9-22(32-14(5)25)16(8-12(15)3)31-20-18(27)19(29-13(4)24)21(22,6)23(20)10-28-23/h8,11,15-16,18-20,27H,7,9-10H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H26O7/c1-10-5-6-18(8-23-11(2)20)13(7-10)26-16-14(22)15(25-12(3)21)17(18,4)19(16)9-24-19/h7,13-16,22H,5-6,8-9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H22O8/c1-7-4-9-16(5-18,12(22)10(7)20)15(3)13(24-8(2)19)11(21)14(25-9)17(15)6-23-17/h7,9,11,13-14,18,21H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O7/c1-6-3-7-14(4-16,11(20)8(6)17)13(2)10(19)9(18)12(22-7)15(13)5-21-15/h6-7,9-10,12,16,18-19H,3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H3N3S2/c3-1-4-5-2(6)7-1/h(H2,3,4)(H,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H6Cl8/c10-1-3-4(2-11)8(15)6(13)5(12)7(3,14)9(8,16)17/h3-4H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H11ClN4/c17-12-6-7-14-13(8-12)16(11-4-2-1-3-5-11)18-9-15-20-19-10-21(14)15/h1-10,20H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12/c1-2-8-5-7-3-4-9(8)6-7/h2-4,7-9H,1,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8Cl6/c13-8-9(14)11(16)7-5-2-1-4(3-5)6(7)10(8,15)12(11,17)18/h1-2,4-7H,3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H23NO6/c1-9-13(18)23-11-5-7-17-6-4-10(12(11)17)8-22-14(19)16(3,21)15(9,2)20/h4,9,11-12,20-21H,5-8H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H18O9/c17-9-3-1-8(5-10(9)18)2-4-13(20)25-12-7-16(24,15(22)23)6-11(19)14(12)21/h1-5,11-12,14,17-19,21,24H,6-7H2,(H,22,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H23N3/c1-14-6-8-18(16(3)10-14)21-12-20-13-22(5)19-9-7-15(2)11-17(19)4/h6-13H,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O6/c11-9-13-6-3(7(19)14-9)12-10(20)15(6)8-5(18)4(17)2(1-16)21-8/h2,4-5,8,16-18H,1H2,(H,12,20)(H3,11,13,14,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H34O4/c1-17(11-21)15-4-3-13-9-14-10-19(13,7-8-20(14,24)12-22)18(15,2)6-5-16(17)23/h13-16,21-24H,3-12H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H6N4O2/c1-4-2(3)5-6(7)8/h1H3,(H3,3,4,5)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H29ClO4/c1-12(26)24(29-13(2)27)8-6-16-14-10-20(25)19-11-21(28)15-9-18(15)23(19,4)17(14)5-7-22(16,24)3/h10-11,14-18H,5-9H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H18O/c1-9(2)8-4-6-10(3,11-9)7-5-8/h8H,4-7H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H30O3/c1-13-11-19-9-5-14-17(2,7-4-8-18(14,3)16(21)22)15(19)6-10-20(13,23)12-19/h14-15,23H,1,4-12H2,2-3H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H25NO5/c1-22-15-8-6-12-10-18(25-3)20(26-4)21(27-5)19(12)13-7-9-17(24-2)16(23)11-14(13)15/h7,9-10,22H,6,8,11H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H28O5/c1-19-7-5-13(23)9-12(19)3-4-14-15-6-8-21(26,17(25)11-22)20(15,2)10-16(24)18(14)19/h5,7,9,11,14-18,24-26H,3-4,6,8,10H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H24O3/c1-18-7-6-13-12-5-3-11(19)8-10(12)2-4-14(13)15(18)9-16(20)17(18)21/h3,5,8,13-17,19-21H,2,4,6-7,9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H24O2/c1-18-9-8-14-13-5-3-12(19)10-11(13)2-4-15(14)16(18)6-7-17(18)20/h3,5,10,14-17,19-20H,2,4,6-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2O5/c1-5-3-12(10(16)11-9(5)15)8-2-6(14)7(4-13)17-8/h3,6-8,13-14H,2,4H2,1H3,(H,11,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H3FN2O2/c5-2-1-6-4(9)7-3(2)8/h1H,(H2,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H28O3/c1-4-22(25-14(2)23)12-10-20-19-7-5-15-13-16(24)6-8-17(15)18(19)9-11-21(20,22)3/h1,18-20H,5-13H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H42O3/c1-16-7-12-27(29-15-16)17(2)24-23(30-27)14-22-20-6-5-18-13-19(28)8-10-25(18,3)21(20)9-11-26(22,24)4/h5,16-17,19-24,28H,6-15H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H20O6/c1-7-3-9-14(5-16,11(19)10(7)18)13(2)4-8(17)12(21-9)15(13)6-20-15/h7-9,12,16-17H,3-6H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H14O6/c17-10-2-1-8-13-9-4-12(19)11(18)3-7(9)5-16(13,21)6-22-15(8)14(10)20/h1-4,13,17-21H,5-6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H22O8/c1-25-16-4-10(5-17(26-2)21(16)27-3)18-11-6-14-15(30-9-29-14)7-12(11)20(23)13-8-28-22(24)19(13)18/h4-7,13,18-20,23H,8-9H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H14O5/c1-5-7(3)18-4-8-9(5)6(2)11(14)10(12(8)15)13(16)17/h4-5,7,10H,1-3H3,(H,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H7N3O2/c9-5-3-1-2-4-6(5)8(13)11-10-7(4)12/h1-3H,9H2,(H,10,12)(H,11,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H28O2/c1-18-9-7-13(20)11-12(18)3-4-14-15-5-6-17(21)19(15,2)10-8-16(14)18/h3,13-16,20H,4-11H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N2/c1-12-7-3-5-10(12)9-4-2-6-11-8-9/h2,4,6,8,10H,3,5,7H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11IN2O5/c10-4-2-12(9(16)11-8(4)15)7-1-5(14)6(3-13)17-7/h2,5-7,13-14H,1,3H2,(H,11,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16O/c1-6(2)10-4-8(10)7(3)9(11)5-10/h6-8H,4-5H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13NO4/c1-10(11,9(14)15)5-6-2-3-7(12)8(13)4-6/h2-4,12-13H,5,11H2,1H3,(H,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N2OS/c1-3-2-4(8)7-5(9)6-3/h2H,1H3,(H2,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H24O2/c1-3-20(22)11-9-18-17-6-4-13-12-14(21)5-7-15(13)16(17)8-10-19(18,20)2/h1,5,7,12,16-18,21-22H,4,6,8-11H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C21H30O2/c1-13(22)17-6-7-18-16-5-4-14-12-15(23)8-10-20(14,2)19(16)9-11-21(17,18)3/h4,16-19H,5-12H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O4/c11-8-5-9(13-2-12-8)15(3-14-5)10-7(18)6(17)4(1-16)19-10/h2-4,6-7,10,16-18H,1H2,(H2,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16N2O3S/c13-8(14)4-2-1-3-7-9-6(5-16-7)11-10(15)12-9/h6-7,9H,1-5H2,(H,13,14)(H2,11,12,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClN3O4S2/c8-4-1-5-7(2-6(4)16(9,12)13)17(14,15)11-3-10-5/h1-3H,(H,10,11)(H2,9,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6N2S/c10-7-8-5-3-1-2-4-6(5)9-7/h1-4H,(H2,8,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11BrN2O5/c10-4-2-12(9(16)11-8(4)15)7-1-5(14)6(3-13)17-7/h2,5-7,13-14H,1,3H2,(H,11,15,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H19N7O6/c20-19-25-15-14(17(30)26-19)23-11(8-22-15)7-21-10-3-1-9(2-4-10)16(29)24-12(18(31)32)5-6-13(27)28/h1-4,8,12,21H,5-7H2,(H,24,29)(H,27,28)(H,31,32)(H3,20,22,25,26,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H6N2OS/c1-3-2-6-5(9)7-4(3)8/h2H,1H3,(H2,6,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H24O5/c1-5-6-16(21)24-14-8-15-19(10-22-19)18(14,4)17(3)9-12(20)11(2)7-13(17)23-15/h5-7,11,14-15H,8-10H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H44O/c1-19(2)8-6-9-21(4)25-15-16-26-22(10-7-17-27(25,26)5)12-13-23-18-24(28)14-11-20(23)3/h12-13,19,21,24-26,28H,3,6-11,14-18H2,1-2,4-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H11NO2/c10-8(9(11)12)6-7-4-2-1-3-5-7/h1-5,8H,6,10H2,(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H26O2/c1-3-20(22)11-9-18-17-6-4-13-12-14(21)5-7-15(13)16(17)8-10-19(18,20)2/h1,4,15-18,22H,5-12H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H34O4/c1-14-12-18-19(22(4)9-6-17(27)13-21(14)22)7-10-23(5)20(18)8-11-24(23,15(2)25)28-16(3)26/h18-20H,6-13H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H22O6/c1-9-7-17-8-18(9,24)5-3-10(17)19-6-4-11(20)16(2,15(23)25-19)13(19)12(17)14(21)22/h4,6,10-13,20,24H,1,3,5,7-8H2,2H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12/c1-2-9-7-4-5-8(6-7)10(9)3-1/h1-2,4-5,7-10H,3,6H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16/c1-7-4-5-8-6-9(7)10(8,2)3/h4,8-9H,5-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H43NO/c1-16-5-8-23-17(2)25-24(28(23)15-16)14-22-20-7-6-18-13-19(29)9-11-26(18,3)21(20)10-12-27(22,25)4/h6,16-17,19-25,29H,5,7-15H2,1-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H40O5/c1-13(4-7-21(28)29)16-5-6-17-22-18(12-20(27)24(16,17)3)23(2)9-8-15(25)10-14(23)11-19(22)26/h13-20,22,25-27H,4-12H2,1-3H3,(H,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8N2O8/c9-7(10)15-3-1-13-6-4(16-8(11)12)2-14-5(3)6/h3-6H,1-2H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H24/c1-11-6-5-7-12(2)13-10-15(3,4)14(13)9-8-11/h6,13-14H,2,5,7-10H2,1,3-4H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H5N3O2/c1-2-3(8)5-4(9)7-6-2/h1H3,(H2,5,7,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12N2O5/c12-4-6-5(13)3-8(16-6)11-2-1-7(14)10-9(11)15/h1-2,5-6,8,12-13H,3-4H2,(H,10,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O3/c11-9-8-10(13-3-12-9)15(4-14-8)7-1-5(17)6(2-16)18-7/h3-7,16-17H,1-2H2,(H2,11,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H12O2/c1-3-5-6(7)8-4-2/h3-5H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO/c1-6(9)7-2-4-8-5-3-7/h2-5H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H3Cl2N/c6-4-2-1-3-5(7)8-4/h1-3H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H8O2/c1-3(5)2-4/h3-5H,2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C4H10O/c1-4(2)3-5/h4-5H,3H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H8O2/c1-4-2-3-5(7)6(4)8/h4H,2-3H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O3/c1-6-4-10(12)13-9-5-7(11)2-3-8(6)9/h2-5,11H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H15N/c1-3-11(4-2)10-8-6-5-7-9-10/h5-9H,3-4H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H14O2/c1-4-5-6-10-8(9)7(2)3/h2,4-6H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N2O2/c1-10(2)9(12)13-8-5-4-6-11(3)7-8/h4-7H,1-3H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H24N2O2/c1-3-9(7-13)11-5-6-12-10(4-2)8-14/h9-14H,3-8H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H14O/c1-3-7-4-5-9(2)8(6-7)10-9/h3,7-8H,1,4-6H2,2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H9NO/c11-10-8-4-2-1-3-7(8)5-6-9(10)12/h1-6,12H,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20N2S/c1-19-11-10-14(12-19)13-20-15-6-2-4-8-17(15)21-18-9-5-3-7-16(18)20/h2-9,14H,10-13H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H38O4/c1-4-5-6-7-24(29)30-26(17(2)27)15-13-23-22-10-8-18-16-19(28)9-11-20(18)21(22)12-14-25(23,26)3/h21-23H,4-16H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5NO3S/c9-7-5-3-1-2-4-6(5)12(10,11)8-7/h1-4H,(H,8,9)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H8O7S2/c11-9-4-6-1-2-8(18(12,13)14)3-7(6)5-10(9)19(15,16)17/h1-5,11H,(H,12,13,14)(H,15,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H7N/c7-6-4-2-1-3-5-6/h1-5H,7H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H20ClN3O6S2/c1-16-14(24)22-13-17(26,12(23)18(22,30-29-16)15(25)21(16)3)7-6-8(19)10(27-4)11(28-5)9(7)20(13)2/h6,12-13,23,26H,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H26O4S/c1-2-3-4-5-6-7-8-9-10-11-12-16-17(13,14)15/h2-12H2,1H3,(H,13,14,15)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C14H11Cl2NO2/c15-10-5-3-6-11(16)14(10)17-12-7-2-1-4-9(12)8-13(18)19/h1-7,17H,8H2,(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N5O5/c11-7-4-8(14-10(19)13-7)15(2-12-4)9-6(18)5(17)3(1-16)20-9/h2-3,5-6,9,16-18H,1H2,(H3,11,13,14,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H23NO5/c1-23-17-7-11(8-18(24-2)19(17)25-3)6-14-13-10-16(22)15(21)9-12(13)4-5-20-14/h7-10,14,20-22H,4-6H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H12N4O9S2/c21-15-13(18-17-9-1-5-11(6-2-9)30(24,25)26)14(16(22)23)19-20(15)10-3-7-12(8-4-10)31(27,28)29/h1-8,13H,(H,22,23)(H,24,25,26)(H,27,28,29)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H24N2O9/c1-21(32)7-5-4-6-8(25)9(7)15(26)10-12(21)17(28)13-14(24(2)3)16(27)11(20(23)31)19(30)22(13,33)18(10)29/h4-6,10-14,17,25,28,32-33H,1-3H3,(H2,23,31)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H15N5O/c1-4-9-6-11-7(10-5(2)3)13-8(14)12-6/h5H,4H2,1-3H3,(H3,9,10,11,12,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H7Cl2N3O/c4-6-1-7(5)3-8(9)2-6/h9H,1-3H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H14NO/c1-7(2)3-5-8-6-4-7/h3-6H2,1-2H3/q+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H15Cl3N2O/c19-14-3-1-13(2-4-14)11-24-18(10-23-8-7-22-12-23)16-6-5-15(20)9-17(16)21/h1-9,12,18H,10-11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C6H5N3O/c10-9-6-4-2-1-3-5(6)7-8-9/h1-4,10H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H15ClN2/c1-19-10-9-18-16(12-5-3-2-4-6-12)14-11-13(17)7-8-15(14)19/h2-8,11H,9-10H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C24H36O4/c1-14(4-9-22(27)28)18-7-8-19-17-6-5-15-12-16(25)10-11-23(15,2)20(17)13-21(26)24(18,19)3/h14-15,17-20H,4-13H2,1-3H3,(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13NO2S/c11-9(10(12)13)7-14-6-8-4-2-1-3-5-8/h1-5,9H,6-7,11H2,(H,12,13)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H14N2O3/c1-2-9-6(10)4-3-5(8)7(11)12/h5H,2-4,8H2,1H3,(H,9,10)(H,11,12)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H40N2O4/c1-6-18-17-31-10-8-20-14-27(33-3)29(35-5)16-23(20)25(31)12-21(18)11-24-22-15-28(34-4)26(32-2)13-19(22)7-9-30-24/h13-16,18,21,24-25,30H,6-12,17H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H5ClF3N/c8-6-2-1-4(12)3-5(6)7(9,10)11/h1-3H,12H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H30N2/c1-3-23(4-2)15-10-16-24(21-13-6-5-7-14-21)22-17-19-11-8-9-12-20(19)18-22/h5-9,11-14,22H,3-4,10,15-18H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N2O9P/c12-5-1-2-11(9(15)10-5)8-7(14)6(13)4(20-8)3-19-21(16,17)18/h1-2,4,6-8,13-14H,3H2,(H,10,12,15)(H2,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2/c11-6-5-8-7-12-10-4-2-1-3-9(8)10/h1-4,7,12H,5-6,11H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H28N2O4/c1-5-6-18(23)20-14-7-8-17(16(9-14)13(4)21)24-11-15(22)10-19-12(2)3/h7-9,12,15,19,22H,5-6,10-11H2,1-4H3,(H,20,23)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClF/c8-5-6-1-3-7(9)4-2-6/h1-4H,5H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H24N5O8P/c1-3-5-11(24)22-16-13-17(20-8-19-16)23(9-21-13)18-15(30-12(25)6-4-2)14-10(29-18)7-28-32(26,27)31-14/h8-10,14-15,18H,3-7H2,1-2H3,(H,26,27)(H,19,20,22,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C5H4FN/c6-5-2-1-3-7-4-5/h1-4H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H38O3/c1-4-6-7-8-9-25(29)30-27(5-2)17-15-24-23-12-10-19-18-20(28)11-13-21(19)22(23)14-16-26(24,27)3/h2,18,21-24H,4,6-17H2,1,3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H18N6O6/c24-6-11-13(25)14(26)17(29-11)22-8-21-12-15(19-7-20-16(12)22)18-5-9-1-3-10(4-2-9)23(27)28/h1-4,7-8,11,13-14,17,24-26H,5-6H2,(H,18,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H12N2O6/c13-3-5-2-12(10(17)11-9(5)16)8-1-6(15)7(4-14)18-8/h2-3,6-8,14-15H,1,4H2,(H,11,16,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N4O8P/c15-6-4(1-21-23(18,19)20)22-10(7(6)16)14-3-13-5-8(14)11-2-12-9(5)17/h2-4,6-7,10,15-16H,1H2,(H,11,12,17)(H2,18,19,20)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H6N2O/c11-8-6-3-1-2-4-7(6)9-5-10-8/h1-5H,(H,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H38N2O4/c1-6-18-17-31-10-8-20-14-27(33-3)29(35-5)16-23(20)25(31)12-21(18)11-24-22-15-28(34-4)26(32-2)13-19(22)7-9-30-24/h13-16,24-25,30H,6-12,17H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H30O2/c1-13(2)14-6-8-16-15(12-14)7-9-17-19(16,3)10-5-11-20(17,4)18(21)22/h7,12-13,16-17H,5-6,8-11H2,1-4H3,(H,21,22)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H12O5/c21-11-5-7-15-17(9-11)24-18-10-12(22)6-8-16(18)20(15)14-4-2-1-3-13(14)19(23)25-20/h1-10,21-22H">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H10O7/c16-7-3-9(17)8-5-12(20)15(22-13(8)4-7)6-1-10(18)14(21)11(19)2-6/h1-5H,(H5-,16,17,18,19,20,21)/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H34O3/c1-2-3-4-11-14-17(19)15-12-9-7-5-6-8-10-13-16-18(20)21/h9,12,17,19H,2-8,10-11,13-16H2,1H3,(H,20,21)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H7NO2/c1-8-4-2-3-6(5-8)7(9)10/h2-5H,1H3/p+1">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6O3/c8-6-4-2-1-3-5(6)7(9)10/h1-4,8H,(H,9,10)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C7H6ClN3/c8-4-1-2-5-6(3-4)11-7(9)10-5/h1-3H,(H3,9,10,11)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C23H29NO3/c1-3-18-26-23(19-10-6-4-7-11-19,20-12-8-5-9-13-20)22(25)27-21-14-16-24(2)17-15-21/h4-13,21H,3,14-18H2,1-2H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H14N5O8P/c11-10-13-7-4(8(18)14-10)12-2-15(7)9-6(17)5(16)3(23-9)1-22-24(19,20)21/h2-3,5-6,9,16-17H,1H2,(H2,19,20,21)(H3,11,13,14,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H21N3O2/c1-15-7-8-17(3)13(15)18(4)12-6-5-10(9-11(12)15)20-14(19)16-2/h5-6,9,13H,7-8H2,1-4H3,(H,16,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C27H46/c1-19(2)9-8-10-20(3)23-14-15-24-22-13-12-21-11-6-7-17-26(21,4)25(22)16-18-27(23,24)5/h12,19-20,22-25H,6-11,13-18H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C20H32O2/c1-12-11-20(3)13(10-17(12)21)4-5-14-15-6-7-18(22)19(15,2)9-8-16(14)20/h12-16,18,22H,4-11H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C8H11NO3/c1-5-8(12)7(4-11)6(3-10)2-9-5/h2,10-12H,3-4H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C18H14N2O6S/c1-10-6-7-14(15(8-10)27(24,25)26)19-20-16-12-5-3-2-4-11(12)9-13(17(16)21)18(22)23/h2-9,21H,1H3,(H,22,23)(H,24,25,26)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH5N/c1-2/h2H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C15H25NO2/c1-11-7-6-8-14(12(11)2)18-10-13(17)9-16-15(3,4)5/h6-8,13,16-17H,9-10H2,1-5H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/CH4N2O2/c1-2-3(4)5/h2H,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H8Cl6O/c13-8-9(14)11(16)5-3-1-2(6-7(3)19-6)4(5)10(8,15)12(11,17)18/h2-7H,1H2">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C19H28N4O5/c1-12(2)8-15(19(27)28)23-18(26)14(9-13-6-4-3-5-7-13)22-17(25)11-21-16(24)10-20/h3-7,12,14-15H,8-11,20H2,1-2H3,(H,21,24)(H,22,25)(H,23,26)(H,27,28)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C12H12N2O/c1-7-12-10(4-5-13-7)9-3-2-8(15)6-11(9)14-12/h2-3,6,14-15H,4-5H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C29H48O2/c1-19(2)8-7-9-20(3)25-12-13-26-24-11-10-22-18-23(31-21(4)30)14-16-28(22,5)27(24)15-17-29(25,26)6/h10,19-20,23-27H,7-9,11-18H2,1-6H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13NO2/c1-10-6-9(12)7-3-2-4-8(11)5-7/h2-5,9-12H,6H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C2H4N4/c3-2-4-1-5-6-2/h1H,(H3,3,4,5,6)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H12IN3O4/c10-4-2-13(9(16)12-8(4)11)7-1-5(15)6(3-14)17-7/h2,5-7,14-15H,1,3H2,(H2,11,12,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H10N2O5/c10-6(9(13)14)3-5-1-2-8(12)7(4-5)11(15)16/h1-2,4,6,12H,3,10H2,(H,13,14)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C16H22N4O/c1-19(2)11-12-20(16-17-9-4-10-18-16)13-14-5-7-15(21-3)8-6-14/h4-10H,11-13H2,1-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H24N2O8/c1-21(31)8-5-4-6-11(25)12(8)16(26)13-9(21)7-10-15(24(2)3)17(27)14(20(23)30)19(29)22(10,32)18(13)28/h4-6,9-10,13-15,25,31-32H,7H2,1-3H3,(H2,23,30)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C22H25NO6/c1-12(24)23-16-8-6-13-10-19(27-3)21(28-4)22(29-5)20(13)14-7-9-18(26-2)17(25)11-15(14)16/h7,9-11,16H,6,8H2,1-5H3,(H,23,24)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C17H21NO4/c1-18-13-7-11(8-14(18)16-15(13)22-16)21-17(20)12(9-19)10-5-3-2-4-6-10/h2-6,11-16,19H,7-9H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C13H22N4O3S/c1-14-13(9-17(18)19)15-6-7-21-10-12-5-4-11(20-12)8-16(2)3/h4-5,9H,6-8,10H2,1-3H3,(H,14,15)(H,18,19)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C9H13N3O5/c10-5-1-2-12(9(16)11-5)8-7(15)6(14)4(3-13)17-8/h1-2,4,6-8,13-15H,3H2,(H2,10,11,16)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C3H3N3O2/c7-2-4-1-5-3(8)6-2/h1H,(H2,4,5,6,7,8)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H16/c1-7-8-4-5-9(6-8)10(7,2)3/h8-9H,1,4-6H2,2-3H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C26H54O8/c1-2-3-4-5-6-7-8-9-10-11-13-28-15-17-30-19-21-32-23-25-34-26-24-33-22-20-31-18-16-29-14-12-27/h27H,2-26H2,1H3">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C10H13N3O4/c11-7-1-2-13(10(17)12-7)6-3-5(4-14)8(15)9(6)16/h1-3,6,8-9,14-16H,4H2,(H2,11,12,17)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
- <rdf:Description rdf:about="http://localhost:4000/InChI=1S/C11H9N3O3S/c15-8(12-6-4-2-1-3-5-6)7-9(16)13-11(18)14-10(7)17/h1-5,7H,(H,12,15)(H2,13,14,16,17,18)">
- <ns0:jm040835a xmlns:ns0="http://dx.doi.org/10.1021/">false</ns0:jm040835a>
- </rdf:Description>
-</rdf:RDF>
diff --git a/features/dataset.feature b/features/dataset.feature
deleted file mode 100644
index a606b9c..0000000
--- a/features/dataset.feature
+++ /dev/null
@@ -1,11 +0,0 @@
-@rest
-Feature: Dataset
-
- Scenario Outline: Create a dataset
- Given Content-Type is application/rdf+xml
- When I post <data> to the dataset webservice
- Then I should receive a valid URI
-
- Examples:
- |data|
- |file: hamster_carcinogenicity.owl|
diff --git a/features/fminer.feature b/features/fminer.feature
deleted file mode 100644
index 5e56551..0000000
--- a/features/fminer.feature
+++ /dev/null
@@ -1,16 +0,0 @@
-@rest
-Feature: Fminer
-
- Scenario Outline: Create fminer features
- Given Content-Type is application/rdf+xml
- And I post <data> to the dataset webservice
- And I apply fminer for <feature>
- When the task is completed
- Then I should receive a valid URI
-
- Examples:
- |feature |data |
- |http://ambit.uni-plovdiv.bg:8080/ambit2/feature/12156 |file: hamster_carcinogenicity_ambit.owl|
- |http://www.epa.gov/NCCT/dsstox/CentralFieldDef.html#ActivityOutcome_CPDBAS_Hamster|file: hamster_carcinogenicity.owl|
- # this is too big for sqlite
-
diff --git a/features/lazar_single_prediction.feature b/features/lazar_single_prediction.feature
deleted file mode 100644
index 3597e1c..0000000
--- a/features/lazar_single_prediction.feature
+++ /dev/null
@@ -1,19 +0,0 @@
-@rest
-Feature: Create a model and predict an unknown compound
- As a toxicologist
- I want to create a lazar model
- In order to predict the toxicity of a compound
-
- Scenario Outline:
- Given Content-Type is application/rdf+xml
- And I post <data> to the dataset webservice
- And I create a lazar model for <feature>
- When the task is completed
- Then I should receive a valid URI
- And the model should predict <prediction> for <smiles>
-
- Examples:
- |feature |data |smiles |prediction|
- |http://www.epa.gov/NCCT/dsstox/CentralFieldDef.html#ActivityOutcome_CPDBAS_Hamster|file: hamster_carcinogenicity.owl|c1ccccc1NN|true |
- #|http://ambit.uni-plovdiv.bg:8080/ambit2/feature/12156|file: hamster_carcinogenicity_ambit.owl|c1ccccc1NN|true |
-
diff --git a/features/step_definitions/common_steps.rb b/features/step_definitions/common_steps.rb
deleted file mode 100644
index c912cee..0000000
--- a/features/step_definitions/common_steps.rb
+++ /dev/null
@@ -1,66 +0,0 @@
-Given /^Content-Type is (.*)/ do |content_type|
- @content_type = content_type
-end
-
-When /^I post (.*) to the (.*) webservice$/ do |data,component|
- #puts @@config[:services].to_yaml
- #puts @@config[:services]["opentox-#{component}"]
- case data
- when /^file:/
- data = File.read(File.join(File.dirname(File.expand_path(__FILE__)),"../data",data.sub(/file:\s+/,'')))
- @data = data
- end
- @uri = RestClient::Resource.new(@@config[:services]["opentox-#{component}"], :user => @@users[:users].keys[0], :password => @@users[:users].values[0]).post data, :content_type => @content_type
- puts @uri
- @resources << @uri unless /compound|feature/ =~ component
-end
-
-Given /^The dataset uri is (.*)$/ do |uri|
- @uri = uri
- # do not delete this !!
-end
-
-When /^the task is completed$/ do
- @task.wait_for_completion
- @uri = @task.resource
- #puts @uri
- @resources << @uri
-end
-
-Then /^I should receive a valid URI$/ do
- #puts @uri
- @response = RestClient.get @uri, :accept => '*/*'
- #puts @response.to_yaml
-end
-
-Then /^the URI should contain (.+)$/ do |result|
- #puts @uri
- regexp = /#{Regexp.escape(URI.encode(result))}/
- assert regexp =~ @uri, true
-end
-
-Then /^the URI response should be (.+)$/ do |data|
- case data
- when /^file:/
- data = @data
- end
- #puts data
- #puts @response
- assert data == @response, true
-end
-
-Then /^I should receive valid DATA$/ do
- #puts @uri
- @response = RestClient.get @uri, :accept => @content_type
- puts @response.to_yaml
-end
-
-Then /^the DATA Content-Type should be (.+)$/ do |content_type|
- case @content_type
- when "image/gif"
- response_type = @data.to_s.slice(0,3)
- case_type = "GIF"
- end
- assert case_type = response_type, true
-end
-
diff --git a/features/step_definitions/fminer_step.rb b/features/step_definitions/fminer_step.rb
deleted file mode 100644
index 1cfcead..0000000
--- a/features/step_definitions/fminer_step.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-When /^I apply fminer for (.*)$/ do |feature_uri|
- dataset_uri = @uri
- resource = RestClient::Resource.new(File.join(@@config[:services]["opentox-algorithm"], "fminer"), :timeout => 60, :user => @@users[:users].keys[0], :password => @@users[:users].values[0])
- @uri = resource.post :dataset_uri => dataset_uri, :feature_uri => feature_uri
- @task = OpenTox::Task.find(@uri)
- @resources << @uri
- #puts @uri
-end
diff --git a/features/step_definitions/lazar_steps.rb b/features/step_definitions/lazar_steps.rb
deleted file mode 100644
index a049153..0000000
--- a/features/step_definitions/lazar_steps.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-When /^I create a lazar model for (.*)$/ do |feature_uri|
- training_uri = @uri
- #puts `curl #{training_uri}`
- resource = RestClient::Resource.new(File.join(@@config[:services]["opentox-algorithm"], "lazar"), :user => @@users[:users].keys[0], :password => @@users[:users].values[0])
- @uri = resource.post :dataset_uri => training_uri, :feature_uri => feature_uri, :feature_generation_uri => File.join(@@config[:services]["opentox-algorithm"], "fminer")
- @task = OpenTox::Task.find(@uri)
- @resources << @uri
- #puts @uri.to_yaml
-end
-
-Then /^the model should predict (.*) for (.*)$/ do |activity,smiles|
- compound_uri = OpenTox::Compound.new(:smiles => smiles).uri
- #puts @uri
- #puts compound_uri
- resource = RestClient::Resource.new(@uri, :user => @@users[:users].keys[0], :password => @@users[:users].values[0])
- prediction_rdf = resource.post :compound_uri => compound_uri#, :accept => "application/x-yaml"
- model = Redland::Model.new Redland::MemoryStore.new
- parser = Redland::Parser.new
- parser.parse_string_into_model(model,prediction_rdf,'/')
-
- puts prediction_rdf
- model.subjects(RDF['type'], OT['FeatureValue']).each do |v|
- feature = model.object(v,OT['feature'])
- feature_name = model.object(feature,DC['title']).to_s
- prediction = model.object(v,OT['value']).to_s if feature_name.match(/classification/)
- end
-=begin
- model.subjects(RDF['type'], OT['FeatureValue']).each do |v|
- feature = model.object(v,OT['feature'])
- feature_name = model.object(feature,DC['title']).to_s
- prediction = model.object(v,OT['value']).to_s if feature_name.match(/classification/)
- end
-=end
- puts prediction
- assert_equal activity.to_s, prediction
-end
-
diff --git a/features/step_definitions/task_steps.rb b/features/step_definitions/task_steps.rb
deleted file mode 100644
index 1290350..0000000
--- a/features/step_definitions/task_steps.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-When /^I create a task$/ do
-
- @uri = RestClient::Resource.new(@@config[:services]["opentox-task"], :user => @@users[:users].keys[0], :password => @@users[:users].values[0]).post nil
- @resources << @uri
-end
-
-When /^I finish the task for (.*)$/ do |resource|
- RestClient::Resource.new(File.join(@uri,"completed"), :user => @@users[:users].keys[0], :password => @@users[:users].values[0]).put :resource => resource
-end
-
-
-Then /^the status should be "([^\"]*)"$/ do |status|
- return_status = RestClient.get File.join(@uri,"status")
- assert_equal status, return_status
-end
-
-Then /^the resource should be (.*)$/ do |uri|
- resource = RestClient.get File.join(@uri,"resource")
- assert_equal uri, resource
-end
-
diff --git a/features/support/env.rb b/features/support/env.rb
deleted file mode 100644
index 098bc71..0000000
--- a/features/support/env.rb
+++ /dev/null
@@ -1,5 +0,0 @@
-require 'opentox-ruby-api-wrapper'
-require 'test/unit/assertions'
-
-World(Test::Unit::Assertions)
-
diff --git a/features/support/hooks.rb b/features/support/hooks.rb
deleted file mode 100644
index 0bc5f6f..0000000
--- a/features/support/hooks.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-Before do
- @resources = []
-end
-
-After do |scenario|
- @resources.uniq!
- @resources.each do |resource|
- begin
- RestClient::Resource.new(resource, :user => @@users[:users].keys[0], :password => @@users[:users].values[0]).delete
- rescue
- puts "Cannot delete " + resource
- end
- end
-end
diff --git a/features/task_complete.feature b/features/task_complete.feature
deleted file mode 100644
index 53bf322..0000000
--- a/features/task_complete.feature
+++ /dev/null
@@ -1,13 +0,0 @@
-@rest @task
-Feature: Create and complete a Task
-
- Scenario Outline: Create and complete a task
- Given I create a task
- When I finish the task for <resource>
- Then the status should be "completed"
- And the resource should be <resource>
-
- Examples:
- |resource|
- |http://my_test_uri|
-
diff --git a/features/task_create.feature b/features/task_create.feature
deleted file mode 100644
index 0e591ac..0000000
--- a/features/task_create.feature
+++ /dev/null
@@ -1,12 +0,0 @@
-@rest
-Feature: Create Task
-
- Scenario Outline: Create a task
- When I create a task
- Then I should receive a valid URI
- And the status should be "created"
-
- Examples:
- |resource|
- |http://my_test_uri|
-
diff --git a/fminer.rb b/fminer.rb
index 666c00b..d2a7721 100644
--- a/fminer.rb
+++ b/fminer.rb
@@ -5,57 +5,44 @@ require 'validate-owl.rb'
class FminerTest < Test::Unit::TestCase
- def setup
- @dataset = OpenTox::Dataset.new "http://localhost/dataset/1"
- @feature = "http://localhost/dataset/1/feature/Hamster%20Carcinogenicity"
- @bbrc = OpenTox::Algorithm::Generic.new "http://localhost/algorithm/fminer/bbrc"
- @last = OpenTox::Algorithm::Generic.new "http://localhost/algorithm/fminer/last"
- end
-
- def teardown
- end
-
=begin
=end
def test_bbrc
- dataset = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @dataset.uri, :prediction_feature => @feature}).to_s
- #dataset = @bbrc.run({:dataset_uri => @dataset.uri, :prediction_feature => @feature}).to_s
- d =OpenTox::Dataset.new dataset
+ feature = @@classification_training_dataset.features.keys.first
+ dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature}).to_s
+ d =OpenTox::Dataset.new dataset_uri
d.load_features
assert_equal 41, d.features.size
#validate_owl
+ d.delete
end
def test_last
- dataset = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @dataset.uri, :prediction_feature => @feature}).to_s
- d =OpenTox::Dataset.new dataset
+ feature = @@classification_training_dataset.features.keys.first
+ dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@classification_training_dataset.uri, :prediction_feature => feature}).to_s
+ d =OpenTox::Dataset.new dataset_uri
d.load_features
assert_equal 36, d.features.size
#validate_owl
+ d.delete
end
def test_regression_bbrc
- @dataset = OpenTox::Dataset.new
- @dataset.save
- @dataset.load_csv(File.open("data/EPAFHM.csv").read)
- @dataset.save
- @feature = File.join @dataset.uri,"feature/LC50_mmol"
- dataset = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @dataset.uri, :prediction_feature => @feature}).to_s
- d =OpenTox::Dataset.new dataset
+ feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol"
+ dataset_uri = OpenTox::Algorithm::Fminer::BBRC.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature}).to_s
+ d =OpenTox::Dataset.new dataset_uri
d.load_features
assert_equal 222, d.features.size
+ d.delete
end
def test_regression_last
- @dataset = OpenTox::Dataset.new
- @dataset.save
- @dataset.load_csv(File.open("data/EPAFHM.csv").read)
- @dataset.save
- @feature = File.join @dataset.uri,"feature/LC50_mmol"
- dataset = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @dataset.uri, :prediction_feature => @feature}).to_s
- d =OpenTox::Dataset.new dataset
+ feature = File.join @@regression_training_dataset.uri,"feature/LC50_mmol"
+ dataset_uri = OpenTox::Algorithm::Fminer::LAST.new.run({:dataset_uri => @@regression_training_dataset.uri, :prediction_feature => feature}).to_s
+ d =OpenTox::Dataset.new dataset_uri
d.load_features
assert_equal 16, d.features.size
+ d.delete
end
=begin
=end
diff --git a/lazar.rb b/lazar.rb
index 5e6bfef..bfa372d 100644
--- a/lazar.rb
+++ b/lazar.rb
@@ -4,76 +4,51 @@ require 'test/unit'
class LazarTest < Test::Unit::TestCase
- def setup
- @dataset = OpenTox::Dataset.new "http://localhost/dataset/1"
- end
-
- def teardown
- end
-
=begin
=end
def test_create_regression_model
- @dataset = OpenTox::Dataset.create
- @dataset.load_csv(File.open("data/EPAFHM.csv").read)
- @dataset.save
- @feature = File.join @dataset.uri,"feature/LC50_mmol"
- @model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @dataset.uri}).to_s
- model = OpenTox::Model::Lazar.find @model_uri
- puts model.to_yaml
- end
-
- def test_regr_prediction
- lazar = OpenTox::Model::Lazar.find("http://localhost/model/8")
+ model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@regression_training_dataset.uri}).to_s
+ lazar = OpenTox::Model::Lazar.find model_uri
+ assert_equal lazar.features.size, 222
compound = OpenTox::Compound.from_smiles("c1ccccc1NN")
- prediction = lazar.run(:compound_uri => compound.uri)
- puts prediction
+ prediction_uri = lazar.run(:compound_uri => compound.uri)
+ prediction = OpenTox::LazarPrediction.find(prediction_uri)
+ assert_equal prediction.value(compound), 0.149518871336721
+ assert_equal prediction.confidence(compound), 0.615246530364447
+ assert_equal prediction.neighbors(compound).size, 81
+ prediction.delete
+ lazar.delete
end
def test_default_classification_model
- @dataset_uri = "http://localhost/dataset/1"
- feature = "http://localhost/dataset/1/feature/Hamster%20Carcinogenicity"
- lazar = OpenTox::Algorithm::Lazar.new
- @model_uri = lazar.run({:dataset_uri => @dataset.uri, :prediction_feature => feature, :feature_generation_uri => File.join(CONFIG[:services]["opentox-algorithm"], "fminer","bbrc")}).to_s
- model = YAML.load(OpenTox::RestClientWrapper.get(@model_uri,:accept => "application/x-yaml"))
- assert_equal 41, model.features.size
- puts model.to_yaml
- end
-
- def test_classification_prediction
- lazar = OpenTox::Model::Lazar.find("http://localhost/model/7")
+ # create model
+ model_uri = OpenTox::Algorithm::Lazar.new.run({:dataset_uri => @@classification_training_dataset.uri}).to_s
+ lazar = OpenTox::Model::Lazar.find model_uri
+ assert_equal lazar.features.size, 41
+ # single prediction
compound = OpenTox::Compound.from_smiles("c1ccccc1NN")
- prediction = lazar.run(:compound_uri => compound.uri)
- puts prediction
- end
-
-=begin
- def test_prediction_with_database_activity
- lazar = OpenTox::Model::Lazar.find("http://localhost/model/7")
+ prediction_uri = lazar.run(:compound_uri => compound.uri)
+ prediction = OpenTox::LazarPrediction.find(prediction_uri)
+ assert_equal prediction.value(compound), false
+ assert_equal prediction.confidence(compound), 0.25857114104619
+ assert_equal prediction.neighbors(compound).size, 15
+ prediction.delete
+ # dataset activity
compound = OpenTox::Compound.from_smiles("CNN")
- prediction = lazar.run(:compound_uri => compound.uri)
- puts prediction
- end
-
- def test_dataset_prediction
- uri = RestClient.post('http://localhost/dataset', {:file => File.new("data/multicolumn.csv")},{:accept => "text/uri-list"}).to_s.chomp
- lazar = OpenTox::Model::Lazar.find("http://localhost/model/7")
- #prediction = lazar.run(:dataset_uri => uri)
- prediction = lazar.predict_dataset(uri)
- puts prediction.to_yaml
- end
-
- def test_create_dataset_model
+ prediction = OpenTox::LazarPrediction.find lazar.run(:compound_uri => compound.uri)
+ assert !prediction.measured_activities(compound).empty?
+ puts prediction.measured_activities(compound).first.inspect
+ assert_equal prediction.measured_activities(compound).first, true
+ assert prediction.value(compound).nil?
+ prediction.delete
+ # dataset prediction
+ test_dataset = OpenTox::Dataset.create_from_csv_file("data/multicolumn.csv")
+ prediction = OpenTox::LazarPrediction.find lazar.run(:dataset_uri => test_dataset.uri)
+ assert_equal prediction.compounds.size, 4
+ compound = OpenTox::Compound.new prediction.compounds.first
+ assert_equal prediction.value(compound), false
+ prediction.delete
+ lazar.delete
end
- def test_classification_prediction
- @model_uri = OpenTox::Model::Lazar.all.last
- model = OpenTox::Model::Lazar.new(@model_uri)
- compound = OpenTox::Compound.from_smiles("c1ccccc1NN")
- puts model.run(:compound_uri => compound.uri)
- end
-=end
-
- def test_regression_prediction
- end
end
diff --git a/model.rb b/model.rb
index 2492b82..6bc5d6e 100644
--- a/model.rb
+++ b/model.rb
@@ -7,7 +7,7 @@ class ModelTest < Test::Unit::TestCase
def setup
@models = [
- "http://localhost/model/1",
+ OpenTox::Model.all.last,
#"http://apps.ideaconsult.net:8080/ambit2/algorithm/J48",
]
end
@@ -15,14 +15,13 @@ class ModelTest < Test::Unit::TestCase
def teardown
end
-=begin
def test_metadata
@models.each do |model|
puts model
validate_owl(model)
end
end
-=end
+=begin
def test_run_external
{
#"http://opentox.informatik.tu-muenchen.de:8080/OpenTox-dev/algorithm/J48" => {:dataset_uri => "http://apps.ideaconsult.net:8080/ambit2/dataset/10", :prediction_feature => "http://apps.ideaconsult.net:8080/ambit2/feature/21595"},
@@ -39,4 +38,5 @@ class ModelTest < Test::Unit::TestCase
end
end
+=end
diff --git a/parser.rb b/parser.rb
index 97ae525..b967002 100644
--- a/parser.rb
+++ b/parser.rb
@@ -10,8 +10,8 @@ class ParserTest < Test::Unit::TestCase
#@new_dataset.add_metadata( OT.hasSource => "data/hamster_carcinogenicity.csv", DC.creator => "opentox-test", DC.title => "Hamster Carcinogenicity" )
#@new_dataset.save
@datasets = {
- #@new_dataset.uri => {
- "http://localhost/dataset/1" => {
+
+ @@classification_training_dataset.uri => {
:nr_compounds => 85,
:nr_features => 1,
:nr_dataset_features => 1,
diff --git a/task.rb b/task.rb
index 3d4de65..1beb203 100644
--- a/task.rb
+++ b/task.rb
@@ -20,8 +20,9 @@ class TaskTest < Test::Unit::TestCase
def test_rdf
- task = OpenTox::Task.new OpenTox::Task.all.first
+ task = OpenTox::Task.new OpenTox::Task.all.last
validate_owl(task.uri)
+ #puts task.uri
end
=begin
=end