In [ ]:


In [33]:
import json
with open('/home/tmsincomb/Desktop/SparcFromIlx.json', 'r') as infile:
    sparc = json.load(infile)
    records = [record for entity_record in sparc for record in entity_record.values()]
    
df = pd.DataFrame(records)[['iri', 'label', 'definition']]
df
df.to_csv('/home/tmsincomb/Desktop/SparcFromIlx.csv', index=False, columns=['iri', 'label', 'definition'])

In [35]:
df.head()


Out[35]:
iri label definition
0 http://uri.interlex.org/base/ilx_0050090 Neocortex Layer II/III Martinotti cell NaN
1 http://uri.interlex.org/base/ilx_0050008 Neocortex Neuron expressing somatostatin NaN
2 http://uri.interlex.org/base/ilx_0050009 Neocortex Tufted pyramidal cell NaN
3 http://uri.interlex.org/base/ilx_0050015 Neocortex Narrow pyramidal cell projecting to ... Narrow pyramidal cells have a narrow-looking a...
4 http://uri.interlex.org/base/ilx_0050017 Neocortex Tufted pyramidal cell towards layer I NaN

In [49]:
import nltk

w1 = set('mapping')
w2 = set('mapping is')

nltk.jaccard_distance(w1, w2)


Out[49]:
0.25

In [87]:
%%time
from ilxutils.nltklib import sentence_similarity, get_tokenized_sentence
s1 = 'spinalis a has'
s2 = 'has a spinalis'
print(sentence_similarity(s1, s2))
print(1- nltk.jaccard_distance(set(s1), set(s2)))
print(jaccard_similarity(x=s1, y=s2))


1.0
1.0
1.0
CPU times: user 1.28 ms, sys: 0 ns, total: 1.28 ms
Wall time: 957 µs

In [53]:
from math import*
import nltk
 
def jaccard_similarity(x,y):
    intersection_cardinality = len(set.intersection(*[set(x), set(y)]))
    union_cardinality = len(set.union(*[set(x), set(y)]))
    return intersection_cardinality/float(union_cardinality)

def jaccard_similarity_list(list1, list2):
    intersection = len(list(set(list1).intersection(list2)))
    print(list(set(list1).intersection(list2)))
    union = (len(list1) + len(list2)) - intersection
    return float(intersection / union)

s1 = 'has part of'
s2 = 'has part of'
# print(jaccard_similarity_list(list1=[s2], list2=[s1]))
print(jaccard_similarity(x=s1, y=s2))
print(nltk.edit_distance(s1, s2))
print(nltk.jaccard_distance(set(s1), set(s2)))


1.0
2
0.0

In [6]:
from collections import defaultdict
# from ilxutils.ilx_pred_map import IlxPredMap
from ilxutils.interlex_sql import IlxSql
from ilxutils.mydifflib import ratio
from ilxutils.tools import open_pickle, create_pickle
from ilxutils.scicrunch_client import scicrunch
import os
import pandas as pd
from pathlib import Path 
import rdflib
from rdflib import Graph, RDF, RDFS, Literal, URIRef, OWL
from sys import exit

# ipm = IlxPredMap()
sql = IlxSql(db_url=os.environ.get('SCICRUNCH_DB_URL_PRODUCTION'), from_backup=True)
# beta_sql = IlxSql(db_url=os.environ.get('SCICRUNCH_DB_URL_BETA'))
# sci = scicrunch(api_key=os.environ.get('SCICRUNCH_API_KEY'), base_url=os.environ.get('SCICRUNCH_BASEURL_PRODUCTION'))
# beta_sci = scicrunch(api_key=os.environ.get('SCICRUNCH_API_KEY'), base_url=os.environ.get('SCICRUNCH_BASEURL_BETA'))

In [7]:
ex = sql.get_existing_ids()

In [9]:
len(ex.curie)


Out[9]:
1625660

In [3]:
ex[ex.iri == 'http://purl.org/sig/ont/fma256700']


Out[3]:
tid curie iri preferred ilx label definition
101 50 FMA:256700 http://purl.org/sig/ont/fma256700 0 ilx_0100049 Apex of spinal cord dorsal horn (birnlex 2670)

In [4]:
fma_fix = ex[ex.iri.str.startswith('http://purl.org/sig/ont/fma') & ~ex.iri.str.startswith('http://purl.org/sig/ont/fma/')]
fma_fix.head()


Out[4]:
tid curie iri preferred ilx label definition
101 50 FMA:256700 http://purl.org/sig/ont/fma256700 0 ilx_0100049 Apex of spinal cord dorsal horn (birnlex 2670)
113 55 FMA:68597 http://purl.org/sig/ont/fma68597 0 ilx_0100054 Brodmann (1909) area 1
117 56 FMA:68608 http://purl.org/sig/ont/fma68608 0 ilx_0100055 Brodmann (1909) area 11
121 57 FMA:68609 http://purl.org/sig/ont/fma68609 0 ilx_0100056 Brodmann (1909) area 12
125 58 FMA:68610 http://purl.org/sig/ont/fma68610 0 ilx_0100057 Brodmann (1909) area 13

In [6]:
from ilxutils.remotes import interlex_remote_production as ixr
for row in fma_fix.itertuples():
    entity_update = dict(
        ilx_id = row.ilx,
        delete_existing_ids = [dict(
            iri = row.iri,
            curie = row.curie,
        )],
#         add_existing_ids = [dict(
#             iri = row.iri.replace('http://purl.org/sig/ont/fma', 'http://purl.org/sig/ont/fma/fma'),
#             curie = row.curie,
#             preferred = '0',
#         )],
    )
    print(entity_update)
    resp = ixr.update_entity(**entity_update)   
    break
resp


{'ilx_id': 'ilx_0100049', 'delete_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256700', 'curie': 'FMA:256700'}]}
[{'id': '3904010', 'tid': '50', 'curie': 'UBERON:0004678', 'iri': 'http://purl.obolibrary.org/obo/UBERON_0004678', 'curie_catalog_id': '0', 'version': '7', 'time': '1571323104', 'preferred': 1}, {'id': '3904012', 'tid': '50', 'curie': 'FMA:256700', 'iri': 'http://purl.org/sig/ont/fma/fma256700', 'curie_catalog_id': '0', 'version': '7', 'time': '1571323104', 'preferred': 0}, {'id': '3904009', 'tid': '50', 'curie': 'ILX:0100049', 'iri': 'http://uri.interlex.org/base/ilx_0100049', 'curie_catalog_id': '3', 'version': '7', 'time': '1571323104', 'preferred': 0}, {'id': '3904008', 'tid': '50', 'curie': 'BIRNLEX:2670', 'iri': 'http://uri.neuinfo.org/nif/nifstd/birnlex_2670', 'curie_catalog_id': '46', 'version': '7', 'time': '1571323104', 'preferred': 0}]
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-6-00e14060ab26> in <module>
     14     )
     15     print(entity_update)
---> 16     resp = ixr.update_entity(**entity_update)
     17     break
     18 resp

~/Dropbox/git/ontquery/ontquery/plugins/services.py in update_entity(self, ilx_id, type, subThingOf, label, definition, synonyms, comment, predicates_to_add, add_existing_ids, delete_existing_ids, predicates_to_delete)
    535 
    536         out_predicates = {}
--> 537         if 'comment' in resp:  # filtering of missing fields is done in the client
    538             out_predicates['comment'] = resp['comment']
    539 

TypeError: argument of type 'NoneType' is not iterable

In [7]:
annos = sql.get_annotations()
ex = sql.get_existing_ids()
fma_annos = annos[(annos.value.str.lower().str.strip().str.startswith('fma:')) & (annos.annotation_type_label == 'hasDbXref')]
ex_fma = ex.merge(fma_annos, left_on='curie', right_on='value', how='right', suffixes=('_ex', '_annos'))
# ex_fma = ex_fma.replace(np.nan, None, regex=True)
existing_ids_to_add = []
for row in ex_fma[~ex_fma.curie.notnull()].itertuples():
    existing_ids_to_add.append(dict(
        term_ilx = row.term_ilx,
        term_tid = row.tid_annos,
        iri = f'http://purl.org/sig/ont/fma{row.value.split(":")[-1]}',
        curie = row.value,
    ))
print(existing_ids_to_add[0])


{'term_ilx': 'ilx_0100049', 'term_tid': 50, 'iri': 'http://purl.org/sig/ont/fma256700', 'curie': 'FMA:256700'}

In [ ]:
terms = sql.get_terms()

In [ ]:
terms[terms.ilx.str.isin([r['ilx'] for r in existing_ids_to_add[:2]])]

In [3]:
from ilxutils.remotes import interlex_remote_production as ixr
ixr.ilx_cli.get_entity('ilx_0100049')['existing_ids']


Out[3]:
[{'id': '3885441',
  'tid': '50',
  'curie': 'BIRNLEX:2670',
  'iri': 'http://uri.neuinfo.org/nif/nifstd/birnlex_2670',
  'curie_catalog_id': '46',
  'version': '5',
  'time': '1571242995',
  'preferred': '0'},
 {'id': '3885442',
  'tid': '50',
  'curie': 'ILX:0100049',
  'iri': 'http://uri.interlex.org/base/ilx_0100049',
  'curie_catalog_id': '3',
  'version': '5',
  'time': '1571242996',
  'preferred': '0'},
 {'id': '3885443',
  'tid': '50',
  'curie': 'UBERON:0004678',
  'iri': 'http://purl.obolibrary.org/obo/UBERON_0004678',
  'curie_catalog_id': '0',
  'version': '5',
  'time': '1571242996',
  'preferred': '1'},
 {'id': '3885444',
  'tid': '50',
  'curie': 'FMA:256700',
  'iri': 'http://purl.org/sig/ont/fma256700',
  'curie_catalog_id': '0',
  'version': '5',
  'time': '1571242996',
  'preferred': '0'}]

In [ ]:


In [5]:
from ilxutils.remotes import interlex_remote_test as ixrt
resp = ixrt.update_entity(
    ilx_id = 'tmp_0738406',
    add_existing_ids=[{'iri': 'http://purl.org/sig/ont/fma256703', 'curie': 'FMA:256703', 'preferred': '0'}],
)
print(resp)


[2019-10-16 09:49:33,417] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'tmp_0738406', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256703', 'curie': 'FMA:256703', 'preferred': '0'}], 'delete_existing_ids': None}
QueryResult({'iri': 'http://uri.interlex.org/base/tmp_0738406', 'curie': 'TMP:0738406', 'label': 'troy_test_term', 'labels': (), 'definition': 'test_0JLVM8WG9G73', 'synonyms': ('brain',), 'deprecated': None, 'predicates': {'comment': 'test_5AEAULQGEHFH'}, 'type': None, 'types': (), '_graph': None, 'source': <ontquery.plugins.services.InterLexRemote object at 0x106ea6510>})

In [13]:
ixr.update_entity(ilx_id='ilx_0100055', subThingOf='ilx_0101471')


[2019-10-16 10:30:53,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100055', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': 'ilx_0101471', 'synonyms': (), 'add_existing_ids': None, 'delete_existing_ids': None}
Out[13]:
QueryResult({'iri': 'http://uri.interlex.org/base/ilx_0100055', 'curie': 'ILX:0100055', 'label': 'Brodmann (1909) area 11', 'labels': (), 'definition': '', 'synonyms': ('B09-11', 'prefrontal', 'area 11 of Brodmann-1909', 'Brodmann area 11', 'Area praefrontalis'), 'deprecated': None, 'predicates': {'comment': ''}, 'type': None, 'types': (), '_graph': None, 'source': <ontquery.plugins.services.InterLexRemote object at 0x10487b9d0>})

In [15]:
for i, r in enumerate(existing_ids_to_add):
    if r['term_ilx'] == 'ilx_0725187':
        print(i)


1538

In [10]:
from ilxutils.remotes import interlex_remote_production as ixr
resps = []
start = 'ilx_0725187'
add_existing_ids.index()
for r in existing_ids_to_add[3:]:
    if r.
    resp = ixr.update_entity(
        ilx_id = r['term_ilx'],
        add_existing_ids=[{'iri': r['iri'], 'curie': r['curie'], 'preferred': '0'}],
    )
    resps.append(resp)


[2019-10-16 09:51:16,658] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100056', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68609', 'curie': 'FMA:68609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:17,786] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100057', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68610', 'curie': 'FMA:68610', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:19,228] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100058', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68612', 'curie': 'FMA:68612', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:20,132] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100059', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68613', 'curie': 'FMA:68613', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:21,889] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100060', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68615', 'curie': 'FMA:68615', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:23,257] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100061', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68616', 'curie': 'FMA:68616', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:24,549] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100062', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68598', 'curie': 'FMA:68598', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:25,767] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100063', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68617', 'curie': 'FMA:68617', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:27,213] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100064', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68618', 'curie': 'FMA:68618', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:28,460] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100065', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68619', 'curie': 'FMA:68619', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:29,460] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100066', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68620', 'curie': 'FMA:68620', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:30,604] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100067', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68621', 'curie': 'FMA:68621', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:31,878] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100068', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68622', 'curie': 'FMA:68622', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:32,999] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100069', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68623', 'curie': 'FMA:68623', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:33,972] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100070', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68624', 'curie': 'FMA:68624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:34,951] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100071', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68625', 'curie': 'FMA:68625', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:36,188] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100072', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68626', 'curie': 'FMA:68626', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:37,371] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100074', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68627', 'curie': 'FMA:68627', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:38,682] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100075', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68628', 'curie': 'FMA:68628', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:39,803] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100076', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68629', 'curie': 'FMA:68629', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:41,029] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100077', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68630', 'curie': 'FMA:68630', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:42,557] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100078', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68631', 'curie': 'FMA:68631', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:43,896] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100079', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68632', 'curie': 'FMA:68632', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:45,018] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100080', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68633', 'curie': 'FMA:68633', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:46,245] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100081', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68634', 'curie': 'FMA:68634', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:47,483] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100082', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68635', 'curie': 'FMA:68635', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:48,599] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100083', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68636', 'curie': 'FMA:68636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:52,202] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100085', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68637', 'curie': 'FMA:68637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:53,367] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100087', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68640', 'curie': 'FMA:68640', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:54,746] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100088', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68641', 'curie': 'FMA:68641', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:55,977] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100089', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68642', 'curie': 'FMA:68642', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:57,679] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100073', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68599', 'curie': 'FMA:68599', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:51:59,394] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100084', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68600', 'curie': 'FMA:68600', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:00,473] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100090', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68643', 'curie': 'FMA:68643', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:01,610] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100091', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68644', 'curie': 'FMA:68644', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:02,936] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100092', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma81151', 'curie': 'FMA:81151', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:03,971] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100093', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68601', 'curie': 'FMA:68601', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:05,021] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100094', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma81153', 'curie': 'FMA:81153', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:06,008] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100095', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68602', 'curie': 'FMA:68602', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:06,933] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100096', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68604', 'curie': 'FMA:68604', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:07,914] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100097', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68605', 'curie': 'FMA:68605', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:08,781] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100173', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72491', 'curie': 'FMA:72491', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:09,689] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100175', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54504', 'curie': 'FMA:54504', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:10,735] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100209', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61867', 'curie': 'FMA:61867', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:11,636] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100211', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72603', 'curie': 'FMA:72603', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:13,176] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100214', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62471', 'curie': 'FMA:62471', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:14,133] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100215', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72626', 'curie': 'FMA:72626', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:15,401] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100315', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74627', 'curie': 'FMA:74627', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:16,365] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100410', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256381', 'curie': 'FMA:256381', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:17,904] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723883', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256381', 'curie': 'FMA:256381', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:18,914] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100438', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72517', 'curie': 'FMA:72517', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:19,837] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100473', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83687', 'curie': 'FMA:83687', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:20,929] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100522', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83867', 'curie': 'FMA:83867', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:21,992] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100532', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72546', 'curie': 'FMA:72546', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:23,114] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100573', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61841', 'curie': 'FMA:61841', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:24,236] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100611', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67552', 'curie': 'FMA:67552', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:25,356] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100612', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62955', 'curie': 'FMA:62955', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:26,404] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100627', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61898', 'curie': 'FMA:61898', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:27,629] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100654', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62070', 'curie': 'FMA:62070', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:28,747] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100657', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75137', 'curie': 'FMA:75137', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:29,798] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100670', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61861', 'curie': 'FMA:61861', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:30,799] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100671', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83759', 'curie': 'FMA:83759', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:32,021] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100672', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83750', 'curie': 'FMA:83750', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:32,887] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100689', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma271599', 'curie': 'FMA:271599', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:33,764] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110204', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma271599', 'curie': 'FMA:271599', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:34,740] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100690', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61916', 'curie': 'FMA:61916', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:35,713] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100691', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61966', 'curie': 'FMA:61966', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:36,641] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100692', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61961', 'curie': 'FMA:61961', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:37,747] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100693', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61963', 'curie': 'FMA:61963', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:38,778] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100699', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74003', 'curie': 'FMA:74003', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:39,701] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100701', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83760', 'curie': 'FMA:83760', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:40,619] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100702', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74520', 'curie': 'FMA:74520', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:41,746] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100704', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62053', 'curie': 'FMA:62053', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:42,785] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100710', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62027', 'curie': 'FMA:62027', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:44,103] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100712', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61952', 'curie': 'FMA:61952', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:45,216] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100713', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72251', 'curie': 'FMA:72251', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:46,249] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100714', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74870', 'curie': 'FMA:74870', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:47,218] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100716', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54524', 'curie': 'FMA:54524', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:48,331] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100716', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72423', 'curie': 'FMA:72423', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:49,650] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100718', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62019', 'curie': 'FMA:62019', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:50,755] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100719', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62319', 'curie': 'FMA:62319', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:51,906] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100723', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75758', 'curie': 'FMA:75758', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:53,022] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100724', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77628', 'curie': 'FMA:77628', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:54,458] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100737', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83744', 'curie': 'FMA:83744', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:55,484] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100738', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61891', 'curie': 'FMA:61891', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:56,343] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100743', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72516', 'curie': 'FMA:72516', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:57,339] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100744', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72642', 'curie': 'FMA:72642', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:58,335] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100745', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83765', 'curie': 'FMA:83765', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:52:59,241] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100749', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68638', 'curie': 'FMA:68638', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:00,294] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100750', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61909', 'curie': 'FMA:61909', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:01,314] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100750', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71029', 'curie': 'FMA:71029', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:02,659] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100755', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62141', 'curie': 'FMA:62141', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:03,870] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100768', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62142', 'curie': 'FMA:62142', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:04,823] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100778', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72571', 'curie': 'FMA:72571', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:05,906] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100779', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62143', 'curie': 'FMA:62143', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:06,939] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100781', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62314', 'curie': 'FMA:62314', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:07,885] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100811', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75641', 'curie': 'FMA:75641', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:08,917] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100870', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9591', 'curie': 'FMA:9591', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:10,014] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100881', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62329', 'curie': 'FMA:62329', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:10,987] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100882', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72609', 'curie': 'FMA:72609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:11,963] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100888', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72607', 'curie': 'FMA:72607', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:12,921] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100891', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62198', 'curie': 'FMA:62198', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:14,092] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0100996', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma226221', 'curie': 'FMA:226221', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:14,929] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101003', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7192', 'curie': 'FMA:7192', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:15,884] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101036', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62420', 'curie': 'FMA:62420', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:16,866] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101094', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85601', 'curie': 'FMA:85601', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:17,815] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101100', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68855', 'curie': 'FMA:68855', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:18,729] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101101', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77700', 'curie': 'FMA:77700', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:19,703] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101102', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84013', 'curie': 'FMA:84013', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:20,659] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101109', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61887', 'curie': 'FMA:61887', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:21,795] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101110', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72244', 'curie': 'FMA:72244', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:22,919] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101119', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75706', 'curie': 'FMA:75706', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:23,834] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101122', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75640', 'curie': 'FMA:75640', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:25,196] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101128', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84609', 'curie': 'FMA:84609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:26,193] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101180', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61884', 'curie': 'FMA:61884', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:27,333] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101354', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9670', 'curie': 'FMA:9670', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:28,855] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101359', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63183', 'curie': 'FMA:63183', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:29,806] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101359', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50722', 'curie': 'FMA:50722', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:30,690] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101369', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma280556', 'curie': 'FMA:280556', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:31,622] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101370', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256135', 'curie': 'FMA:256135', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:32,549] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101372', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61853', 'curie': 'FMA:61853', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:33,783] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101373', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61968', 'curie': 'FMA:61968', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:34,690] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101374', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83703', 'curie': 'FMA:83703', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:35,822] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101377', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7149', 'curie': 'FMA:7149', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:36,738] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101409', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71114', 'curie': 'FMA:71114', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:37,774] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101410', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72417', 'curie': 'FMA:72417', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:38,885] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101431', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50801', 'curie': 'FMA:50801', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:39,957] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101444', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma79876', 'curie': 'FMA:79876', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:41,038] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101462', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68607', 'curie': 'FMA:68607', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:42,088] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101463', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68611', 'curie': 'FMA:68611', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:43,000] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101466', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68606', 'curie': 'FMA:68606', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:44,106] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101471', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68596', 'curie': 'FMA:68596', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:45,142] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101520', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74042', 'curie': 'FMA:74042', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:46,066] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101521', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277874', 'curie': 'FMA:277874', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:47,083] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101523', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277850', 'curie': 'FMA:277850', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:47,958] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101524', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277856', 'curie': 'FMA:277856', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:48,876] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101525', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277868', 'curie': 'FMA:277868', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:49,946] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101526', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277862', 'curie': 'FMA:277862', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:50,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101527', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74044', 'curie': 'FMA:74044', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:51,809] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101530', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277852', 'curie': 'FMA:277852', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:52,716] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101531', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277858', 'curie': 'FMA:277858', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:53,636] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101532', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277870', 'curie': 'FMA:277870', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:54,561] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101533', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277864', 'curie': 'FMA:277864', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:55,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101534', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74045', 'curie': 'FMA:74045', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:56,616] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101535', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277878', 'curie': 'FMA:277878', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:57,638] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101538', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277854', 'curie': 'FMA:277854', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:58,550] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101540', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277860', 'curie': 'FMA:277860', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:53:59,857] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101541', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277872', 'curie': 'FMA:277872', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:01,009] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101542', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277866', 'curie': 'FMA:277866', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:01,938] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101552', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83749', 'curie': 'FMA:83749', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:02,867] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101595', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83743', 'curie': 'FMA:83743', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:03,769] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101638', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63194', 'curie': 'FMA:63194', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:04,702] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101644', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62049', 'curie': 'FMA:62049', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:05,729] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101645', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72450', 'curie': 'FMA:72450', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:06,634] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101670', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7161', 'curie': 'FMA:7161', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:07,537] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101711', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72426', 'curie': 'FMA:72426', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:08,352] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101718', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70688', 'curie': 'FMA:70688', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:09,412] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101721', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72606', 'curie': 'FMA:72606', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:10,502] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101722', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62194', 'curie': 'FMA:62194', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:11,563] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101723', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62206', 'curie': 'FMA:62206', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:12,594] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101725', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72469', 'curie': 'FMA:72469', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:13,672] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101734', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61833', 'curie': 'FMA:61833', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:14,635] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101887', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74047', 'curie': 'FMA:74047', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:15,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101891', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62169', 'curie': 'FMA:62169', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:16,570] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101892', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72595', 'curie': 'FMA:72595', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:17,594] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101893', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72470', 'curie': 'FMA:72470', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:18,511] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101894', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62170', 'curie': 'FMA:62170', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:19,455] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101897', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72519', 'curie': 'FMA:72519', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:20,591] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101899', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62171', 'curie': 'FMA:62171', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:21,694] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101901', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55675', 'curie': 'FMA:55675', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:22,712] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101911', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72413', 'curie': 'FMA:72413', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:23,749] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101912', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72425', 'curie': 'FMA:72425', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:24,858] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101916', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83752', 'curie': 'FMA:83752', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:26,196] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101917', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83850', 'curie': 'FMA:83850', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:27,230] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101918', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72456', 'curie': 'FMA:72456', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:28,163] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101919', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72494', 'curie': 'FMA:72494', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:29,257] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101921', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62165', 'curie': 'FMA:62165', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:30,307] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101946', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72248', 'curie': 'FMA:72248', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:31,422] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101952', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76925', 'curie': 'FMA:76925', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:32,350] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101957', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77791', 'curie': 'FMA:77791', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:33,287] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101962', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83943', 'curie': 'FMA:83943', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:34,393] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101963', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67944', 'curie': 'FMA:67944', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:35,524] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101977', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78467', 'curie': 'FMA:78467', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:36,545] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101978', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61830', 'curie': 'FMA:61830', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:37,478] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101990', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72464', 'curie': 'FMA:72464', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:38,388] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101996', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62394', 'curie': 'FMA:62394', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:39,406] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101997', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20935', 'curie': 'FMA:20935', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:40,533] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101998', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma241998', 'curie': 'FMA:241998', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:41,394] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101998', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61822', 'curie': 'FMA:61822', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:42,370] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0101998', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256174', 'curie': 'FMA:256174', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:43,304] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102003', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61817', 'curie': 'FMA:61817', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:44,179] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102008', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6005', 'curie': 'FMA:6005', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:45,159] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102009', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71166', 'curie': 'FMA:71166', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:46,581] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102010', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma321590', 'curie': 'FMA:321590', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:47,606] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102011', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma258176', 'curie': 'FMA:258176', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:48,616] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102079', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85604', 'curie': 'FMA:85604', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:49,650] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102089', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74515', 'curie': 'FMA:74515', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:50,557] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102142', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61934', 'curie': 'FMA:61934', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:51,505] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102143', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78492', 'curie': 'FMA:78492', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:52,503] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102144', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83711', 'curie': 'FMA:83711', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:53,369] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102145', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78462', 'curie': 'FMA:78462', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:54,480] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102180', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62434', 'curie': 'FMA:62434', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:55,585] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102181', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83748', 'curie': 'FMA:83748', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:56,632] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102193', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83753', 'curie': 'FMA:83753', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:57,582] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102195', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54822', 'curie': 'FMA:54822', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:58,457] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0734367', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54822', 'curie': 'FMA:54822', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:54:59,471] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102196', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84081', 'curie': 'FMA:84081', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:00,376] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102201', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74516', 'curie': 'FMA:74516', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:01,524] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102213', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77023', 'curie': 'FMA:77023', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:02,508] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102213', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73912', 'curie': 'FMA:73912', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:03,482] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102229', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61869', 'curie': 'FMA:61869', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:04,525] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102230', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67440', 'curie': 'FMA:67440', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:05,519] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102259', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58674', 'curie': 'FMA:58674', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:06,446] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102304', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma60201', 'curie': 'FMA:60201', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:07,575] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102305', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61119', 'curie': 'FMA:61119', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:08,593] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102308', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75371', 'curie': 'FMA:75371', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:09,519] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102309', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72240', 'curie': 'FMA:72240', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:10,639] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102361', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83751', 'curie': 'FMA:83751', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:11,572] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102405', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54597', 'curie': 'FMA:54597', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:12,692] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102406', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83906', 'curie': 'FMA:83906', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:13,679] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102407', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61970', 'curie': 'FMA:61970', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:14,626] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102408', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71115', 'curie': 'FMA:71115', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:15,581] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102409', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72418', 'curie': 'FMA:72418', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:16,491] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102559', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77383', 'curie': 'FMA:77383', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:17,577] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102560', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18661', 'curie': 'FMA:18661', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:18,636] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102562', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma86464', 'curie': 'FMA:86464', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:19,651] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102583', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61862', 'curie': 'FMA:61862', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:20,566] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102590', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84015', 'curie': 'FMA:84015', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:21,492] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102591', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72419', 'curie': 'FMA:72419', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:22,558] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102608', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54502', 'curie': 'FMA:54502', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:23,644] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102609', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54501', 'curie': 'FMA:54501', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:24,676] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102636', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46417', 'curie': 'FMA:46417', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:25,690] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102659', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83886', 'curie': 'FMA:83886', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:26,637] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102667', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72623', 'curie': 'FMA:72623', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:27,854] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102668', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73941', 'curie': 'FMA:73941', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:28,741] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102669', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68465', 'curie': 'FMA:68465', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:29,693] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102671', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma231327', 'curie': 'FMA:231327', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:30,625] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102671', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72427', 'curie': 'FMA:72427', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:31,527] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102673', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72637', 'curie': 'FMA:72637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:32,554] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102674', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61903', 'curie': 'FMA:61903', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:33,582] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102761', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277842', 'curie': 'FMA:277842', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:34,499] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102761', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83679', 'curie': 'FMA:83679', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:35,547] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102961', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83858', 'curie': 'FMA:83858', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:36,749] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102962', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72622', 'curie': 'FMA:72622', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:37,816] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102963', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72455', 'curie': 'FMA:72455', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:38,791] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102964', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72488', 'curie': 'FMA:72488', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:39,821] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0102971', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72249', 'curie': 'FMA:72249', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:40,848] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103047', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62163', 'curie': 'FMA:62163', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:42,082] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103048', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61922', 'curie': 'FMA:61922', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:43,120] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103056', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83146', 'curie': 'FMA:83146', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:44,000] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103062', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72358', 'curie': 'FMA:72358', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:44,964] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103074', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83677', 'curie': 'FMA:83677', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:45,868] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103075', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277812', 'curie': 'FMA:277812', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:46,725] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103076', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277810', 'curie': 'FMA:277810', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:47,617] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103084', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72260', 'curie': 'FMA:72260', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:48,533] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103087', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72462', 'curie': 'FMA:72462', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:49,649] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103188', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61973', 'curie': 'FMA:61973', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:50,573] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103191', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83758', 'curie': 'FMA:83758', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:51,717] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103194', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13295', 'curie': 'FMA:13295', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:52,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103217', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62001', 'curie': 'FMA:62001', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:53,860] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103335', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74630', 'curie': 'FMA:74630', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:54,898] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103410', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72593', 'curie': 'FMA:72593', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:56,123] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103411', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72496', 'curie': 'FMA:72496', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:57,227] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103424', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54624', 'curie': 'FMA:54624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:58,252] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103433', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72630', 'curie': 'FMA:72630', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:55:59,184] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103438', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62339', 'curie': 'FMA:62339', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:00,103] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103442', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83845', 'curie': 'FMA:83845', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:01,172] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103443', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62063', 'curie': 'FMA:62063', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:02,159] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103444', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72617', 'curie': 'FMA:72617', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:03,340] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103445', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72453', 'curie': 'FMA:72453', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:04,311] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103447', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72492', 'curie': 'FMA:72492', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:05,425] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103451', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54592', 'curie': 'FMA:54592', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:06,553] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103456', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62214', 'curie': 'FMA:62214', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:07,478] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103457', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72483', 'curie': 'FMA:72483', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:08,520] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103458', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62216', 'curie': 'FMA:62216', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:09,501] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103460', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62442', 'curie': 'FMA:62442', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:10,443] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103469', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68462', 'curie': 'FMA:68462', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:11,341] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103471', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5888', 'curie': 'FMA:5888', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:12,316] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103478', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61877', 'curie': 'FMA:61877', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:13,357] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103481', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77620', 'curie': 'FMA:77620', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:14,213] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103483', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62051', 'curie': 'FMA:62051', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:15,161] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103484', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72451', 'curie': 'FMA:72451', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:16,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103485', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72434', 'curie': 'FMA:72434', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:17,110] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103494', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72500', 'curie': 'FMA:72500', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:18,117] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103503', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma276189', 'curie': 'FMA:276189', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:19,037] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103515', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62331', 'curie': 'FMA:62331', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:20,065] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103596', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9592', 'curie': 'FMA:9592', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:20,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103643', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52780', 'curie': 'FMA:52780', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:21,900] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103685', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6361', 'curie': 'FMA:6361', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:22,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103686', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71186', 'curie': 'FMA:71186', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:23,747] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103687', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6328', 'curie': 'FMA:6328', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:24,669] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103688', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71174', 'curie': 'FMA:71174', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:25,476] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103731', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6331', 'curie': 'FMA:6331', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:26,315] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103732', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71177', 'curie': 'FMA:71177', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:27,337] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103738', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72538', 'curie': 'FMA:72538', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:28,262] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103786', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52586', 'curie': 'FMA:52586', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:29,187] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103859', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72356', 'curie': 'FMA:72356', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:30,054] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103886', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55130', 'curie': 'FMA:55130', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:31,029] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103892', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12234', 'curie': 'FMA:12234', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:31,943] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0103897', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62009', 'curie': 'FMA:62009', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:32,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104042', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72412', 'curie': 'FMA:72412', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:33,899] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104056', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49033', 'curie': 'FMA:49033', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:34,818] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104058', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61960', 'curie': 'FMA:61960', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:35,716] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104062', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54448', 'curie': 'FMA:54448', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:36,666] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104076', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma53418', 'curie': 'FMA:53418', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:37,680] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104077', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54582', 'curie': 'FMA:54582', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:38,612] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104106', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12235', 'curie': 'FMA:12235', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:39,603] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104107', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72400', 'curie': 'FMA:72400', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:40,546] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104114', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61921', 'curie': 'FMA:61921', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:41,577] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104122', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72537', 'curie': 'FMA:72537', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:42,503] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104215', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6318', 'curie': 'FMA:6318', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:43,412] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104216', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71183', 'curie': 'FMA:71183', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:44,258] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104217', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6339', 'curie': 'FMA:6339', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:45,106] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104218', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71191', 'curie': 'FMA:71191', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:45,979] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104219', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6346', 'curie': 'FMA:6346', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:46,907] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104220', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256633', 'curie': 'FMA:256633', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:47,716] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104221', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6325', 'curie': 'FMA:6325', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:48,652] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104222', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71171', 'curie': 'FMA:71171', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:49,561] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104227', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54820', 'curie': 'FMA:54820', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:50,383] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104243', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83866', 'curie': 'FMA:83866', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:51,303] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104248', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9666', 'curie': 'FMA:9666', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:52,237] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104251', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6010', 'curie': 'FMA:6010', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:53,091] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104252', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71179', 'curie': 'FMA:71179', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:53,969] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104253', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6335', 'curie': 'FMA:6335', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:54,889] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104254', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71187', 'curie': 'FMA:71187', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:55,808] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104258', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6342', 'curie': 'FMA:6342', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:56,725] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104259', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256625', 'curie': 'FMA:256625', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:57,539] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104261', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6321', 'curie': 'FMA:6321', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:58,470] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104262', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62421', 'curie': 'FMA:62421', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:56:59,369] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104286', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72253', 'curie': 'FMA:72253', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:00,202] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104287', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83881', 'curie': 'FMA:83881', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:01,124] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104343', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54823', 'curie': 'FMA:54823', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:02,002] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61992', 'curie': 'FMA:61992', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:02,880] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104359', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24878', 'curie': 'FMA:24878', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:03,876] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104362', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61965', 'curie': 'FMA:61965', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:04,822] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104362', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83865', 'curie': 'FMA:83865', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:05,672] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104364', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71182', 'curie': 'FMA:71182', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:06,565] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104365', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6338', 'curie': 'FMA:6338', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:07,427] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104366', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71190', 'curie': 'FMA:71190', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:08,277] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104367', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6345', 'curie': 'FMA:6345', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:09,103] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104368', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256631', 'curie': 'FMA:256631', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:09,948] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104369', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6324', 'curie': 'FMA:6324', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:10,808] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104370', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71170', 'curie': 'FMA:71170', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:11,673] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104380', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6317', 'curie': 'FMA:6317', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:12,700] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104381', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78469', 'curie': 'FMA:78469', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:13,700] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104383', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58658', 'curie': 'FMA:58658', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:14,645] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104449', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242199', 'curie': 'FMA:242199', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:15,496] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104454', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74886', 'curie': 'FMA:74886', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:16,382] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104455', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74885', 'curie': 'FMA:74885', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:17,217] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104459', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83768', 'curie': 'FMA:83768', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:18,140] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104481', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54821', 'curie': 'FMA:54821', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:19,069] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104491', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61908', 'curie': 'FMA:61908', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:20,189] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104608', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61946', 'curie': 'FMA:61946', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:21,101] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104655', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72536', 'curie': 'FMA:72536', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:22,121] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104657', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61835', 'curie': 'FMA:61835', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:23,142] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104658', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61839', 'curie': 'FMA:61839', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:24,064] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104660', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61840', 'curie': 'FMA:61840', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:24,993] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104666', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72627', 'curie': 'FMA:72627', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:25,904] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104726', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma258416', 'curie': 'FMA:258416', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:26,839] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104727', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72624', 'curie': 'FMA:72624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:27,754] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104729', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72602', 'curie': 'FMA:72602', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:28,685] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104744', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83140', 'curie': 'FMA:83140', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:29,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104768', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67242', 'curie': 'FMA:67242', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:30,516] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104831', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62412', 'curie': 'FMA:62412', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:31,482] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104843', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7194', 'curie': 'FMA:7194', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:32,394] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104846', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61893', 'curie': 'FMA:61893', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:33,277] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104854', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62032', 'curie': 'FMA:62032', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:34,186] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104855', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62048', 'curie': 'FMA:62048', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:35,133] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104909', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7154', 'curie': 'FMA:7154', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:36,044] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104911', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61852', 'curie': 'FMA:61852', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:36,980] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104934', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278665', 'curie': 'FMA:278665', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:37,902] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104935', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278672', 'curie': 'FMA:278672', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:38,925] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104936', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278683', 'curie': 'FMA:278683', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:39,934] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104936', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma272300', 'curie': 'FMA:272300', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:40,752] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0727699', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma272300', 'curie': 'FMA:272300', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:41,672] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104937', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83885', 'curie': 'FMA:83885', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:42,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104937', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278790', 'curie': 'FMA:278790', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:43,523] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104938', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278723', 'curie': 'FMA:278723', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:44,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104939', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72522', 'curie': 'FMA:72522', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:45,607] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104941', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72524', 'curie': 'FMA:72524', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:46,696] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104942', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72525', 'curie': 'FMA:72525', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:47,625] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104943', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72523', 'curie': 'FMA:72523', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:48,638] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104944', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72526', 'curie': 'FMA:72526', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:49,661] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104946', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72254', 'curie': 'FMA:72254', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:50,593] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0104948', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72256', 'curie': 'FMA:72256', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:51,512] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105003', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72548', 'curie': 'FMA:72548', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:52,329] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105004', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67687', 'curie': 'FMA:67687', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:53,240] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105009', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74038', 'curie': 'FMA:74038', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:54,184] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105020', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83747', 'curie': 'FMA:83747', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:55,305] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105021', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62493', 'curie': 'FMA:62493', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:56,186] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105107', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75135', 'curie': 'FMA:75135', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:57,145] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105108', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77611', 'curie': 'FMA:77611', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:58,064] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105166', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72632', 'curie': 'FMA:72632', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:58,909] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105167', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54505', 'curie': 'FMA:54505', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:57:59,798] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105172', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13889', 'curie': 'FMA:13889', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:00,726] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105177', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62008', 'curie': 'FMA:62008', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:01,649] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105421', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62488', 'curie': 'FMA:62488', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:02,567] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105434', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72466', 'curie': 'FMA:72466', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:03,587] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105435', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72615', 'curie': 'FMA:72615', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:04,516] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105436', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62404', 'curie': 'FMA:62404', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:05,405] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105442', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61860', 'curie': 'FMA:61860', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:06,255] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105443', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83757', 'curie': 'FMA:83757', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:07,277] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105444', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83701', 'curie': 'FMA:83701', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:08,207] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105445', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49040', 'curie': 'FMA:49040', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:09,122] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105446', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma273129', 'curie': 'FMA:273129', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:10,130] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105448', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72243', 'curie': 'FMA:72243', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:11,069] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105452', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77536', 'curie': 'FMA:77536', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:11,988] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105454', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77532', 'curie': 'FMA:77532', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:12,918] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105455', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83776', 'curie': 'FMA:83776', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:13,846] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105456', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83764', 'curie': 'FMA:83764', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:14,762] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105461', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83767', 'curie': 'FMA:83767', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:15,706] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105463', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61907', 'curie': 'FMA:61907', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:16,598] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105464', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83784', 'curie': 'FMA:83784', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:17,515] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105465', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma274414', 'curie': 'FMA:274414', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:18,438] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105466', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54608', 'curie': 'FMA:54608', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:19,467] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105483', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74635', 'curie': 'FMA:74635', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:20,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105492', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma60909', 'curie': 'FMA:60909', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:21,410] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105519', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67329', 'curie': 'FMA:67329', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:22,540] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105544', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61868', 'curie': 'FMA:61868', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:23,465] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105568', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72497', 'curie': 'FMA:72497', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:24,339] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105570', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62028', 'curie': 'FMA:62028', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:25,151] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105573', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72420', 'curie': 'FMA:72420', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:26,023] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105574', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma80183', 'curie': 'FMA:80183', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:26,947] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105576', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62328', 'curie': 'FMA:62328', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:27,967] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105582', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72629', 'curie': 'FMA:72629', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:28,886] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105583', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61950', 'curie': 'FMA:61950', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:29,919] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105586', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62079', 'curie': 'FMA:62079', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:30,855] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105597', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72439', 'curie': 'FMA:72439', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:31,753] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105600', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma235324', 'curie': 'FMA:235324', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:32,786] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105625', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72432', 'curie': 'FMA:72432', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:33,801] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105629', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74869', 'curie': 'FMA:74869', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:34,835] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105651', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62021', 'curie': 'FMA:62021', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:35,736] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105653', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83789', 'curie': 'FMA:83789', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:36,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105656', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83772', 'curie': 'FMA:83772', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:37,613] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105730', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61888', 'curie': 'FMA:61888', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:38,508] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105757', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62502', 'curie': 'FMA:62502', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:39,355] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105804', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72613', 'curie': 'FMA:72613', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:40,357] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105881', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72598', 'curie': 'FMA:72598', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:41,199] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105881', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77220', 'curie': 'FMA:77220', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:42,094] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105978', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68862', 'curie': 'FMA:68862', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:43,331] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0105979', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62472', 'curie': 'FMA:62472', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:44,242] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106043', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61866', 'curie': 'FMA:61866', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:45,173] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106050', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73921', 'curie': 'FMA:73921', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:46,320] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106052', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72635', 'curie': 'FMA:72635', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:47,306] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106064', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62209', 'curie': 'FMA:62209', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:48,192] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106068', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62372', 'curie': 'FMA:62372', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:49,144] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106069', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62030', 'curie': 'FMA:62030', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:50,160] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106071', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62337', 'curie': 'FMA:62337', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:51,020] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106073', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74523', 'curie': 'FMA:74523', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:51,956] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106075', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62341', 'curie': 'FMA:62341', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:52,929] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106077', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62469', 'curie': 'FMA:62469', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:53,987] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106078', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62174', 'curie': 'FMA:62174', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:54,896] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106074', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72502', 'curie': 'FMA:72502', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:55,896] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106080', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61902', 'curie': 'FMA:61902', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:56,956] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106081', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83785', 'curie': 'FMA:83785', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:57,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106082', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61971', 'curie': 'FMA:61971', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:58,999] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106084', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62418', 'curie': 'FMA:62418', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:58:59,870] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106086', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72481', 'curie': 'FMA:72481', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:00,849] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106087', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72577', 'curie': 'FMA:72577', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:01,756] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106089', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68857', 'curie': 'FMA:68857', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:02,799] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106090', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62346', 'curie': 'FMA:62346', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:03,809] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106093', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72604', 'curie': 'FMA:72604', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:04,841] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106094', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72459', 'curie': 'FMA:72459', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:05,889] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106095', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62177', 'curie': 'FMA:62177', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:06,778] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106098', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62326', 'curie': 'FMA:62326', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:07,912] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106099', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62181', 'curie': 'FMA:62181', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:08,827] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106100', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72574', 'curie': 'FMA:72574', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:09,714] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106106', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61878', 'curie': 'FMA:61878', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:10,682] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106115', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77801', 'curie': 'FMA:77801', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:11,684] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106117', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72472', 'curie': 'FMA:72472', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:12,619] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106124', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62336', 'curie': 'FMA:62336', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:13,505] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106125', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78448', 'curie': 'FMA:78448', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:14,455] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106126', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54614', 'curie': 'FMA:54614', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:15,445] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106139', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77654', 'curie': 'FMA:77654', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:16,291] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106155', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61819', 'curie': 'FMA:61819', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:17,157] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106156', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72970', 'curie': 'FMA:72970', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:18,046] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106158', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72981', 'curie': 'FMA:72981', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:19,059] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106159', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72976', 'curie': 'FMA:72976', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:19,995] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106160', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72974', 'curie': 'FMA:72974', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:20,916] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106163', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72972', 'curie': 'FMA:72972', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:21,812] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106165', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83676', 'curie': 'FMA:83676', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:22,876] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106170', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62067', 'curie': 'FMA:62067', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:23,984] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106170', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61976', 'curie': 'FMA:61976', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:24,872] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106176', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma231515', 'curie': 'FMA:231515', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:25,974] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106264', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72719', 'curie': 'FMA:72719', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:27,506] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106265', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242000', 'curie': 'FMA:242000', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:28,840] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106266', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75266', 'curie': 'FMA:75266', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:30,330] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106267', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62220', 'curie': 'FMA:62220', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:31,251] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106275', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72436', 'curie': 'FMA:72436', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:32,177] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106278', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61904', 'curie': 'FMA:61904', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:33,092] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106279', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54819', 'curie': 'FMA:54819', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:34,023] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106284', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59816', 'curie': 'FMA:59816', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:34,933] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106302', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72616', 'curie': 'FMA:72616', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:36,068] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106316', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61823', 'curie': 'FMA:61823', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:37,004] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106317', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242392', 'curie': 'FMA:242392', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:37,996] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106335', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72478', 'curie': 'FMA:72478', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:39,199] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106353', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83727', 'curie': 'FMA:83727', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:40,171] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72513', 'curie': 'FMA:72513', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:41,180] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106390', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6007', 'curie': 'FMA:6007', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:42,100] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106391', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71168', 'curie': 'FMA:71168', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:42,937] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106392', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma321589', 'curie': 'FMA:321589', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:43,810] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106393', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma258180', 'curie': 'FMA:258180', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:44,781] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106409', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83788', 'curie': 'FMA:83788', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:45,690] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106422', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9671', 'curie': 'FMA:9671', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:46,552] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106445', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58671', 'curie': 'FMA:58671', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:47,752] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106446', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58637', 'curie': 'FMA:58637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:48,874] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106472', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62218', 'curie': 'FMA:62218', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:50,000] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106473', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62161', 'curie': 'FMA:62161', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:51,013] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106474', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72431', 'curie': 'FMA:72431', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:52,045] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106475', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62192', 'curie': 'FMA:62192', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:52,968] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106500', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74877', 'curie': 'FMA:74877', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:53,892] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106502', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62061', 'curie': 'FMA:62061', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:54,910] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106504', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62057', 'curie': 'FMA:62057', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:55,831] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106505', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62058', 'curie': 'FMA:62058', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:56,762] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106507', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62059', 'curie': 'FMA:62059', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:57,782] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106532', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83773', 'curie': 'FMA:83773', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:58,594] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106608', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma86587', 'curie': 'FMA:86587', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 09:59:59,719] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106636', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62156', 'curie': 'FMA:62156', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:00,649] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106640', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62064', 'curie': 'FMA:62064', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:01,563] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106641', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62211', 'curie': 'FMA:62211', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:02,696] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106650', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62373', 'curie': 'FMA:62373', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:03,608] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106651', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83675', 'curie': 'FMA:83675', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:04,530] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106652', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72621', 'curie': 'FMA:72621', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:05,408] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106653', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72461', 'curie': 'FMA:72461', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:06,295] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106654', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72503', 'curie': 'FMA:72503', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:07,221] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106655', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83846', 'curie': 'FMA:83846', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:08,116] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106656', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72618', 'curie': 'FMA:72618', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:09,038] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106657', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72454', 'curie': 'FMA:72454', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:09,963] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106659', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72493', 'curie': 'FMA:72493', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:10,909] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106660', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62342', 'curie': 'FMA:62342', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:11,803] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106664', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62470', 'curie': 'FMA:62470', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:12,726] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106669', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75732', 'curie': 'FMA:75732', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:13,649] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106670', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72421', 'curie': 'FMA:72421', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:14,568] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106671', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74509', 'curie': 'FMA:74509', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:15,503] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106672', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma273320', 'curie': 'FMA:273320', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:16,426] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106673', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62419', 'curie': 'FMA:62419', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:17,238] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106675', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72480', 'curie': 'FMA:72480', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:18,156] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106676', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68858', 'curie': 'FMA:68858', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:19,201] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106677', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62345', 'curie': 'FMA:62345', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:20,219] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106680', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62195', 'curie': 'FMA:62195', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:21,131] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106681', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72605', 'curie': 'FMA:72605', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:22,163] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106682', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72460', 'curie': 'FMA:72460', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:23,091] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106687', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67890', 'curie': 'FMA:67890', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:23,974] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106695', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62182', 'curie': 'FMA:62182', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:24,926] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106697', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61879', 'curie': 'FMA:61879', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:25,846] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106704', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma226223', 'curie': 'FMA:226223', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:26,732] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106704', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72473', 'curie': 'FMA:72473', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:27,679] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106710', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54611', 'curie': 'FMA:54611', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:28,711] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106712', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74634', 'curie': 'FMA:74634', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:29,628] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106717', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62323', 'curie': 'FMA:62323', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:30,476] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106740', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72610', 'curie': 'FMA:72610', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:31,364] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106743', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68874', 'curie': 'FMA:68874', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:32,256] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106744', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72241', 'curie': 'FMA:72241', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:33,238] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106736', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62004', 'curie': 'FMA:62004', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:34,261] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106748', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83944', 'curie': 'FMA:83944', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:35,149] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106790', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9589', 'curie': 'FMA:9589', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:36,084] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106812', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54568', 'curie': 'FMA:54568', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:37,004] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106813', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72489', 'curie': 'FMA:72489', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:38,130] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106839', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62023', 'curie': 'FMA:62023', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:38,989] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106845', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62003', 'curie': 'FMA:62003', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:39,992] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106935', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61993', 'curie': 'FMA:61993', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:41,086] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106941', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77787', 'curie': 'FMA:77787', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:42,028] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106943', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62406', 'curie': 'FMA:62406', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:42,966] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106951', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62393', 'curie': 'FMA:62393', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:43,871] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106956', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72515', 'curie': 'FMA:72515', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:44,788] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106958', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma56513', 'curie': 'FMA:56513', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:45,731] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106961', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61859', 'curie': 'FMA:61859', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:46,736] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106967', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61906', 'curie': 'FMA:61906', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:47,655] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106950', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83902', 'curie': 'FMA:83902', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:48,657] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0106971', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62020', 'curie': 'FMA:62020', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:49,607] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107065', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83897', 'curie': 'FMA:83897', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:50,503] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107124', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54562', 'curie': 'FMA:54562', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:51,440] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107128', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52612', 'curie': 'FMA:52612', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:52,259] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107218', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5022', 'curie': 'FMA:5022', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:53,284] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107367', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83900', 'curie': 'FMA:83900', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:54,205] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107368', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77804', 'curie': 'FMA:77804', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:55,221] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107369', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77810', 'curie': 'FMA:77810', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:56,138] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107370', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77811', 'curie': 'FMA:77811', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:57,174] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107371', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77812', 'curie': 'FMA:77812', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:58,213] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107350', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62429', 'curie': 'FMA:62429', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:00:59,197] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107374', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77805', 'curie': 'FMA:77805', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:00,141] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107392', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72539', 'curie': 'FMA:72539', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:00,944] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107416', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16422', 'curie': 'FMA:16422', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:01,871] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107417', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16421', 'curie': 'FMA:16421', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:02,808] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107418', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18028', 'curie': 'FMA:18028', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:03,719] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107419', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14064', 'curie': 'FMA:14064', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:04,673] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107421', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83847', 'curie': 'FMA:83847', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:05,588] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107422', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7157', 'curie': 'FMA:7157', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:06,521] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107447', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75007', 'curie': 'FMA:75007', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:07,507] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107477', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74628', 'curie': 'FMA:74628', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:08,395] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107598', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6329', 'curie': 'FMA:6329', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:09,253] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107599', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71175', 'curie': 'FMA:71175', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:10,169] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107725', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84025', 'curie': 'FMA:84025', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:11,253] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107736', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61889', 'curie': 'FMA:61889', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:12,136] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107738', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54588', 'curie': 'FMA:54588', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:13,009] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107745', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72576', 'curie': 'FMA:72576', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:14,303] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107749', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72597', 'curie': 'FMA:72597', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:15,261] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107751', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61883', 'curie': 'FMA:61883', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:16,230] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107752', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83686', 'curie': 'FMA:83686', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:17,158] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107753', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68464', 'curie': 'FMA:68464', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:18,103] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107755', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61882', 'curie': 'FMA:61882', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:19,102] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107757', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61865', 'curie': 'FMA:61865', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:19,968] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107758', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72467', 'curie': 'FMA:72467', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:20,923] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107759', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72403', 'curie': 'FMA:72403', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:21,865] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107760', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68463', 'curie': 'FMA:68463', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:22,697] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107761', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72401', 'curie': 'FMA:72401', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:23,720] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107786', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72581', 'curie': 'FMA:72581', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:24,693] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107787', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72596', 'curie': 'FMA:72596', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:25,602] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107791', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72584', 'curie': 'FMA:72584', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:26,650] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107793', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72585', 'curie': 'FMA:72585', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:27,577] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107795', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72586', 'curie': 'FMA:72586', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:28,613] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107801', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72479', 'curie': 'FMA:72479', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:29,531] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107880', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242205', 'curie': 'FMA:242205', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:30,488] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107884', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74892', 'curie': 'FMA:74892', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:31,489] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107885', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74518', 'curie': 'FMA:74518', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:32,417] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107898', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72457', 'curie': 'FMA:72457', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:33,423] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107899', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54510', 'curie': 'FMA:54510', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:34,420] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107921', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77624', 'curie': 'FMA:77624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:35,351] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107946', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma276600', 'curie': 'FMA:276600', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:36,277] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107970', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83769', 'curie': 'FMA:83769', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:37,252] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107971', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7190', 'curie': 'FMA:7190', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:38,207] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107973', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74883', 'curie': 'FMA:74883', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:39,077] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0107998', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72405', 'curie': 'FMA:72405', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:39,967] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108000', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72638', 'curie': 'FMA:72638', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:40,815] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108057', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61981', 'curie': 'FMA:61981', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:41,715] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108069', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62045', 'curie': 'FMA:62045', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:42,626] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108073', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78455', 'curie': 'FMA:78455', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:43,868] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108074', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62046', 'curie': 'FMA:62046', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:44,730] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108080', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma235322', 'curie': 'FMA:235322', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:45,882] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108081', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62193', 'curie': 'FMA:62193', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:46,922] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108082', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62205', 'curie': 'FMA:62205', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:47,836] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108083', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72468', 'curie': 'FMA:72468', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:48,871] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108084', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62180', 'curie': 'FMA:62180', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:49,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108110', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242003', 'curie': 'FMA:242003', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:50,719] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108112', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74887', 'curie': 'FMA:74887', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:51,643] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108113', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61982', 'curie': 'FMA:61982', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:52,520] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108114', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83770', 'curie': 'FMA:83770', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:53,466] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108124', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67498', 'curie': 'FMA:67498', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:54,501] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108129', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12237', 'curie': 'FMA:12237', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:55,650] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108141', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62315', 'curie': 'FMA:62315', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:56,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108283', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52781', 'curie': 'FMA:52781', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:57,810] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108356', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83609', 'curie': 'FMA:83609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:58,854] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108371', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62430', 'curie': 'FMA:62430', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:01:59,697] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108372', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72540', 'curie': 'FMA:72540', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:00,666] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108383', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72458', 'curie': 'FMA:72458', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:01,588] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108414', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72415', 'curie': 'FMA:72415', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:02,429] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108428', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77496', 'curie': 'FMA:77496', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:03,435] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108430', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62172', 'curie': 'FMA:62172', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:04,388] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108432', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83762', 'curie': 'FMA:83762', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:05,396] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108433', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62166', 'curie': 'FMA:62166', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:06,391] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108441', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61918', 'curie': 'FMA:61918', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:07,409] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108443', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62160', 'curie': 'FMA:62160', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:08,302] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108455', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72583', 'curie': 'FMA:72583', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:09,391] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108472', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77091', 'curie': 'FMA:77091', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:10,393] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108477', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77604', 'curie': 'FMA:77604', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:11,333] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108483', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62151', 'curie': 'FMA:62151', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:12,249] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108484', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61919', 'curie': 'FMA:61919', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:13,159] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108501', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62320', 'curie': 'FMA:62320', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:14,071] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108502', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62152', 'curie': 'FMA:62152', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:14,918] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108533', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242203', 'curie': 'FMA:242203', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:15,835] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108534', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61826', 'curie': 'FMA:61826', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:16,838] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108535', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74889', 'curie': 'FMA:74889', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:17,757] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108536', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83754', 'curie': 'FMA:83754', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:18,686] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108544', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74636', 'curie': 'FMA:74636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:19,602] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108545', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62196', 'curie': 'FMA:62196', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:20,661] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108559', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62162', 'curie': 'FMA:62162', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:21,639] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108560', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62191', 'curie': 'FMA:62191', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:22,573] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108561', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62207', 'curie': 'FMA:62207', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:23,599] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108563', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72424', 'curie': 'FMA:72424', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:24,441] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108564', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72430', 'curie': 'FMA:72430', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:25,319] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108643', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72429', 'curie': 'FMA:72429', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:26,151] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108715', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62485', 'curie': 'FMA:62485', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:27,173] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108717', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74510', 'curie': 'FMA:74510', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:28,114] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108720', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72411', 'curie': 'FMA:72411', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:29,062] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108726', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52585', 'curie': 'FMA:52585', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:30,076] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108731', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72437', 'curie': 'FMA:72437', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:31,214] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108735', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9903', 'curie': 'FMA:9903', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:32,228] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108752', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72600', 'curie': 'FMA:72600', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:33,215] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108874', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9590', 'curie': 'FMA:9590', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:34,472] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0108891', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62033', 'curie': 'FMA:62033', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:35,389] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109019', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67943', 'curie': 'FMA:67943', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:36,408] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109028', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72512', 'curie': 'FMA:72512', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:37,322] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109029', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68875', 'curie': 'FMA:68875', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:38,225] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109030', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68876', 'curie': 'FMA:68876', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:39,357] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109034', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71108', 'curie': 'FMA:71108', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:40,288] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109035', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72608', 'curie': 'FMA:72608', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:41,120] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109070', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61896', 'curie': 'FMA:61896', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:41,967] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109071', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83774', 'curie': 'FMA:83774', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:42,955] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109072', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62062', 'curie': 'FMA:62062', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:43,872] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109077', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83761', 'curie': 'FMA:83761', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:44,790] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109085', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83787', 'curie': 'FMA:83787', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:45,713] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109087', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma271593', 'curie': 'FMA:271593', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:46,633] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109088', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61924', 'curie': 'FMA:61924', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:47,652] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109089', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61969', 'curie': 'FMA:61969', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:48,577] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109090', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62072', 'curie': 'FMA:62072', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:49,454] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109095', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77461', 'curie': 'FMA:77461', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:50,322] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109097', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83700', 'curie': 'FMA:83700', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:51,246] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109099', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62029', 'curie': 'FMA:62029', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:52,174] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109100', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61954', 'curie': 'FMA:61954', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:53,087] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109103', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72252', 'curie': 'FMA:72252', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:53,911] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109104', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74875', 'curie': 'FMA:74875', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:54,818] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109109', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62024', 'curie': 'FMA:62024', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:55,701] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109110', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62350', 'curie': 'FMA:62350', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:56,662] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109111', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62221', 'curie': 'FMA:62221', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:57,492] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109112', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma80184', 'curie': 'FMA:80184', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:58,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109113', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67966', 'curie': 'FMA:67966', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:02:59,276] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109120', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83745', 'curie': 'FMA:83745', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:00,245] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109121', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61964', 'curie': 'FMA:61964', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:01,166] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109122', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62349', 'curie': 'FMA:62349', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:02,101] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109125', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72641', 'curie': 'FMA:72641', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:03,023] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109126', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83778', 'curie': 'FMA:83778', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:03,947] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109127', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83733', 'curie': 'FMA:83733', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:04,893] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109133', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma236867', 'curie': 'FMA:236867', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:05,787] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109133', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68639', 'curie': 'FMA:68639', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:06,781] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109134', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61910', 'curie': 'FMA:61910', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:07,721] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109140', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83730', 'curie': 'FMA:83730', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:08,655] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109153', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72572', 'curie': 'FMA:72572', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:09,574] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109192', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83731', 'curie': 'FMA:83731', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:10,499] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109193', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61894', 'curie': 'FMA:61894', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:11,333] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109194', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74888', 'curie': 'FMA:74888', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:12,247] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109195', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83800', 'curie': 'FMA:83800', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:13,156] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109197', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61967', 'curie': 'FMA:61967', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:14,091] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109199', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61900', 'curie': 'FMA:61900', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:14,924] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109207', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72614', 'curie': 'FMA:72614', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:15,815] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109218', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62348', 'curie': 'FMA:62348', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:16,759] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109209', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma224850', 'curie': 'FMA:224850', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:17,769] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109222', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma224852', 'curie': 'FMA:224852', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:18,697] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109223', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83739', 'curie': 'FMA:83739', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:19,600] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109224', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72474', 'curie': 'FMA:72474', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:20,501] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109225', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62313', 'curie': 'FMA:62313', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:21,454] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109227', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62324', 'curie': 'FMA:62324', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:22,363] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109235', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75138', 'curie': 'FMA:75138', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:23,342] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109236', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62484', 'curie': 'FMA:62484', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:24,236] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109252', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62486', 'curie': 'FMA:62486', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:25,257] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109258', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62402', 'curie': 'FMA:62402', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:26,327] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109270', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83729', 'curie': 'FMA:83729', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:27,291] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109278', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma224854', 'curie': 'FMA:224854', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:28,218] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109351', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72592', 'curie': 'FMA:72592', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:29,092] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109352', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62208', 'curie': 'FMA:62208', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:30,069] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109353', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72402', 'curie': 'FMA:72402', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:31,097] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54533', 'curie': 'FMA:54533', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:32,209] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109516', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62178', 'curie': 'FMA:62178', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:33,249] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109545', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83896', 'curie': 'FMA:83896', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:34,263] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109549', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61834', 'curie': 'FMA:61834', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:35,264] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109554', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72633', 'curie': 'FMA:72633', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:36,235] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109556', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72634', 'curie': 'FMA:72634', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:37,110] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109650', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84017', 'curie': 'FMA:84017', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:38,034] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109722', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62407', 'curie': 'FMA:62407', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:38,929] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109833', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7153', 'curie': 'FMA:7153', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:39,895] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109835', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55676', 'curie': 'FMA:55676', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:40,799] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109837', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76924', 'curie': 'FMA:76924', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:41,829] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109860', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma82472', 'curie': 'FMA:82472', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:42,767] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109875', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83880', 'curie': 'FMA:83880', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:43,684] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109877', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278629', 'curie': 'FMA:278629', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:44,650] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109987', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77719', 'curie': 'FMA:77719', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:45,607] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109992', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72471', 'curie': 'FMA:72471', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:46,529] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0109993', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58301', 'curie': 'FMA:58301', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:47,390] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110085', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62153', 'curie': 'FMA:62153', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:48,399] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110119', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83746', 'curie': 'FMA:83746', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:49,318] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110128', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62154', 'curie': 'FMA:62154', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:50,207] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110144', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67292', 'curie': 'FMA:67292', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:51,203] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110145', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72969', 'curie': 'FMA:72969', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:52,183] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110147', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72980', 'curie': 'FMA:72980', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:53,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110148', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72975', 'curie': 'FMA:72975', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:54,118] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110149', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72973', 'curie': 'FMA:72973', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:54,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110152', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72971', 'curie': 'FMA:72971', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:55,959] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110210', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72433', 'curie': 'FMA:72433', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:56,878] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110211', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62164', 'curie': 'FMA:62164', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:57,797] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110215', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70687', 'curie': 'FMA:70687', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:58,712] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110265', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72640', 'curie': 'FMA:72640', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:03:59,534] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110294', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6008', 'curie': 'FMA:6008', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:00,451] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110295', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256623', 'curie': 'FMA:256623', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:01,386] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110297', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma258198', 'curie': 'FMA:258198', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:02,278] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110426', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6315', 'curie': 'FMA:6315', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:03,338] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110427', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71180', 'curie': 'FMA:71180', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:04,263] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110428', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6336', 'curie': 'FMA:6336', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:05,220] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110429', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71188', 'curie': 'FMA:71188', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:06,095] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110430', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6343', 'curie': 'FMA:6343', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:07,063] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110431', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256627', 'curie': 'FMA:256627', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:07,931] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110432', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6322', 'curie': 'FMA:6322', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:08,767] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110433', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62422', 'curie': 'FMA:62422', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:09,783] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110440', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84043', 'curie': 'FMA:84043', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:10,596] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110451', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256653', 'curie': 'FMA:256653', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:11,514] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110452', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256657', 'curie': 'FMA:256657', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:12,340] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110453', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256659', 'curie': 'FMA:256659', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:13,169] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110454', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256655', 'curie': 'FMA:256655', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:14,107] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110502', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75259', 'curie': 'FMA:75259', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:15,000] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110508', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61845', 'curie': 'FMA:61845', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:15,819] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110509', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61844', 'curie': 'FMA:61844', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:16,838] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110511', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61881', 'curie': 'FMA:61881', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:17,706] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110516', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61842', 'curie': 'FMA:61842', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:18,589] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110584', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6360', 'curie': 'FMA:6360', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:19,515] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110585', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71185', 'curie': 'FMA:71185', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:20,328] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110586', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6327', 'curie': 'FMA:6327', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:21,245] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110587', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71173', 'curie': 'FMA:71173', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:22,169] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110602', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77387', 'curie': 'FMA:77387', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:23,086] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110650', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6319', 'curie': 'FMA:6319', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:24,039] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110651', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71184', 'curie': 'FMA:71184', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:24,939] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110652', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6326', 'curie': 'FMA:6326', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:25,869] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110653', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71172', 'curie': 'FMA:71172', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:26,782] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110663', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46565', 'curie': 'FMA:46565', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:27,807] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110729', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256691', 'curie': 'FMA:256691', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:28,717] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110730', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72619', 'curie': 'FMA:72619', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:29,645] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110752', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242642', 'curie': 'FMA:242642', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:30,507] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110892', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75004', 'curie': 'FMA:75004', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:31,494] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110909', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7647', 'curie': 'FMA:7647', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:32,380] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110910', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77038', 'curie': 'FMA:77038', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:33,441] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110913', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256530', 'curie': 'FMA:256530', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:34,360] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110919', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77036', 'curie': 'FMA:77036', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:35,230] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110919', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68871', 'curie': 'FMA:68871', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:36,083] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110920', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256580', 'curie': 'FMA:256580', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:36,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110922', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256536', 'curie': 'FMA:256536', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:37,828] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110924', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77037', 'curie': 'FMA:77037', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:38,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110927', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256541', 'curie': 'FMA:256541', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:39,775] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110944', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83945', 'curie': 'FMA:83945', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:40,814] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110957', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75700', 'curie': 'FMA:75700', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:41,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110957', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83851', 'curie': 'FMA:83851', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:42,761] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110958', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72625', 'curie': 'FMA:72625', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:43,635] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110959', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72507', 'curie': 'FMA:72507', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:44,585] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110969', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72643', 'curie': 'FMA:72643', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:45,513] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110974', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72644', 'curie': 'FMA:72644', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:46,450] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110975', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72463', 'curie': 'FMA:72463', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:47,370] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110976', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72504', 'curie': 'FMA:72504', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:48,421] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110983', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77834', 'curie': 'FMA:77834', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:49,303] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110984', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75715', 'curie': 'FMA:75715', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:50,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0110985', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77833', 'curie': 'FMA:77833', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:51,211] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111078', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83149', 'curie': 'FMA:83149', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:52,071] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111080', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83893', 'curie': 'FMA:83893', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:52,949] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111081', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83895', 'curie': 'FMA:83895', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:53,784] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111082', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83894', 'curie': 'FMA:83894', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:54,645] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111083', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83905', 'curie': 'FMA:83905', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:55,655] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111089', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62080', 'curie': 'FMA:62080', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:56,677] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111091', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61974', 'curie': 'FMA:61974', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:57,612] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111092', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77832', 'curie': 'FMA:77832', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:58,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111098', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77618', 'curie': 'FMA:77618', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:04:59,415] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111098', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83683', 'curie': 'FMA:83683', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:00,364] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111154', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77494', 'curie': 'FMA:77494', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:01,283] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111156', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61890', 'curie': 'FMA:61890', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:02,242] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111159', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72414', 'curie': 'FMA:72414', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:03,137] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111160', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72428', 'curie': 'FMA:72428', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:04,051] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111163', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62155', 'curie': 'FMA:62155', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:04,905] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111164', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75260', 'curie': 'FMA:75260', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:05,775] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111167', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma275157', 'curie': 'FMA:275157', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:06,830] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111168', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74414', 'curie': 'FMA:74414', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:07,765] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111190', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72404', 'curie': 'FMA:72404', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:08,656] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111191', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68574', 'curie': 'FMA:68574', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:09,546] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111192', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62223', 'curie': 'FMA:62223', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:10,550] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111201', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83777', 'curie': 'FMA:83777', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:11,728] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111207', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68863', 'curie': 'FMA:68863', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:12,756] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111207', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74019', 'curie': 'FMA:74019', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:13,694] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111212', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61885', 'curie': 'FMA:61885', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:14,602] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111214', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67947', 'curie': 'FMA:67947', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:15,928] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111219', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62907', 'curie': 'FMA:62907', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:16,868] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111221', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76844', 'curie': 'FMA:76844', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:17,859] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111222', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62908', 'curie': 'FMA:62908', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:18,800] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111226', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62035', 'curie': 'FMA:62035', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:19,711] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111230', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62010', 'curie': 'FMA:62010', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:20,648] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111276', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72465', 'curie': 'FMA:72465', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:21,561] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111281', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72495', 'curie': 'FMA:72495', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:22,482] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111282', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62403', 'curie': 'FMA:62403', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:23,470] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111296', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72408', 'curie': 'FMA:72408', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:24,407] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111299', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72407', 'curie': 'FMA:72407', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:25,347] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111304', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61857', 'curie': 'FMA:61857', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:26,282] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111305', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83755', 'curie': 'FMA:83755', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:27,100] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111306', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74508', 'curie': 'FMA:74508', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:28,005] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111307', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49039', 'curie': 'FMA:49039', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:28,840] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111308', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61901', 'curie': 'FMA:61901', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:29,759] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111309', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72247', 'curie': 'FMA:72247', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:30,779] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111317', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61899', 'curie': 'FMA:61899', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:31,706] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111319', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77531', 'curie': 'FMA:77531', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:32,618] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111320', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83775', 'curie': 'FMA:83775', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:33,566] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111321', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83763', 'curie': 'FMA:83763', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:34,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111325', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83766', 'curie': 'FMA:83766', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:35,492] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111326', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72482', 'curie': 'FMA:72482', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:36,421] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111328', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61905', 'curie': 'FMA:61905', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:37,323] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111329', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83783', 'curie': 'FMA:83783', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:38,205] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111330', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma274408', 'curie': 'FMA:274408', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:39,091] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111340', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61920', 'curie': 'FMA:61920', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:40,108] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111341', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67883', 'curie': 'FMA:67883', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:41,021] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111347', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62222', 'curie': 'FMA:62222', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:42,047] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111350', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62056', 'curie': 'FMA:62056', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:43,048] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111351', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62347', 'curie': 'FMA:62347', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:43,842] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61897', 'curie': 'FMA:61897', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:44,819] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111356', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62317', 'curie': 'FMA:62317', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:45,727] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111359', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62054', 'curie': 'FMA:62054', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:46,560] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111360', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74507', 'curie': 'FMA:74507', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:47,402] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111511', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61854', 'curie': 'FMA:61854', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:48,395] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111536', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54825', 'curie': 'FMA:54825', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:49,306] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111548', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72645', 'curie': 'FMA:72645', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:50,214] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111549', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72505', 'curie': 'FMA:72505', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:51,054] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111550', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75805', 'curie': 'FMA:75805', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:51,990] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111551', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72620', 'curie': 'FMA:72620', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:53,011] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111558', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62000', 'curie': 'FMA:62000', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:53,956] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111567', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83726', 'curie': 'FMA:83726', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:54,857] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111586', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242201', 'curie': 'FMA:242201', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:55,867] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111590', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61825', 'curie': 'FMA:61825', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:56,812] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111592', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74891', 'curie': 'FMA:74891', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:57,759] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111595', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74890', 'curie': 'FMA:74890', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:58,744] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111608', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6330', 'curie': 'FMA:6330', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:05:59,771] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111609', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71176', 'curie': 'FMA:71176', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:00,792] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111656', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62026', 'curie': 'FMA:62026', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:01,808] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111699', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6316', 'curie': 'FMA:6316', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:02,701] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111700', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71181', 'curie': 'FMA:71181', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:03,548] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111701', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6337', 'curie': 'FMA:6337', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:04,473] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111702', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71189', 'curie': 'FMA:71189', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:05,295] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111703', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6344', 'curie': 'FMA:6344', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:06,216] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111704', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256629', 'curie': 'FMA:256629', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:07,240] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111705', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6323', 'curie': 'FMA:6323', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:08,171] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111706', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71169', 'curie': 'FMA:71169', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:09,182] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111707', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78454', 'curie': 'FMA:78454', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:10,098] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111709', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6006', 'curie': 'FMA:6006', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:11,027] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111710', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71167', 'curie': 'FMA:71167', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:12,245] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111711', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma321588', 'curie': 'FMA:321588', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:13,176] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111712', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma258178', 'curie': 'FMA:258178', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:14,140] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111769', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9637', 'curie': 'FMA:9637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:15,013] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111810', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54640', 'curie': 'FMA:54640', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:15,907] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111906', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83786', 'curie': 'FMA:83786', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:16,873] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111907', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83771', 'curie': 'FMA:83771', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:17,783] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111909', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72514', 'curie': 'FMA:72514', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:18,702] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111910', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma273671', 'curie': 'FMA:273671', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:19,512] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111911', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83782', 'curie': 'FMA:83782', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:20,437] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111914', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72487', 'curie': 'FMA:72487', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:21,458] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111919', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84023', 'curie': 'FMA:84023', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:22,382] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111954', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61980', 'curie': 'FMA:61980', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:23,253] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111955', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61880', 'curie': 'FMA:61880', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:24,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111965', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72501', 'curie': 'FMA:72501', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:25,070] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111966', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52610', 'curie': 'FMA:52610', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:25,979] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0111967', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71248', 'curie': 'FMA:71248', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:26,898] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112003', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71116', 'curie': 'FMA:71116', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:27,816] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112004', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54518', 'curie': 'FMA:54518', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:28,753] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112041', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7181', 'curie': 'FMA:7181', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:29,653] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112046', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62327', 'curie': 'FMA:62327', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:30,582] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112051', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62335', 'curie': 'FMA:62335', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:31,507] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112073', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6332', 'curie': 'FMA:6332', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:32,354] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112074', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71178', 'curie': 'FMA:71178', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:33,237] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112097', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma56460', 'curie': 'FMA:56460', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:34,266] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112157', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77636', 'curie': 'FMA:77636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:35,189] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112205', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12274', 'curie': 'FMA:12274', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:36,075] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112236', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72628', 'curie': 'FMA:72628', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:37,027] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112282', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72498', 'curie': 'FMA:72498', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:37,952] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112283', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61977', 'curie': 'FMA:61977', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:38,972] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112284', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62184', 'curie': 'FMA:62184', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:39,832] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112297', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54621', 'curie': 'FMA:54621', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:40,937] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112299', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72636', 'curie': 'FMA:72636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:41,854] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112301', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72631', 'curie': 'FMA:72631', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:43,045] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112309', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62186', 'curie': 'FMA:62186', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:44,106] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112319', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62022', 'curie': 'FMA:62022', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:45,269] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112321', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62215', 'curie': 'FMA:62215', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:46,152] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112322', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72484', 'curie': 'FMA:72484', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:47,176] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112323', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62217', 'curie': 'FMA:62217', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:48,018] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112324', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72477', 'curie': 'FMA:72477', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:48,918] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112325', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72422', 'curie': 'FMA:72422', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:49,944] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112326', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77613', 'curie': 'FMA:77613', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:50,957] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112334', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62187', 'curie': 'FMA:62187', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:52,192] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112335', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62199', 'curie': 'FMA:62199', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:53,198] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112336', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62200', 'curie': 'FMA:62200', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:54,439] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112339', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62202', 'curie': 'FMA:62202', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:55,353] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112346', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77614', 'curie': 'FMA:77614', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:56,173] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112350', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62052', 'curie': 'FMA:62052', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:57,092] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112351', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72438', 'curie': 'FMA:72438', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:58,128] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112354', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72452', 'curie': 'FMA:72452', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:59,042] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72435', 'curie': 'FMA:72435', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:06:59,976] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112361', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72506', 'curie': 'FMA:72506', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:00,900] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112378', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62332', 'curie': 'FMA:62332', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:01,821] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112392', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76928', 'curie': 'FMA:76928', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:02,835] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112394', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83884', 'curie': 'FMA:83884', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:03,754] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112395', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278635', 'curie': 'FMA:278635', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:04,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112396', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278639', 'curie': 'FMA:278639', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:05,719] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112398', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83883', 'curie': 'FMA:83883', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:06,617] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112400', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83887', 'curie': 'FMA:83887', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:07,485] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112401', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma278651', 'curie': 'FMA:278651', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:08,355] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112402', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83889', 'curie': 'FMA:83889', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:09,288] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112403', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83890', 'curie': 'FMA:83890', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:10,311] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112404', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83888', 'curie': 'FMA:83888', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:11,207] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112405', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83882', 'curie': 'FMA:83882', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:12,152] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112408', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72255', 'curie': 'FMA:72255', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:12,989] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112410', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72259', 'curie': 'FMA:72259', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:13,897] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112424', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77612', 'curie': 'FMA:77612', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:15,089] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112448', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma56451', 'curie': 'FMA:56451', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:15,988] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112450', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma53435', 'curie': 'FMA:53435', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:16,859] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112452', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72239', 'curie': 'FMA:72239', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:17,705] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112455', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7193', 'curie': 'FMA:7193', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:18,613] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112459', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72508', 'curie': 'FMA:72508', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:19,642] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112460', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72499', 'curie': 'FMA:72499', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:20,547] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112461', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72646', 'curie': 'FMA:72646', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:21,473] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112513', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242644', 'curie': 'FMA:242644', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:22,488] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112514', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma236871', 'curie': 'FMA:236871', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:23,514] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112514', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68614', 'curie': 'FMA:68614', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:24,669] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112564', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77280', 'curie': 'FMA:77280', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:25,681] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112630', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83929', 'curie': 'FMA:83929', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:26,600] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112735', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75710', 'curie': 'FMA:75710', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:27,516] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0112736', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62038', 'curie': 'FMA:62038', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:28,443] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0381379', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83684', 'curie': 'FMA:83684', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:29,327] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0381380', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61874', 'curie': 'FMA:61874', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:30,184] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0381382', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71325', 'curie': 'FMA:71325', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:31,217] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0399706', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293108', 'curie': 'FMA:293108', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:32,230] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0406253', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23260', 'curie': 'FMA:23260', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:33,138] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0412022', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23450', 'curie': 'FMA:23450', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:34,065] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0435507', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20113', 'curie': 'FMA:20113', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:34,949] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0443027', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma272953', 'curie': 'FMA:272953', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:35,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0451830', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18674', 'curie': 'FMA:18674', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:36,731] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0483508', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma79645', 'curie': 'FMA:79645', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:37,553] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0483547', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61403', 'curie': 'FMA:61403', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:38,664] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0483746', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55636', 'curie': 'FMA:55636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:39,516] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0484169', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63916', 'curie': 'FMA:63916', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:40,423] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0484175', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61112', 'curie': 'FMA:61112', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:41,289] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0484226', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9639', 'curie': 'FMA:9639', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:42,254] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0484418', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18665', 'curie': 'FMA:18665', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:43,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0484922', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70860', 'curie': 'FMA:70860', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:44,410] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0485274', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55220', 'curie': 'FMA:55220', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:45,261] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0485662', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma86666', 'curie': 'FMA:86666', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:46,146] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0486019', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma60908', 'curie': 'FMA:60908', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:47,053] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0486534', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6246', 'curie': 'FMA:6246', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:47,887] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0486834', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19656', 'curie': 'FMA:19656', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:48,709] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0487406', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77821', 'curie': 'FMA:77821', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:49,631] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0487617', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83607', 'curie': 'FMA:83607', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:50,554] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0487818', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66070', 'curie': 'FMA:66070', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:51,558] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0488106', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma261269', 'curie': 'FMA:261269', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:52,398] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0488160', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67695', 'curie': 'FMA:67695', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:53,293] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0488160', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63914', 'curie': 'FMA:63914', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:54,143] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0488805', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293879', 'curie': 'FMA:293879', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:55,006] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0488806', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293110', 'curie': 'FMA:293110', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:55,838] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0490747', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma45635', 'curie': 'FMA:45635', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:56,663] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0491979', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76703', 'curie': 'FMA:76703', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:57,623] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0491979', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13550', 'curie': 'FMA:13550', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:58,546] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0492799', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64784', 'curie': 'FMA:64784', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:07:59,352] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0493870', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma295618', 'curie': 'FMA:295618', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:00,139] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0495405', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma295624', 'curie': 'FMA:295624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:01,004] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0496060', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293149', 'curie': 'FMA:293149', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:01,910] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0496349', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293145', 'curie': 'FMA:293145', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:02,950] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0499274', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77492', 'curie': 'FMA:77492', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:03,774] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0499707', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77180', 'curie': 'FMA:77180', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:04,787] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0501406', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293147', 'curie': 'FMA:293147', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:05,614] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0502887', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75441', 'curie': 'FMA:75441', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:06,526] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0503738', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67796', 'curie': 'FMA:67796', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:07,550] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0503819', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23619', 'curie': 'FMA:23619', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:08,578] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0503992', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67584', 'curie': 'FMA:67584', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:09,397] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0505211', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83608', 'curie': 'FMA:83608', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:10,270] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0505735', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9673', 'curie': 'FMA:9673', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:11,131] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0505737', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma82513', 'curie': 'FMA:82513', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:11,967] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0507296', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62517', 'curie': 'FMA:62517', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:12,780] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723789', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma51997', 'curie': 'FMA:51997', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:13,805] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723794', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59320', 'curie': 'FMA:59320', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:14,722] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723795', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5863', 'curie': 'FMA:5863', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:15,552] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723807', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma29794', 'curie': 'FMA:29794', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:16,757] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723811', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23935', 'curie': 'FMA:23935', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:17,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723814', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma264609', 'curie': 'FMA:264609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:18,428] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723818', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68454', 'curie': 'FMA:68454', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:19,324] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723819', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma69065', 'curie': 'FMA:69065', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:20,225] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723821', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83965', 'curie': 'FMA:83965', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:21,029] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723822', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49429', 'curie': 'FMA:49429', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:22,096] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723823', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63063', 'curie': 'FMA:63063', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:23,021] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723826', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62918', 'curie': 'FMA:62918', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:23,929] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723828', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74511', 'curie': 'FMA:74511', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:24,884] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723831', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62666', 'curie': 'FMA:62666', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:25,831] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723834', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61237', 'curie': 'FMA:61237', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:26,908] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723837', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50870', 'curie': 'FMA:50870', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:27,837] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723839', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72601', 'curie': 'FMA:72601', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:28,652] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723844', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma261812', 'curie': 'FMA:261812', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:29,475] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723847', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59024', 'curie': 'FMA:59024', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:30,491] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723850', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24144', 'curie': 'FMA:24144', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:31,306] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723853', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23797', 'curie': 'FMA:23797', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:32,219] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723860', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13343', 'curie': 'FMA:13343', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:33,052] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723866', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77460', 'curie': 'FMA:77460', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:33,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723867', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma51302', 'curie': 'FMA:51302', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:34,791] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723869', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9668', 'curie': 'FMA:9668', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:35,637] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723873', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12824', 'curie': 'FMA:12824', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:36,532] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723875', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9680', 'curie': 'FMA:9680', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:37,455] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723877', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23878', 'curie': 'FMA:23878', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:38,687] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723878', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54971', 'curie': 'FMA:54971', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:39,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723880', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma48980', 'curie': 'FMA:48980', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:40,527] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723883', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84059', 'curie': 'FMA:84059', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:41,373] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723886', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55223', 'curie': 'FMA:55223', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:42,267] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723890', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14958', 'curie': 'FMA:14958', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:43,188] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723895', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55233', 'curie': 'FMA:55233', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:44,012] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723898', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83859', 'curie': 'FMA:83859', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:44,832] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723899', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242654', 'curie': 'FMA:242654', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:45,755] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723902', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19825', 'curie': 'FMA:19825', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:46,881] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723912', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49157', 'curie': 'FMA:49157', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:47,694] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723913', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293500', 'curie': 'FMA:293500', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:48,607] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723914', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293041', 'curie': 'FMA:293041', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:49,535] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723916', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50779', 'curie': 'FMA:50779', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:50,429] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723917', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19373', 'curie': 'FMA:19373', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:51,279] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723918', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52964', 'curie': 'FMA:52964', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:52,307] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723919', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72575', 'curie': 'FMA:72575', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:53,216] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723920', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58881', 'curie': 'FMA:58881', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:54,113] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723923', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19733', 'curie': 'FMA:19733', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:54,858] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723925', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73223', 'curie': 'FMA:73223', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:55,686] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723926', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49006', 'curie': 'FMA:49006', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:56,601] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723927', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16657', 'curie': 'FMA:16657', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:57,626] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723929', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49184', 'curie': 'FMA:49184', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:58,550] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723932', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22428', 'curie': 'FMA:22428', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:08:59,355] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723935', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66253', 'curie': 'FMA:66253', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:00,291] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723936', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16950', 'curie': 'FMA:16950', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:01,244] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723941', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19699', 'curie': 'FMA:19699', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:02,241] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723943', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7242', 'curie': 'FMA:7242', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:03,161] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723945', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18821', 'curie': 'FMA:18821', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:04,083] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723950', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma35249', 'curie': 'FMA:35249', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:05,004] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723951', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma10447', 'curie': 'FMA:10447', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:05,923] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723953', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7830', 'curie': 'FMA:7830', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:06,858] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723954', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62075', 'curie': 'FMA:62075', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:07,872] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723955', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13140', 'curie': 'FMA:13140', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:09,099] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723957', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14998', 'curie': 'FMA:14998', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:10,015] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723958', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46688', 'curie': 'FMA:46688', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:10,930] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723966', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52894', 'curie': 'FMA:52894', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:11,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723968', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15575', 'curie': 'FMA:15575', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:12,782] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723973', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66643', 'curie': 'FMA:66643', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:13,812] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723986', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59222', 'curie': 'FMA:59222', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:14,741] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723996', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5884', 'curie': 'FMA:5884', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:15,569] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0723998', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20168', 'curie': 'FMA:20168', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:16,505] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724001', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67611', 'curie': 'FMA:67611', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:17,303] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724007', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma43882', 'curie': 'FMA:43882', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:18,102] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724009', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16656', 'curie': 'FMA:16656', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:18,917] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724015', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma312659', 'curie': 'FMA:312659', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:19,862] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724016', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23975', 'curie': 'FMA:23975', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:20,677] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724017', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62966', 'curie': 'FMA:62966', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:21,655] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724022', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma224858', 'curie': 'FMA:224858', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:22,411] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724027', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma87177', 'curie': 'FMA:87177', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:23,208] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724028', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9550', 'curie': 'FMA:9550', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:24,139] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724031', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13455', 'curie': 'FMA:13455', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:24,970] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724033', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma265203', 'curie': 'FMA:265203', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:25,994] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724038', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242770', 'curie': 'FMA:242770', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:27,691] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724042', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24506', 'curie': 'FMA:24506', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:28,978] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724043', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61959', 'curie': 'FMA:61959', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:30,196] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724046', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma10059', 'curie': 'FMA:10059', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:31,117] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724050', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12522', 'curie': 'FMA:12522', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:32,165] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724051', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70540', 'curie': 'FMA:70540', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:33,167] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724061', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77632', 'curie': 'FMA:77632', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:34,077] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724062', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9584', 'curie': 'FMA:9584', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:35,016] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724063', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20509', 'curie': 'FMA:20509', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:35,926] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724067', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma264773', 'curie': 'FMA:264773', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:36,763] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724069', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74438', 'curie': 'FMA:74438', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:37,779] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724072', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16011', 'curie': 'FMA:16011', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:38,800] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724075', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma296782', 'curie': 'FMA:296782', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:39,809] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724076', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19718', 'curie': 'FMA:19718', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:40,640] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724077', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma51779', 'curie': 'FMA:51779', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:41,564] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724078', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59510', 'curie': 'FMA:59510', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:42,577] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724080', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20234', 'curie': 'FMA:20234', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:43,505] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724082', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma3734', 'curie': 'FMA:3734', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:44,527] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724083', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37670', 'curie': 'FMA:37670', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:45,340] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724088', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19638', 'curie': 'FMA:19638', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:46,162] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724091', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63000', 'curie': 'FMA:63000', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:46,991] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724092', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15013', 'curie': 'FMA:15013', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:47,949] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724096', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma321754', 'curie': 'FMA:321754', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:48,823] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724097', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma33636', 'curie': 'FMA:33636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:49,649] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724099', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21354', 'curie': 'FMA:21354', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:50,576] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724100', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17698', 'curie': 'FMA:17698', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:51,485] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724102', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7198', 'curie': 'FMA:7198', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:52,512] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724107', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13109', 'curie': 'FMA:13109', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:53,402] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724109', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52872', 'curie': 'FMA:52872', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:54,378] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724110', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma69071', 'curie': 'FMA:69071', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:55,285] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724111', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma43915', 'curie': 'FMA:43915', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:56,213] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724113', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58435', 'curie': 'FMA:58435', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:57,120] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724118', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71123', 'curie': 'FMA:71123', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:57,906] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724126', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18934', 'curie': 'FMA:18934', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:58,764] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724127', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma25054', 'curie': 'FMA:25054', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:09:59,696] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724132', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma320527', 'curie': 'FMA:320527', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:00,508] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724135', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77600', 'curie': 'FMA:77600', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:01,422] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724136', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22314', 'curie': 'FMA:22314', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:02,260] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724137', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52945', 'curie': 'FMA:52945', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:03,070] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724139', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9143', 'curie': 'FMA:9143', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:03,881] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724140', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21866', 'curie': 'FMA:21866', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:04,826] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724142', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19975', 'curie': 'FMA:19975', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:05,736] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724146', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84599', 'curie': 'FMA:84599', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:06,911] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724150', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74654', 'curie': 'FMA:74654', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:07,760] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724152', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16901', 'curie': 'FMA:16901', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:08,691] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724162', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17740', 'curie': 'FMA:17740', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:09,729] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724164', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15568', 'curie': 'FMA:15568', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:10,638] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724166', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma35334', 'curie': 'FMA:35334', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:11,599] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724170', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma312589', 'curie': 'FMA:312589', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:12,569] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724171', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18307', 'curie': 'FMA:18307', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:13,496] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724172', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85537', 'curie': 'FMA:85537', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:14,346] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724176', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma60193', 'curie': 'FMA:60193', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:15,354] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724182', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58422', 'curie': 'FMA:58422', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:16,491] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724184', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23899', 'curie': 'FMA:23899', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:17,532] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724185', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71337', 'curie': 'FMA:71337', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:18,532] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724188', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70983', 'curie': 'FMA:70983', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:19,453] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724193', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46769', 'curie': 'FMA:46769', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:20,315] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724198', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7638', 'curie': 'FMA:7638', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:21,290] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724200', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13402', 'curie': 'FMA:13402', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:22,101] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724201', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12779', 'curie': 'FMA:12779', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:22,928] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724203', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62805', 'curie': 'FMA:62805', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:23,854] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724207', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7158', 'curie': 'FMA:7158', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:24,772] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724208', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22430', 'curie': 'FMA:22430', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:25,682] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724212', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50187', 'curie': 'FMA:50187', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:26,562] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724217', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71302', 'curie': 'FMA:71302', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:27,526] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724221', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52745', 'curie': 'FMA:52745', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:28,459] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724224', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7207', 'curie': 'FMA:7207', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:29,274] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724227', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55093', 'curie': 'FMA:55093', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:30,083] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724228', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49940', 'curie': 'FMA:49940', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:30,928] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724229', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21246', 'curie': 'FMA:21246', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:31,833] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724231', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77007', 'curie': 'FMA:77007', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:32,648] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724233', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50655', 'curie': 'FMA:50655', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:33,570] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724239', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66645', 'curie': 'FMA:66645', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:34,495] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724243', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15028', 'curie': 'FMA:15028', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:35,336] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724244', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma3786', 'curie': 'FMA:3786', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:36,248] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724245', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74419', 'curie': 'FMA:74419', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:37,176] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724246', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma35353', 'curie': 'FMA:35353', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:38,088] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724247', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55678', 'curie': 'FMA:55678', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:39,004] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724249', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma42380', 'curie': 'FMA:42380', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:40,040] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724251', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma25052', 'curie': 'FMA:25052', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:40,952] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724256', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50873', 'curie': 'FMA:50873', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:41,772] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724257', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6470', 'curie': 'FMA:6470', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:42,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724262', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37347', 'curie': 'FMA:37347', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:43,508] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724263', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58684', 'curie': 'FMA:58684', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:44,331] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724276', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84229', 'curie': 'FMA:84229', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:45,215] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724279', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma79871', 'curie': 'FMA:79871', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:46,064] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724280', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7233', 'curie': 'FMA:7233', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:46,984] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724285', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83138', 'curie': 'FMA:83138', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:47,817] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724289', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59350', 'curie': 'FMA:59350', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:48,731] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724292', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74897', 'curie': 'FMA:74897', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:49,763] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724294', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84189', 'curie': 'FMA:84189', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:50,779] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724295', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75652', 'curie': 'FMA:75652', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:51,591] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724298', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77619', 'curie': 'FMA:77619', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:52,334] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724299', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55019', 'curie': 'FMA:55019', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:53,215] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724302', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71007', 'curie': 'FMA:71007', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:54,086] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724307', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85519', 'curie': 'FMA:85519', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:54,868] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724308', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma261726', 'curie': 'FMA:261726', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:55,793] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724309', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13385', 'curie': 'FMA:13385', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:56,612] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724314', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55096', 'curie': 'FMA:55096', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:57,537] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724315', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67545', 'curie': 'FMA:67545', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:58,465] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724316', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32413', 'curie': 'FMA:32413', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:10:59,312] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724316', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67355', 'curie': 'FMA:67355', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:00,196] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724317', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma86485', 'curie': 'FMA:86485', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:01,019] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724319', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84355', 'curie': 'FMA:84355', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:01,938] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724321', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62819', 'curie': 'FMA:62819', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:02,867] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724322', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66808', 'curie': 'FMA:66808', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:03,706] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724323', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73915', 'curie': 'FMA:73915', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:04,599] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724324', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7271', 'curie': 'FMA:7271', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:05,572] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724331', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64922', 'curie': 'FMA:64922', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:06,418] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724332', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma233946', 'curie': 'FMA:233946', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:07,263] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724333', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13087', 'curie': 'FMA:13087', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:08,286] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724336', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma290267', 'curie': 'FMA:290267', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:09,206] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724341', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62410', 'curie': 'FMA:62410', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:10,133] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724344', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293971', 'curie': 'FMA:293971', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:10,946] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724640', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293971', 'curie': 'FMA:293971', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:11,751] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724354', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62924', 'curie': 'FMA:62924', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:12,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724355', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma35369', 'curie': 'FMA:35369', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:13,512] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724356', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61948', 'curie': 'FMA:61948', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:14,353] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724357', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma33815', 'curie': 'FMA:33815', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:15,357] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724358', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15624', 'curie': 'FMA:15624', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:16,281] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724359', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37704', 'curie': 'FMA:37704', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:17,248] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724360', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14539', 'curie': 'FMA:14539', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:18,212] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724367', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma280610', 'curie': 'FMA:280610', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:19,145] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724370', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9641', 'curie': 'FMA:9641', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:19,958] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724372', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55713', 'curie': 'FMA:55713', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:20,782] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724375', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma320425', 'curie': 'FMA:320425', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:21,689] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724377', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50990', 'curie': 'FMA:50990', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:22,613] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724379', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14655', 'curie': 'FMA:14655', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:23,644] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724381', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24948', 'curie': 'FMA:24948', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:24,565] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724382', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7110', 'curie': 'FMA:7110', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:25,392] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724384', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18829', 'curie': 'FMA:18829', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:26,211] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724385', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49443', 'curie': 'FMA:49443', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:27,234] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724386', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85358', 'curie': 'FMA:85358', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:28,258] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724386', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85355', 'curie': 'FMA:85355', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:29,088] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724390', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma11355', 'curie': 'FMA:11355', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:29,987] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724395', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14574', 'curie': 'FMA:14574', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:30,805] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724398', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20172', 'curie': 'FMA:20172', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:31,528] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724400', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68443', 'curie': 'FMA:68443', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:32,395] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724401', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma53410', 'curie': 'FMA:53410', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:33,167] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724403', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13224', 'curie': 'FMA:13224', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:34,125] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724406', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9503', 'curie': 'FMA:9503', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:35,023] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724408', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9689', 'curie': 'FMA:9689', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:35,840] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724417', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma44226', 'curie': 'FMA:44226', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:36,654] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724424', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85541', 'curie': 'FMA:85541', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:37,585] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724426', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma285406', 'curie': 'FMA:285406', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:38,410] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724427', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50169', 'curie': 'FMA:50169', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:39,197] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724429', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14121', 'curie': 'FMA:14121', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:40,139] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724431', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14469', 'curie': 'FMA:14469', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:40,951] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724433', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9465', 'curie': 'FMA:9465', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:41,916] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724443', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14559', 'curie': 'FMA:14559', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:42,787] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724444', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14547', 'curie': 'FMA:14547', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:43,621] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724445', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16667', 'curie': 'FMA:16667', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:44,634] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724450', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64017', 'curie': 'FMA:64017', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:45,686] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724451', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83936', 'curie': 'FMA:83936', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:46,582] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724453', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78705', 'curie': 'FMA:78705', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:47,250] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724455', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84430', 'curie': 'FMA:84430', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:48,041] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724456', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58102', 'curie': 'FMA:58102', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:48,945] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724457', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma78497', 'curie': 'FMA:78497', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:49,696] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724458', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50081', 'curie': 'FMA:50081', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:50,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724463', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24293', 'curie': 'FMA:24293', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:51,397] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724465', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74612', 'curie': 'FMA:74612', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:52,222] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724466', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52856', 'curie': 'FMA:52856', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:53,033] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724469', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46805', 'curie': 'FMA:46805', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:53,871] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724479', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15590', 'curie': 'FMA:15590', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:54,782] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724482', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49993', 'curie': 'FMA:49993', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:55,596] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724488', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22908', 'curie': 'FMA:22908', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:56,428] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724491', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77824', 'curie': 'FMA:77824', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:57,447] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724494', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19092', 'curie': 'FMA:19092', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:58,366] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724497', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83450', 'curie': 'FMA:83450', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:11:59,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724498', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5979', 'curie': 'FMA:5979', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:00,514] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724498', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77516', 'curie': 'FMA:77516', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:01,447] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724500', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15892', 'curie': 'FMA:15892', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:02,671] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724503', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23900', 'curie': 'FMA:23900', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:03,487] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724504', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18868', 'curie': 'FMA:18868', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:04,417] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724506', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23393', 'curie': 'FMA:23393', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:05,203] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724513', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19855', 'curie': 'FMA:19855', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:06,357] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724514', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17931', 'curie': 'FMA:17931', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:07,188] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724519', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50932', 'curie': 'FMA:50932', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:08,187] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724520', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46602', 'curie': 'FMA:46602', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:09,324] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724522', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75592', 'curie': 'FMA:75592', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:10,246] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724524', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma31542', 'curie': 'FMA:31542', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:11,222] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724525', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32620', 'curie': 'FMA:32620', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:12,088] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724527', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma3789', 'curie': 'FMA:3789', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:13,006] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724531', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9921', 'curie': 'FMA:9921', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:13,828] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724536', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70887', 'curie': 'FMA:70887', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:14,742] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0728161', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70887', 'curie': 'FMA:70887', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:15,670] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724537', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18014', 'curie': 'FMA:18014', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:16,587] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724538', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma284658', 'curie': 'FMA:284658', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:17,506] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724539', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293873', 'curie': 'FMA:293873', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:18,425] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724541', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma223286', 'curie': 'FMA:223286', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:19,256] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724542', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58269', 'curie': 'FMA:58269', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:20,172] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724544', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma312610', 'curie': 'FMA:312610', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:21,010] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724545', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma80223', 'curie': 'FMA:80223', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:21,922] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724549', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59828', 'curie': 'FMA:59828', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:22,729] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724551', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19901', 'curie': 'FMA:19901', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:23,644] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724552', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83930', 'curie': 'FMA:83930', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:24,371] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724553', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma268630', 'curie': 'FMA:268630', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:25,196] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724554', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma295784', 'curie': 'FMA:295784', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:26,121] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724555', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma240707', 'curie': 'FMA:240707', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:27,138] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724556', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64803', 'curie': 'FMA:64803', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:28,068] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724560', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46837', 'curie': 'FMA:46837', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:28,920] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724563', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma30315', 'curie': 'FMA:30315', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:29,732] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724566', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46494', 'curie': 'FMA:46494', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:30,626] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724568', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75709', 'curie': 'FMA:75709', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:31,552] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724572', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67930', 'curie': 'FMA:67930', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:32,316] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724573', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83940', 'curie': 'FMA:83940', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:33,187] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724574', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24036', 'curie': 'FMA:24036', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:34,113] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724578', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12167', 'curie': 'FMA:12167', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:35,135] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724578', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23093', 'curie': 'FMA:23093', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:35,955] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724579', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma293883', 'curie': 'FMA:293883', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:36,875] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724580', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68869', 'curie': 'FMA:68869', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:37,835] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724581', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14659', 'curie': 'FMA:14659', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:38,804] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724584', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62498', 'curie': 'FMA:62498', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:39,532] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724586', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62798', 'curie': 'FMA:62798', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:40,450] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724592', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61219', 'curie': 'FMA:61219', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:41,219] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724607', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63871', 'curie': 'FMA:63871', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:42,090] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724609', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32693', 'curie': 'FMA:32693', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:42,806] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724610', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75130', 'curie': 'FMA:75130', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:43,731] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724611', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54617', 'curie': 'FMA:54617', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:44,542] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724612', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68829', 'curie': 'FMA:68829', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:45,358] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724616', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20676', 'curie': 'FMA:20676', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:46,387] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724619', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma68018', 'curie': 'FMA:68018', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:47,224] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724622', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46495', 'curie': 'FMA:46495', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:48,022] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724623', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59083', 'curie': 'FMA:59083', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:48,839] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724626', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21426', 'curie': 'FMA:21426', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:50,214] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724627', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19240', 'curie': 'FMA:19240', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:51,192] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724630', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52618', 'curie': 'FMA:52618', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:52,012] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724634', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59318', 'curie': 'FMA:59318', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:52,947] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724636', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46779', 'curie': 'FMA:46779', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:53,761] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724644', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma313607', 'curie': 'FMA:313607', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:54,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724645', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50214', 'curie': 'FMA:50214', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:55,607] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724655', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14969', 'curie': 'FMA:14969', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:56,529] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724656', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37511', 'curie': 'FMA:37511', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:57,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724664', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13363', 'curie': 'FMA:13363', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:58,277] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724665', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16585', 'curie': 'FMA:16585', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:12:59,190] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724669', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14956', 'curie': 'FMA:14956', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:00,116] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724673', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9617', 'curie': 'FMA:9617', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:01,348] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724678', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7471', 'curie': 'FMA:7471', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:02,366] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724679', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37517', 'curie': 'FMA:37517', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:03,285] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724680', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15019', 'curie': 'FMA:15019', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:04,129] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724682', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64807', 'curie': 'FMA:64807', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:05,022] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724686', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma262010', 'curie': 'FMA:262010', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:06,143] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724691', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50863', 'curie': 'FMA:50863', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:07,092] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724677', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12525', 'curie': 'FMA:12525', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:07,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724688', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74993', 'curie': 'FMA:74993', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:08,805] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724697', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma44617', 'curie': 'FMA:44617', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:09,735] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724699', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49011', 'curie': 'FMA:49011', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:10,759] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724700', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58689', 'curie': 'FMA:58689', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:11,685] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724704', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75636', 'curie': 'FMA:75636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:12,489] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724705', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32875', 'curie': 'FMA:32875', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:13,367] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724708', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64171', 'curie': 'FMA:64171', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:14,183] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724709', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18845', 'curie': 'FMA:18845', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:15,256] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724711', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55637', 'curie': 'FMA:55637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:16,080] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724715', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32881', 'curie': 'FMA:32881', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:17,018] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724716', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20199', 'curie': 'FMA:20199', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:17,868] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724712', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24141', 'curie': 'FMA:24141', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:18,741] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724717', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma63897', 'curie': 'FMA:63897', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:19,532] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724719', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52752', 'curie': 'FMA:52752', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:20,369] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724725', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18675', 'curie': 'FMA:18675', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:21,195] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724729', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49795', 'curie': 'FMA:49795', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:21,959] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724730', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9758', 'curie': 'FMA:9758', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:22,834] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724731', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma29711', 'curie': 'FMA:29711', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:23,664] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724732', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14812', 'curie': 'FMA:14812', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:24,573] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724734', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7577', 'curie': 'FMA:7577', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:25,908] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724736', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67821', 'curie': 'FMA:67821', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:26,738] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724742', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55102', 'curie': 'FMA:55102', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:27,583] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724745', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70316', 'curie': 'FMA:70316', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:28,367] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724747', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54250', 'curie': 'FMA:54250', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:29,182] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724748', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61289', 'curie': 'FMA:61289', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:29,998] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724752', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14752', 'curie': 'FMA:14752', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:30,718] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724753', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma289360', 'curie': 'FMA:289360', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:31,554] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724760', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59806', 'curie': 'FMA:59806', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:32,350] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724761', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma44310', 'curie': 'FMA:44310', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:33,188] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724767', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19623', 'curie': 'FMA:19623', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:34,039] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724768', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma69091', 'curie': 'FMA:69091', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:35,131] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724772', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77626', 'curie': 'FMA:77626', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:35,955] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724773', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75439', 'curie': 'FMA:75439', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:36,809] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724778', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma49846', 'curie': 'FMA:49846', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:37,690] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724781', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76609', 'curie': 'FMA:76609', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:38,610] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724788', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma312967', 'curie': 'FMA:312967', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:39,531] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724790', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12806', 'curie': 'FMA:12806', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:40,346] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724791', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14585', 'curie': 'FMA:14585', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:41,219] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724794', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma295858', 'curie': 'FMA:295858', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:42,086] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724796', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7199', 'curie': 'FMA:7199', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:43,128] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724798', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24518', 'curie': 'FMA:24518', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:43,982] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724808', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72510', 'curie': 'FMA:72510', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:44,771] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724815', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma61375', 'curie': 'FMA:61375', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:45,574] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724817', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62130', 'curie': 'FMA:62130', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:46,599] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724818', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma53667', 'curie': 'FMA:53667', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:47,621] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724820', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma10425', 'curie': 'FMA:10425', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:48,450] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724827', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17233', 'curie': 'FMA:17233', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:49,366] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724837', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma51140', 'curie': 'FMA:51140', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:50,174] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724839', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma256524', 'curie': 'FMA:256524', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:50,990] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724840', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15589', 'curie': 'FMA:15589', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:51,811] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724844', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7464', 'curie': 'FMA:7464', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:52,646] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724845', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9907', 'curie': 'FMA:9907', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:53,558] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724846', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma25048', 'curie': 'FMA:25048', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:54,476] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724849', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5897', 'curie': 'FMA:5897', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:55,298] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724850', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62114', 'curie': 'FMA:62114', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:56,276] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724851', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18245', 'curie': 'FMA:18245', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:57,018] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724852', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma53154', 'curie': 'FMA:53154', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:57,855] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724857', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54802', 'curie': 'FMA:54802', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:58,771] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724860', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma6643', 'curie': 'FMA:6643', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:13:59,704] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724861', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17693', 'curie': 'FMA:17693', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:00,517] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724868', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20116', 'curie': 'FMA:20116', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:01,337] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724871', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9629', 'curie': 'FMA:9629', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:02,317] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724873', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma25056', 'curie': 'FMA:25056', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:03,177] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724874', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7098', 'curie': 'FMA:7098', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:04,101] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724877', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9608', 'curie': 'FMA:9608', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:05,024] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724883', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62794', 'curie': 'FMA:62794', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:05,942] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724884', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma70314', 'curie': 'FMA:70314', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:06,739] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724891', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma17028', 'curie': 'FMA:17028', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:07,689] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724892', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85276', 'curie': 'FMA:85276', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:08,611] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724899', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21443', 'curie': 'FMA:21443', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:09,447] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724905', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32419', 'curie': 'FMA:32419', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:10,364] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724907', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma52901', 'curie': 'FMA:52901', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:11,168] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724908', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18483', 'curie': 'FMA:18483', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:11,987] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724911', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12264', 'curie': 'FMA:12264', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:13,022] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724916', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma13335', 'curie': 'FMA:13335', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:13,944] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724921', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22852', 'curie': 'FMA:22852', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:14,727] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724923', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22570', 'curie': 'FMA:22570', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:15,678] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724926', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19701', 'curie': 'FMA:19701', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:16,712] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724929', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14560', 'curie': 'FMA:14560', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:17,717] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724931', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72066', 'curie': 'FMA:72066', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:18,641] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724933', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59463', 'curie': 'FMA:59463', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:19,360] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724934', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma261878', 'curie': 'FMA:261878', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:20,273] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724936', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46622', 'curie': 'FMA:46622', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:21,217] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724939', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71339', 'curie': 'FMA:71339', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:22,019] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724941', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9909', 'curie': 'FMA:9909', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:22,850] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724943', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77525', 'curie': 'FMA:77525', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:23,660] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724945', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma10646', 'curie': 'FMA:10646', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:24,580] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724951', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14955', 'curie': 'FMA:14955', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:25,499] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724953', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma21376', 'curie': 'FMA:21376', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:26,562] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724956', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54332', 'curie': 'FMA:54332', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:27,551] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724957', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma74960', 'curie': 'FMA:74960', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:28,368] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724962', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma4720', 'curie': 'FMA:4720', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:29,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725354', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma4720', 'curie': 'FMA:4720', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:30,123] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724965', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37456', 'curie': 'FMA:37456', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:31,033] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724969', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15026', 'curie': 'FMA:15026', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:31,863] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724971', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9552', 'curie': 'FMA:9552', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:32,671] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724972', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma45636', 'curie': 'FMA:45636', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:33,500] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724973', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma38485', 'curie': 'FMA:38485', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:34,418] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724975', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma321842', 'curie': 'FMA:321842', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:35,255] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724979', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma5968', 'curie': 'FMA:5968', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:36,370] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724983', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14975', 'curie': 'FMA:14975', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:37,293] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724984', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma76975', 'curie': 'FMA:76975', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:38,109] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724987', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71564', 'curie': 'FMA:71564', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:38,916] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724991', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77433', 'curie': 'FMA:77433', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:39,673] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724993', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15696', 'curie': 'FMA:15696', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:40,567] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724996', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77634', 'curie': 'FMA:77634', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:41,390] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724996', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma77637', 'curie': 'FMA:77637', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:42,292] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0724997', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22510', 'curie': 'FMA:22510', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:43,220] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725003', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma58286', 'curie': 'FMA:58286', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:44,041] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725005', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54319', 'curie': 'FMA:54319', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:44,864] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725011', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15074', 'curie': 'FMA:15074', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:45,942] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725019', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma38304', 'curie': 'FMA:38304', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:46,715] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725024', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma44594', 'curie': 'FMA:44594', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:47,632] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725026', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12224', 'curie': 'FMA:12224', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:48,553] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725027', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9600', 'curie': 'FMA:9600', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:49,365] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725029', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9535', 'curie': 'FMA:9535', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:50,270] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725035', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14992', 'curie': 'FMA:14992', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:51,001] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725037', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma83913', 'curie': 'FMA:83913', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:51,825] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725038', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma64918', 'curie': 'FMA:64918', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:52,741] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725041', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma32630', 'curie': 'FMA:32630', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:53,468] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725043', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma82508', 'curie': 'FMA:82508', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:54,386] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725047', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12267', 'curie': 'FMA:12267', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:55,313] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725048', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma73750', 'curie': 'FMA:73750', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:56,174] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725049', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85263', 'curie': 'FMA:85263', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:56,946] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725051', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242982', 'curie': 'FMA:242982', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:57,756] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725054', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46730', 'curie': 'FMA:46730', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:58,579] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725055', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma84217', 'curie': 'FMA:84217', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:14:59,294] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725059', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20932', 'curie': 'FMA:20932', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:00,230] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725062', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7283', 'curie': 'FMA:7283', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:01,149] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725070', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55671', 'curie': 'FMA:55671', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:01,972] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725072', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma45733', 'curie': 'FMA:45733', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:03,106] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725079', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62996', 'curie': 'FMA:62996', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:04,006] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725083', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma66938', 'curie': 'FMA:66938', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:05,032] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725085', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma295676', 'curie': 'FMA:295676', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:05,865] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725087', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67951', 'curie': 'FMA:67951', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:06,784] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725088', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37458', 'curie': 'FMA:37458', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:07,811] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725092', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma54647', 'curie': 'FMA:54647', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:08,737] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725098', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7501', 'curie': 'FMA:7501', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:09,653] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725104', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14582', 'curie': 'FMA:14582', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:10,584] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725106', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma242157', 'curie': 'FMA:242157', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:11,450] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725111', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma14551', 'curie': 'FMA:14551', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:12,419] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725112', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma15813', 'curie': 'FMA:15813', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:13,348] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725114', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma50983', 'curie': 'FMA:50983', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:14,294] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725117', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma71112', 'curie': 'FMA:71112', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:15,141] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725121', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma18302', 'curie': 'FMA:18302', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:16,106] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725122', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7219', 'curie': 'FMA:7219', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:16,933] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725123', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma231424', 'curie': 'FMA:231424', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:17,945] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725131', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma85006', 'curie': 'FMA:85006', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:18,759] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725133', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma24021', 'curie': 'FMA:24021', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:19,587] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725137', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55077', 'curie': 'FMA:55077', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:20,613] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725142', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma259054', 'curie': 'FMA:259054', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:21,531] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725142', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma10429', 'curie': 'FMA:10429', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:22,354] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725143', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma67509', 'curie': 'FMA:67509', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:23,225] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725146', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma20097', 'curie': 'FMA:20097', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:24,076] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725152', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma37688', 'curie': 'FMA:37688', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:24,895] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725154', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma62775', 'curie': 'FMA:62775', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:25,711] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725155', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72175', 'curie': 'FMA:72175', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:26,662] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725156', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma23377', 'curie': 'FMA:23377', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:27,549] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725158', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma16581', 'curie': 'FMA:16581', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:28,400] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725160', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma22593', 'curie': 'FMA:22593', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:29,204] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725163', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma7205', 'curie': 'FMA:7205', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:30,130] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725168', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma59756', 'curie': 'FMA:59756', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:31,052] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725170', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma46664', 'curie': 'FMA:46664', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:31,886] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725171', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma55304', 'curie': 'FMA:55304', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:32,893] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725173', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma259209', 'curie': 'FMA:259209', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:33,707] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725174', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma277876', 'curie': 'FMA:277876', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:34,534] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725176', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma75100', 'curie': 'FMA:75100', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:35,556] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725178', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma9968', 'curie': 'FMA:9968', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:36,377] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725183', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma72599', 'curie': 'FMA:72599', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:37,303] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725185', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma19800', 'curie': 'FMA:19800', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:38,216] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725187', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma12151', 'curie': 'FMA:12151', 'preferred': '0'}], 'delete_existing_ids': None}
[2019-10-16 10:15:39,010] -     INFO -       ontquery - interlex_client.py:829  - {'ilx_id': 'ilx_0725191', 'label': None, 'type': None, 'definition': None, 'comment': None, 'superclass': None, 'synonyms': (), 'add_existing_ids': [{'iri': 'http://purl.org/sig/ont/fma292334', 'curie': 'FMA:292334', 'preferred': '0'}], 'delete_existing_ids': None}
---------------------------------------------------------------------------
JSONDecodeError                           Traceback (most recent call last)
~/Dropbox/git/ontquery/ontquery/plugins/interlex_client.py in process_response(self, response, params)
    129         try:
--> 130             output = response.json()
    131         except json.JSONDecodeError:  # Server is having a bad day and crashed.

/usr/local/anaconda3/lib/python3.7/site-packages/requests/models.py in json(self, **kwargs)
    896                     pass
--> 897         return complexjson.loads(self.text, **kwargs)
    898 

/usr/local/anaconda3/lib/python3.7/json/__init__.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
    347             parse_constant is None and object_pairs_hook is None and not kw):
--> 348         return _default_decoder.decode(s)
    349     if cls is None:

/usr/local/anaconda3/lib/python3.7/json/decoder.py in decode(self, s, _w)
    336         """
--> 337         obj, end = self.raw_decode(s, idx=_w(s, 0).end())
    338         end = _w(s, end).end()

/usr/local/anaconda3/lib/python3.7/json/decoder.py in raw_decode(self, s, idx)
    354         except StopIteration as err:
--> 355             raise JSONDecodeError("Expecting value", s, err.value) from None
    356         return obj, end

JSONDecodeError: Expecting value: line 1 column 1 (char 0)

During handling of the above exception, another exception occurred:

BadResponseError                          Traceback (most recent call last)
<ipython-input-10-679770cae247> in <module>
      4     resp = ixr.update_entity(
      5         ilx_id = r['term_ilx'],
----> 6         add_existing_ids=[{'iri': r['iri'], 'curie': r['curie'], 'preferred': '0'}],
      7     )
      8     resps.append(resp)

~/Dropbox/git/ontquery/ontquery/plugins/services.py in update_entity(self, ilx_id, type, subThingOf, label, definition, synonyms, comment, predicates_to_add, add_existing_ids, delete_existing_ids, predicates_to_delete)
    522             synonyms = synonyms,
    523             add_existing_ids = add_existing_ids,
--> 524             delete_existing_ids = delete_existing_ids,
    525             # predicates = tresp,
    526         )

~/Dropbox/git/ontquery/ontquery/plugins/interlex_client.py in update_entity(self, ilx_id, label, type, definition, comment, superclass, synonyms, add_existing_ids, delete_existing_ids)
    809         response = self.post(
    810             url=update_url,
--> 811             data=existing_entity,
    812         )
    813 

~/Dropbox/git/ontquery/ontquery/plugins/interlex_client.py in post(self, url, data)
    198             **self._kwargs
    199         )
--> 200         output = self.process_response(response)
    201         return output
    202 

~/Dropbox/git/ontquery/ontquery/plugins/interlex_client.py in process_response(self, response, params)
    131         except json.JSONDecodeError:  # Server is having a bad day and crashed.
    132             raise self.BadResponseError(
--> 133                 f'\nError: Json could not returned\n'
    134                 f'Status Code: [{response.status_code}]\n'
    135                 f'Params: {params}\n'

BadResponseError: 
Error: Json could not returned
Status Code: [504]
Params: None
Url: https://scicrunch.org/api/1/term/edit/648328
Output: <html>
<head><title>504 Gateway Time-out</title></head>
<body>
<center><h1>504 Gateway Time-out</h1></center>
<hr><center>nginx/1.16.1</center>
</body>
</html>

In [11]:
ex[ex.iri.isin(['http://uri.neuinfo.org/nif/nifstd/nifext_5214'])]


Out[11]:
tid curie iri preferred ilx label definition
0 1 NIFEXT:5214 http://uri.neuinfo.org/nif/nifstd/nifext_5214 1 ilx_0100000 (R)N6-phenylisopropyladenosine

In [11]:
sub_df = sql.get_custom('select * from users')
sub_df[sub_df.email.str.contains('bern')]


Out[11]:
id guid email password salt banned level firstName middleInitial lastName organization created verified verify_string orcid_id subscribe_email
1221 31879 32094 bernd.kuhn@roche.com 6c5f55bdd12ff399fbf378254fa18f1b 186902191955e939e1bdb1f377056168 0 0 Bernd None Kuhn F. Hoffmann-La Roche 1.441348e+09 1 200205476855e939e1be1d7312922756 None 1
1381 32320 32535 bernard.maigret@loria.fr ac816824e117a8a00b3c0d8611495860 10312377355651f7f4ed857178376806 0 0 Bernard None Maigret LORIA Lorraine University 1.448212e+09 1 12731170815651f7f4edde8203179558 None 1
4832 36381 36596 bernard.de.bono@gmail.com 7ac5afa7931b57afd1a656d5b1fa9e84 4855381915c44e51bc12a1948409545 0 0 Bernard None de Bono University of Auckland 1.548019e+09 1 16317758185c44e51bc14fd719809759 None 1
5012 36561 36776 bernotasgytis@yahoo.com 9e3e32fc9f884280f85f6b77a67a7434 13758225305c81573c37a1f672846617 0 0 Gytis None Bernotas UWE 1.551980e+09 1 9881985175c81573c37c55872809427 0000-0002-3418-5758 1

In [3]:
terms=sql.get_terms()
print(terms.shape)
terms.head(1).to_dict()


(638299, 9)
Out[3]:
{'tid': {0: 1},
 'ilx': {0: 'ilx_0100000'},
 'label': {0: '(R)N6-phenylisopropyladenosine'},
 'definition': {0: ''},
 'type': {0: 'term'},
 'comment': {0: ''},
 'version': {0: 6},
 'uid': {0: 32290},
 'time': {0: 1529356493}}

In [ ]:


In [4]:
bernard = 36381
terms[terms.type == ]


Out[4]:
tid ilx label definition type comment version uid time
12764 12765 ilx_0112764 Axon diameter annotation 2 32290 1516269676
12765 12766 ilx_0112765 Axon length annotation 2 32290 1516269678
12766 12767 ilx_0112766 Axon myelination annotation 2 32290 1516269680
12767 12768 ilx_0112767 Dendrite thickness annotation 2 32290 1516269682
12768 12769 ilx_0112768 Number of primary dendrites annotation 2 32290 1516269684
12769 12770 ilx_0112769 Overlaps some annotation 2 32290 1516269686
12770 12771 ilx_0112770 Spiking features annotation 2 32290 1516269689
12771 12772 ilx_0112771 Spontaneous firing patterns annotation 2 32290 1516269693
15023 15024 ilx_0115023 Source annotation 2 247 1516269770
15024 15025 ilx_0115024 Variable type annotation 2 247 1516269773
15025 15026 ilx_0115025 Arrive annotation 2 247 1516269778
15026 15027 ilx_0115026 CDE value The value that a CDE must be restricted to. CD... annotation 2 31699 1516269782
15027 15028 ilx_0115027 CDE value range Range of values that a CDE can have. annotation 2 31699 1516269784
15030 15034 ilx_0115030 ODC_Domain Top level domain for ODC-SCI CDEs annotation 2 247 1516279287
15031 15035 ilx_0115031 ODC_SubDomain Second level domain for ODC-SCI CDEs annotation 2 247 1516279289
15032 15036 ilx_0115032 ODC_Assessment Third level domain for ODC-SCI CDEs. Grouping... annotation 2 247 1516279291
15033 15037 ilx_0115033 ODC_VariableName Variable name for a specific CDE. Can be used ... annotation 2 247 1516279293
15062 15066 ilx_0115064 troyith1234 annotation 2 34142 1516279361
15063 15067 ilx_0115065 NLX_CurationNote Curatorial notes from the NeuroLex transition annotation 2 247 1516279363
15067 15072 ilx_0115069 Long Name The preferred long name annotation 2 247 1516279370
15069 15074 ilx_0115071 hasConstraint annotation 2 34142 1516279374
281290 304377 ilx_0381292 Spontaneous firing rate AP discharge rate in the absence of current in... annotation This annotation property was originally confla... 2 34142 1522625108
281291 304378 ilx_0381293 ODC_ColumnHeading The default value of a CDEs column heading in ... annotation 1 247 1520461805
281350 304437 ilx_0381352 filterElement annotation 2 34142 1531266671
281351 304438 ilx_0381353 required annotation 2 34142 1531266671
281352 304439 ilx_0381354 condition annotation 2 34142 1531266671
281353 304440 ilx_0381355 size annotation 2 34142 1531266671
281354 304441 ilx_0381356 minValue annotation 2 34142 1531266671
281355 304442 ilx_0381357 maxValue annotation 2 34142 1531266671
281356 304443 ilx_0381358 allowedTypes annotation 6 34142 1531266671
281357 304444 ilx_0381359 allowedValues annotation 3 34142 1531266671
281358 304445 ilx_0381360 hasDbXref annotation 2 34142 1531266671
281385 304472 ilx_0381387 hasLaterality The laterality of the object being described annotation 3 247 1560230723
281445 304533 ilx_0381447 annotatedSource annotation 1 34142 1533831993
281446 304534 ilx_0381448 literatureReference annotation 1 34142 1533832035
281447 304535 ilx_0381449 literatureCitation annotation 1 34142 1534194915
283239 306375 ilx_0383241 deprecated owl:deprecated annotation 2 34142 1539795476
283241 306377 ilx_0383243 obsReason http://purl.obolibrary.org/obo/IAO_0000231 annotation 6 34142 1540416609
283242 306378 ilx_0383244 editorNote http://purl.obolibrary.org/obo/IAO_0000116 annotation 5 34142 1540416610
283244 306380 ilx_0383246 Variable Name annotation 1 34142 1539983770
623779 646915 ilx_0723781 AdoptedByCommunity annotation 1 34142 1541104337
630697 653829 ilx_0730699 IAO:0000115 annotation 1 34142 1542400764
637159 660295 ilx_0737161 hasExactSynonym annotation 1 34142 1543271463
637160 660296 ilx_0737162 hasRelatedSynonym annotation 1 34142 1543271465
637161 660297 ilx_0737163 hasNarrowSynonym annotation 1 34142 1543271468
637162 660298 ilx_0737164 hasBroadSynonym annotation 1 34142 1543271471
638190 661346 ilx_0738192 rangeCategoryMapping annotation 1 34142 1549665707
638191 661348 ilx_0738193 onDatatype annotation 1 34142 1549665709
638192 661350 ilx_0738194 minInclusive annotation treated as >= and <= 1 34142 1549665711
638193 661347 ilx_0738195 rangeUnits annotation 1 34142 1549665708
638194 661349 ilx_0738196 maxInclusive annotation treated as >= and <= 1 34142 1549665710

In [17]:
hit = 0
for i, row in terms[~terms.type.str.contains('cde') & ~terms.type.str.contains('fde')].sort_values(by='time').iterrows():
    if row.uid == ber:
        hit = i
print(hit)


0

In [ ]:


In [20]:
terms[terms.label.str.contains('max') & (terms.type == 'annotation')]


Out[20]:
tid ilx label definition type comment version
281355 304442 ilx_0381357 maxValue annotation 2

In [10]:
import yaml
yaml.load('''
datatype: real
units: mm^3
min: '0'
max: 1e^6
''')


Out[10]:
{'datatype': 'real', 'units': 'mm^3', 'min': '0', 'max': '1e^6'}

In [11]:
yaml.dump({'datatype': 'real', 'units': 'mm^3', 'min': '0', 'max': '1e^6'})


Out[11]:
"{datatype: real, max: 1e^6, min: '0', units: mm^3}\n"

In [14]:
yaml.load("{datatype: real, max: 1e^6, min: '0', units: mm^3}")


Out[14]:
{'datatype': 'real', 'max': '1e^6', 'min': '0', 'units': 'mm^3'}

In [2]:
beta_sci.addTerms([{'label': 'pde_test_1', 'type':'pde'}], crawl=True, _print=False)


Out[2]:
[{'id': 305210,
  'orig_uid': 34142,
  'uid': 34142,
  'orig_cid': None,
  'cid': None,
  'ilx': 'tmp_0382128',
  'label': 'pde_test_1',
  'type': 'pde',
  'definition': None,
  'comment': None,
  'version': 1,
  'status': 0,
  'display_superclass': 1,
  'orig_time': 1549487902,
  'time': 1549487902,
  'synonyms': [],
  'superclasses': [],
  'existing_ids': [{'id': '417998',
    'tid': '305210',
    'curie': 'ILX:0382128',
    'iri': 'http://uri.interlex.org/base/ilx_0382128',
    'curie_catalog_id': '3',
    'version': '1',
    'time': '1549487902',
    'preferred': '1'}],
  'relationships': [],
  'mappings': [],
  'annotations': [],
  'ontologies': []}]

In [62]:
%%time
import rdflib 
g = rdflib.Graph().parse('example_ontology1.ttl', format='turtle')
for _ in range(1000):
    predicate = 'rdfs:label'
    reference_obj = "Retina ganglion cell".lower()
    bindings = g.query('''
        SELECT ?subj ?obj
        WHERE {
            ?subj rdfs:label '%s' .
        }
    ''' % reference_obj).bindings
bindings


CPU times: user 1.4 s, sys: 12.1 ms, total: 1.41 s
Wall time: 1.4 s

In [54]:
%%time
import rdflib 
g = rdflib.Graph().parse('example_ontology1.ttl', format='turtle')
for _ in range(1000):
    predicate = 'rdfs:label'
    reference_obj = "Retina ganglion cell".lower()
    bindings = g.query('''
        PREFIX text: <http://jena.apache.org/text#>
        SELECT ?subj ?obj
        WHERE {
            ?subj text:query (rdfs:label 'search') ;
                 rdfs:label ?obj ;
                 FILTER (lcase(str(?obj)) = str('%s')) .
        }
    '''%reference_obj).bindings
bindings


CPU times: user 4.61 s, sys: 0 ns, total: 4.61 s
Wall time: 4.6 s

In [ ]:
g = rdflib.Graph().parse('/home/tmsincomb/Dropbox/ilx.ttl', format='turtle')

In [ ]:
%%time
for _ in range(10):
    hits = (t for t in g if isinstance(t[0], rdflib.URIRef) and 'neuron'.lower() in str(t[2]).lower())
print(len(hits))

In [71]:
%%time
[v for v in g.subject_predicates(object=rdflib.Literal('Retina ganglion cell', datatype=rdflib.XSD.string))]


CPU times: user 63 µs, sys: 0 ns, total: 63 µs
Wall time: 65.8 µs
Out[71]:
[(rdflib.term.URIRef('http://uri.neuinfo.org/nif/nifstd/nifext_17'),
  rdflib.term.URIRef('http://www.w3.org/2004/02/skos/core#prefLabel')),
 (rdflib.term.URIRef('http://uri.neuinfo.org/nif/nifstd/nifext_17'),
  rdflib.term.URIRef('http://www.w3.org/2000/01/rdf-schema#label'))]

In [8]:
print(g.serialize(format='turtle').decode('utf-8'))


@prefix : <file:///ERROR/EMPTY/PREFIX/BANNED/> .
@prefix BFO: <http://purl.obolibrary.org/obo/BFO_> .
@prefix BIRNLEX: <http://uri.neuinfo.org/nif/nifstd/birnlex_> .
@prefix NIFEXT: <http://uri.neuinfo.org/nif/nifstd/nifext_> .
@prefix NIFRID: <http://uri.neuinfo.org/nif/nifstd/readable/> .
@prefix NLX: <http://uri.neuinfo.org/nif/nifstd/nlx_> .
@prefix NLXCELL: <http://uri.neuinfo.org/nif/nifstd/nlx_cell_> .
@prefix SAO: <http://uri.neuinfo.org/nif/nifstd/sao> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

BIRNLEX:1126 a owl:Class ;
    rdfs:label "Retina ganglion cell" ;
    rdfs:subClassOf owl:DeprecatedClass ;
    owl:deprecated true .

NIFEXT:17 a owl:Class ;
    rdfs:label "Retina ganglion cell"^^xsd:string ;
    NIFRID:createdDate "2007-09-05"^^xsd:string ;
    NIFRID:hasExternalSource "SenseLab"^^xsd:string ;
    NIFRID:modifiedDate "April 15, 2009"^^xsd:string ;
    NIFRID:synonym "Retinal Ganglion Cell"^^xsd:string,
        "Retinal Ganglion Neuron"^^xsd:string ;
    rdfs:subClassOf SAO:1417703748 ;
    skos:prefLabel "Retina ganglion cell"^^xsd:string ;
    skos:scopeNote "A part of the region of the nervous system known to play a role in Visual System function."^^xsd:string .



In [24]:
sql.get_custom("""
    select * from users where users.firstName='troy';
""")


Out[24]:
id guid email password salt banned level firstName middleInitial lastName organization created verified verify_string orcid_id subscribe_email
0 33927 34142 troysincomb@gmail.com 7a9ff1f9cc50a6a2373358164a969edc 21388697615967ee26ee0bc943071670 0 1 troy None sincomb crbs 1499983398 1 183012665967ee26ee1e7691881768 None 1

In [4]:
onto = 'https://utslogin.nlm.nih.gov/cas/login?service=https%3a%2f%2fdownload.nlm.nih.gov%2fumls%2fkss%2f2018AB%2fumls-2018AB-full.zip'
sci.addOntology(ontology_url=onto)


200
Out[4]:
{'data': {'id': 7,
  'url': 'https://utslogin.nlm.nih.gov/cas/login?service=https%3a%2f%2fdownload.nlm.nih.gov%2fumls%2fkss%2f2018AB%2fumls-2018AB-full.zip'},
 'success': True}

In [9]:
sql.get_custom('term_curie_catalog').head()


Out[9]:
id uid prefix namespace name description homepage logo type source_uri
0 1 0 http://uri.neuinfo.org/nif/nifstd/ Neuroscience Information Framework Standard On... None https://neuinfo.org/ https://neuinfo.org/upload/community-logo/_863... ontology false
1 2 0 NLXWIKI http://neurolex.org/wiki/ The Neuroscience Lexicon None http://neurolex.org/wiki/Main_Page http://neurolex.org/w/skins/ontoskin3/img/xneu... vocabulary true
2 3 0 ILX http://uri.interlex.org/base/ilx_ InterLex - The Inter-Source Inter-Vocabulary L... None http://scicrunch.org/browse/termdashboard None vocabulary false
3 4 0 CHEBI http://purl.obolibrary.org/obo/CHEBI_ Chemical Entities of Biological Interest None https://www.ebi.ac.uk/chebi/init.do https://www.ebi.ac.uk/chebi/images/ChEBI_logo.png ontology true
4 5 0 GO http://purl.obolibrary.org/obo/GO_ Gene Ontology None http://www.ontobee.org/ http://www.ontobee.org/public/images/logo.gif ontology true

In [12]:
sql.get_custom('curie_catalog')[sql.get_custom('curie_catalog').prefix == 'ILX']


Out[12]:
id uid prefix namespace
62 95 0 ILX http://uri.interlex.org/base/ilx_

In [5]:
annotations = sql.get_annotations_from_backup()

In [6]:
annotations.head(1).to_dict('records')[0]


Out[6]:
{'id': 2265164,
 'tid': 1,
 'annotation_tid': 304445,
 'value': 'http://neurolex.org/wiki/nifext_5214',
 'uid': 0,
 'term_label': '(R)N6-phenylisopropyladenosine',
 'term_ilx': 'ilx_0100000',
 'term_def': '',
 'term_version': 6,
 'annotation_label': 'hasDbXref',
 'annotation_ilx': 'ilx_0381360'}

In [22]:
# cid is brocken for some reason and defaulted it to 0; ilx/search is a mad house
import requests
import json
import os

base_url = 'http://localhost:8080/api/1/'
prime_term_url = base_url + 'ilx/add'
add_term_url = base_url + 'term/add'
api_key = os.environ.get('LOCAL_SCICRUNCH_API_KEY')

def test_local_host_url():
    search_term_via_ilx_url = base_url + 'ilx/search/identifier/{ilx_id}?key={api_key}'
    search_term_via_ilx_url = search_term_via_ilx_url.format(ilx_id='tmp_0100000', api_key=api_key)
    print(search_term_via_ilx_url)
    response = requests.get(search_term_via_ilx_url, headers = {'Content-type': 'application/json'})
    print(response.status_code)
    print(response.json()['data']['ilx'])
    
test_local_host_url()

data = {
    'term': 'test_908',
    'type': 'term',
    # 'ontologies': [{'id':1}], #'url':"https://raw.githubusercontent.com/tgbugs/nlxeol/master/neurolex_basic.ttl"}],
    'key': api_key,
}

response = requests.post(prime_term_url, data=json.dumps(data), headers = {'Content-type': 'application/json'})
print(response.status_code)
print(response.json())

data.update({
    'label': data.pop('term'),
    'ilx': response.json()['data']['fragment'],
    # 'curie_catalog_id': 1,
    # 'annotations': [{'id':12345}],
})

print(data, 'pre-import')

response = requests.post(add_term_url, data=json.dumps(data), headers = {'Content-type': 'application/json'})
print(response.status_code)
try:
    print(response.json(), 'post-import')
except:
    print(response.text, 'post broke')


http://localhost:8080/api/1/ilx/search/identifier/tmp_0100000?key=ricaGK0njWn4Pru9YWIwkFdXXsGdQpj8
200
tmp_0100000
201
{'data': {'fragment': 'tmp_0149727', 'term': 'test_908', 'datetime': 1547501061, 'note': None, 'defining_url': None}, 'success': True}
{'type': 'term', 'key': 'ricaGK0njWn4Pru9YWIwkFdXXsGdQpj8', 'label': 'test_908', 'ilx': 'tmp_0149727'} pre-import
201
Incorrect integer value: '' for column 'orig_cid' at row 1Incorrect integer value: '' for column 'cid' at row 1{"data":{"id":50892,"orig_uid":34005,"uid":34005,"orig_cid":null,"cid":null,"ilx":"tmp_0149727","label":"test_908","type":"term","definition":null,"comment":null,"version":1,"status":0,"display_superclass":1,"orig_time":1547501061,"time":1547501061,"synonyms":[],"superclasses":[],"existing_ids":[{"id":"106581","tid":"50892","curie":"ILX:0149727","iri":"http:\/\/uri.interlex.org\/base\/ilx_0149727","curie_catalog_id":"3","version":"1","time":"1547501061","preferred":"1"}],"relationships":[],"mappings":[],"annotations":[],"ontologies":[]},"success":true} post broke

In [23]:
import requests
import json
import os

base_url = 'http://localhost:8080/api/1/'
update_term_url = base_url + 'term/edit/{id}'
api_key = os.environ.get('LOCAL_SCICRUNCH_API_KEY')

data = {
    'id': '50892',
    'ilx': 'tmp_0149727',
    'label': 'test_907',
    'type': 'term',
    # 'ontologies': [{'id':1}], #'url':"https://raw.githubusercontent.com/tgbugs/nlxeol/master/neurolex_basic.ttl"}],
    'key': api_key,
}
url = update_term_url.format(id=data['id'])
resp = requests.post(url, data=json.dumps(data), headers={'Content-type': 'application/json'})
try:
    print(resp.json())
except:
    print(resp.text)


Incorrect integer value: '' for column 'cid' at row 1Incorrect integer value: '' for column 'orig_cid' at row 1Incorrect integer value: '' for column 'cid' at row 1{"data":{"id":"50892","orig_uid":"34005","uid":"34005","orig_cid":"","cid":"","ilx":"tmp_0149727","label":"test_907","type":"term","definition":"","comment":"","version":2,"status":"0","display_superclass":"1","orig_time":"1547501061","time":1547501119,"synonyms":[],"superclasses":[],"existing_ids":[{"id":"106581","tid":"50892","curie":"ILX:0149727","iri":"http:\/\/uri.interlex.org\/base\/ilx_0149727","curie_catalog_id":"3","version":"1","time":"1547501061","preferred":"1"}],"relationships":[],"mappings":[],"annotations":[],"ontologies":[]},"success":true}

In [36]:
base_url = 'http://localhost:8080/api/1/'
api_key = os.environ.get('LOCAL_SCICRUNCH_API_KEY')

def addOntology(ontology_url:str) -> dict:
    add_ontology_url = base_url + 'term/ontology/add'
    data = {
        'url': ontology_url,
        'key': api_key,
    }
    response = requests.post(add_ontology_url, data=json.dumps(data), headers={'Content-type': 'application/json'})
    print(response.status_code)
    print(response.json())
    
addOntology(ontology_url='http://purl.obolibrary.org/obo/uberon/releases/2018-10-14/uberon.owl')


200
{'data': {'id': 7, 'url': 'http://purl.obolibrary.org/obo/uberon/releases/2018-10-14/uberon.owl'}, 'success': True}

In [10]:
sql.get_custom("""
    describe term_annotations;
""")


Out[10]:
Field Type Null Key Default Extra
0 id int(11) unsigned NO PRI None auto_increment
1 tid int(11) YES MUL None
2 annotation_tid int(11) YES MUL None
3 value text YES None
4 comment text YES None
5 upvote int(11) YES None
6 downvote int(11) YES None
7 curator_status enum('-1','0','+1') NO 0
8 withdrawn enum('0','1') NO 0
9 term_version int(11) YES None
10 annotation_term_version int(11) YES None
11 orig_uid int(11) YES None
12 orig_time int(11) YES None

In [5]:
tables.head()


Out[5]:
Tables_in_nif_eelg
0 _term_csv_dump
1 _term_mapping_dump
2 _term_properties
3 _term_upload_list
4 action_keys

In [11]:
beta_terms = beta_sql.get_terms()

In [12]:
beta_terms.head()


Out[12]:
id ilx orig_uid orig_cid uid cid label definition comment type version status display_superclass orig_time time
0 38429 0 0 0 0 troysincomb2 def-update term 2 0 1 1508268793 1510959702
1 38428 ilx_0111626 0 0 0 0 troysincomb2 def-1511375706 def-update term 30 0 1 1508267561 1512064672
2 1 tmp_0100000 32290 0 32290 0 (R)N6-phenylisopropyladenosine term 7 0 1 1481226703 1516219054
3 2 tmp_0100001 32290 0 32290 0 1,2-Dibromo-3-chloropropane Organic Compound;Pesticide;Organochloride;Orga... term 7 0 1 1481226705 1516219055
4 3 tmp_0100002 32290 0 32290 0 1,2-Dibromoethane Organic Compound;Pesticide;Gasoline Additive/C... term 6 0 1 1481226707 1516219057

In [2]:
terms = sql.get_terms()

In [10]:
terms[terms.id == 647862]


Out[10]:
id ilx orig_uid orig_cid uid cid label definition comment type version status display_superclass orig_time time
624723 647862 ilx_0724725 34142 0 34142 0 follicular antrum Region of ovarian follicle filled with follicu... term 1 0 1 1542395794 1542395794

In [40]:
#{0, 1, 80, 97, 104, 105}
relationships = sql.get_relationships()

In [41]:
relationships.head()


Out[41]:
id term1_tid term1_ilx term1_type term2_tid term2_ilx term2_type relationship_tid relationship_ilx relationship_label
0 1 2 ilx_0100001 term 11841 ilx_0111840 term 12785 ilx_0112784 Has role
1 2 3 ilx_0100002 term 11841 ilx_0111840 term 12785 ilx_0112784 Has role
2 3 22 ilx_0100021 term 3721 ilx_0103720 term 12785 ilx_0112784 Has role
3 4 25 ilx_0100024 term 3577 ilx_0103576 term 12785 ilx_0112784 Has role
4 5 27 ilx_0100026 term 6459 ilx_0106458 term 12797 ilx_0112796 Related to

In [7]:
from ontquery.plugins.interlex_client import InterLexClient
beta_sci = InterLexClient(
    api_key = os.environ.get('INTERLEX_API_KEY'),
    base_url = 'https://beta.scicrunch.org/api/1/',
)

In [20]:
beta_sci.get_relationship_via_tid('1432')


An exception has occurred, use %tb to see the full traceback.

SystemExit: {'errormsg': 'Could not complete request', 'success': False}: with status code [404] and params:{'errormsg': 'Could not complete request', 'success': False}
/home/tmsincomb/.local/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2969: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D.
  warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1)

In [36]:
api_key = os.environ.get('INTERLEX_API_KEY', 'SCICRUNCH_API_KEY')
api_key


Out[36]:
'Mf8f6S5gD6cy6cuRWMyjUeLGxUPfo0SZ'

In [15]:
%time terms = sql.get_terms()


CPU times: user 6.51 s, sys: 560 ms, total: 7.07 s
Wall time: 22 s

In [14]:
%time annos = sql.get_annotations()


CPU times: user 24.9 s, sys: 2.78 s, total: 27.6 s
Wall time: 1min

In [23]:
%time synonyms = sql.get_synonyms()


CPU times: user 2.51 s, sys: 276 ms, total: 2.78 s
Wall time: 3.25 s

In [24]:
%time superclasses = sql.get_superclasses()


CPU times: user 2.86 s, sys: 299 ms, total: 3.16 s
Wall time: 3.59 s

In [25]:
%time relationships = sql.get_relationships()


CPU times: user 130 ms, sys: 12.1 ms, total: 142 ms
Wall time: 178 ms

In [47]:
%time existing_ids = sql.get_existing_ids()


CPU times: user 8.21 s, sys: 1.1 s, total: 9.32 s
Wall time: 18.9 s
#

In [3]:
terms.head()


Out[3]:
id ilx orig_uid orig_cid uid cid label definition comment type version status display_superclass orig_time time
0 1 ilx_0100000 32290 0 32290 0 (R)N6-phenylisopropyladenosine term 6 0 1 1481226703 1529356493
1 2 ilx_0100001 32290 0 32290 0 1,2-Dibromo-3-chloropropane Organic Compound;Pesticide;Organochloride;Orga... term 6 0 1 1481226705 1529356493
2 3 ilx_0100002 32290 0 34142 0 1,2-Dibromoethane Organic Compound;Pesticide;Gasoline Additive/C... term 8 0 1 1481226707 1535122210
3 4 ilx_0100003 32290 0 32290 0 1-120 Truncated Alpha-Synuclein Drosophila This transgenic drosophila expresses a form of... term 6 0 1 1481226709 1529356493
4 5 ilx_0100004 32290 0 32290 0 1-D extent A quality inhering in a bearer by virtue of it... term 5 0 1 1481226711 1529356493

In [6]:
annos.head()


Out[6]:
id tid annotation_tid value uid term_label term_ilx annotation_label annotation_ilx
0 2265164 1 304445 http://neurolex.org/wiki/nifext_5214 0 (R)N6-phenylisopropyladenosine ilx_0100000 hasDbXref ilx_0381360
1 2265173 2 304445 http://neurolex.org/wiki/T3D0044 0 1,2-Dibromo-3-chloropropane ilx_0100001 hasDbXref ilx_0381360
2 2265170 3 304445 http://neurolex.org/wiki/T3D0035 0 1,2-Dibromoethane ilx_0100002 hasDbXref ilx_0381360
3 2265171 4 304445 http://neurolex.org/wiki/nlx_organ_090801 0 1-120 Truncated Alpha-Synuclein Drosophila ilx_0100003 hasDbXref ilx_0381360
4 2278612 4 304535 PMID:17376994 0 1-120 Truncated Alpha-Synuclein Drosophila ilx_0100003 literatureCitation ilx_0381449

In [108]:
synonyms.head()


Out[108]:
id tid literal ilx label
0 31340 15070 Age ilx_0115067 Participant Age
1 31341 15070 Patient Age ilx_0115067 Participant Age
2 31342 15070 Subject Age ilx_0115067 Participant Age
23085 331422 3729 eletriptan ilx_0103728 Eletriptan
23086 333931 4511 GABA-A RECEPTOR ilx_0104510 GABRA1

In [4]:
superclasses.head()


Out[4]:
id tid superclass_tid term_label term_ilx superclass_label superclass_ilx
0 12494 15070 15069 Participant Age ilx_0115067 National Cancer Institute Common Data Element ilx_0115066
23078 307260 2483 10842 Connected spatiotemporal region ilx_0102482 Spatiotemporal region ilx_0110841
23079 307261 2484 11600 Connected temporal region ilx_0102483 Temporal region ilx_0111599
23080 307331 2558 10743 Cord blood stem cell ilx_0102557 Somatic stem cell ilx_0110742
23081 307856 3092 2515 Dependent continuant ilx_0103091 Continuant ilx_0102514

In [7]:
relationships.head()


Out[7]:
id term1_tid term1_ilx term1_type term2_tid term2_ilx term2_type relationship_tid relationship_ilx relationship_label
0 1 2 ilx_0100001 term 11841 ilx_0111840 term 12785 ilx_0112784 Has role
1 2 3 ilx_0100002 term 11841 ilx_0111840 term 12785 ilx_0112784 Has role
2 3 22 ilx_0100021 term 3721 ilx_0103720 term 12785 ilx_0112784 Has role
3 4 25 ilx_0100024 term 3577 ilx_0103576 term 12785 ilx_0112784 Has role
4 5 27 ilx_0100026 term 6459 ilx_0106458 term 12797 ilx_0112796 Related to

In [48]:
existing_ids.head()


Out[48]:
id tid curie iri preferred ilx type label definition comment
0 2181964 1 NIFEXT:5214 http://uri.neuinfo.org/nif/nifstd/nifext_5214 1 ilx_0100000 term (R)N6-phenylisopropyladenosine
1 2181981 1 ILX:0100000 http://uri.interlex.org/base/ilx_0100000 0 ilx_0100000 term (R)N6-phenylisopropyladenosine
2 2182003 2 T3D:0044 http://t3db.org/toxins/T3D0044 0 ilx_0100001 term 1,2-Dibromo-3-chloropropane Organic Compound;Pesticide;Organochloride;Orga...
3 2182004 2 ILX:0100001 http://uri.interlex.org/base/ilx_0100001 1 ilx_0100001 term 1,2-Dibromo-3-chloropropane Organic Compound;Pesticide;Organochloride;Orga...
4 2744315 3 T3D:0035 http://t3db.org/toxins/T3D0035 0 ilx_0100002 term 1,2-Dibromoethane Organic Compound;Pesticide;Gasoline Additive/C...
#

In [5]:
'#'*100 ### microload


Out[5]:
'####################################################################################################'

In [ ]:
# 'GO:0005874'
# TODO: update sql to ignore depricated terms aka annotation -> deprecated True OPTIONAL relationship -> replacedBy <other ilx_id> & obsReason <merged IAO>
# TODO: create deprecateTerm(ilx_ids, replaced=False, replaced_reason='merged')

In [10]:
data = [{
    'label': 'isTreatedAsSynonymOf',
    'type': 'relationship',
    'comment': 'Multiple types of synonyms involved.',
}]

In [60]:
for term_data in sci.ilxSearches(['ILX:0109469', 'ILX:0109470'], crawl=True, _print=False).values():
    print('{')
    print("    'id': '" + term_data['id'] + "',")
    print("    'ilx': '" + term_data['ilx'] + "',")
    #print("    'existing_ids': {'curie': '', 'iri': '', 'delete': True},")
    print('},')
    print('LABEL |', term_data['label'])
    print('DEF   |', term_data['definition'])
    print('EX_IDs|', ["'existing_ids': {'curie': '" + d['curie'] + "', 'iri': '" + d['iri'] + "', 'delete': True}," for d in term_data['existing_ids']])
    print()


{
    'id': '9470',
    'ilx': 'ilx_0109469',
},
LABEL | Protostomia
DEF   | 
EX_IDs| ["'existing_ids': {'curie': 'BIRNLEX:534', 'iri': 'http://uri.neuinfo.org/nif/nifstd/birnlex_534', 'delete': True},", "'existing_ids': {'curie': 'ILX:0109469', 'iri': 'http://uri.interlex.org/base/ilx_0109469', 'delete': True},", "'existing_ids': {'curie': 'NCBITaxon:33317', 'iri': 'http://purl.obolibrary.org/obo/NCBITaxon_33317', 'delete': True},"]

{
    'id': '9471',
    'ilx': 'ilx_0109470',
},
LABEL | Protostomia (birnlex 334)
DEF   | 
EX_IDs| ["'existing_ids': {'curie': 'BIRNLEX:334', 'iri': 'http://uri.neuinfo.org/nif/nifstd/birnlex_334', 'delete': True},", "'existing_ids': {'curie': 'ILX:0109470', 'iri': 'http://uri.interlex.org/base/ilx_0109470', 'delete': True},", "'existing_ids': {'curie': 'NCBITaxon:33317', 'iri': 'http://purl.obolibrary.org/obo/NCBITaxon_33317', 'delete': True},"]


In [61]:
special_term_updates = [
    {
        'id': '12049',
        'ilx': 'ilx_0112048',
        'existing_ids': {'curie': 'UBERON:0002434', 'iri': 'http://purl.obolibrary.org/obo/UBERON_0002434', 'delete': True},
    },
    {
        'id': '880',
        'ilx': 'ilx_0100879',
        'label': 'Arctiini',
        'existing_ids': {'curie': 'NCBITaxon:30225', 'iri': 'http://purl.obolibrary.org/obo/NCBITaxon_30225', 'delete': True},
    },
    {
        'id': '880',
        'ilx': 'ilx_0100879',
        'existing_ids': {'curie': 'NCBITaxon:132200', 'iri': 'http://purl.obolibrary.org/obo/NCBITaxon_132200'},
    },
    {
        'id': '9470',
        'ilx': 'ilx_0109469',
        'existing_ids': {'curie': 'NCBITaxon:33317', 'iri': 'http://purl.obolibrary.org/obo/NCBITaxon_33317', 'delete': True},
    },
]
special_dep_additions = [
    {
       'ilx_id': 'ilx_0109469',
       'note': 'Duplicate of ilx_0109470 with wrong information',
    },
]
special_editor_notes = [
    {
        'ilx_id': 'ilx_0109469',
        'note': "BIRNLEX:534 is not possible with it being a subclass of an entity when it is really a superclass of that entity",
    },

]
special_merge_relationship_additions = [
    {
       'ilx1_id': 'ilx_0109469',
       'ilx2_id': 'ilx_0109470',
    },
]

[sci.updateTerms([v], crawl=True, _print=False) for v in special_term_updates]
[sci.deprecate_entity(**v) for v in special_dep_additions]
[sci.add_merge_properties(**v) for v in special_merge_relationship_additions]
[sci.add_editor_note(**v) for v in special_editor_notes]


[{'tid': '9470', 'annotation_tid': '306375', 'value': 'True', 'term_version': '5', 'annotation_term_version': '1', 'batch-elastic': 'True'}, {'tid': '9470', 'annotation_tid': '306378', 'value': 'Duplicate of ilx_0109470 with wrong information', 'term_version': '5', 'annotation_term_version': '1', 'batch-elastic': 'True'}]
{'term1_id': '9470', 'term2_id': '9471', 'relationship_tid': '306376', 'term1_version': '5', 'term2_version': '4', 'relationship_term_version': '1'}
{'tid': '9470', 'annotation_tid': '306377', 'value': 'http://purl.obolibrary.org/obo/IAO_0000227', 'term_version': '5', 'annotation_term_version': '1', 'batch-elastic': 'True'}
{'tid': '9470', 'annotation_tid': '306378', 'value': 'BIRNLEX:534 is not possible with it being a subclass of an entity when it is really a superclass of that entity', 'term_version': '5', 'annotation_term_version': '1', 'batch-elastic': 'True'}
Out[61]:
[None]

In [ ]:


In [6]:
#sci.addTerms(data, crawl=True, _print=False)

In [4]:
'#'*100 ### LABEL DIFF WITH MESH


Out[4]:
'####################################################################################################'

In [3]:
ilx = open_pickle('/home/tmsincomb/Dropbox/ilx.pickle')

In [4]:
mesh = open_pickle('/home/tmsincomb/Dropbox/scidumps/umls/mesh/mesh2018.pickle')

In [28]:
type(mesh)


Out[28]:
rdflib.graph.Graph

In [ ]:
from rdflib import Graph, RDF, URIRef, Literal

In [5]:
%%time
g = Graph()
ilx_objs = {str(o).lower().strip():True for s,p,o in ilx.triples((None, None, None))}
#mesh_objs = {o for s,p,o in ilx.triples((None, None, None))}
for subj, pred, obj in mesh.triples((None, RDF.type, None)):
    for p, o in mesh.predicate_objects(subject=subj):
        #if set(str(o).lower().strip()) & ilx_objs:
        if ilx_objs.get(str(o).lower().strip()):
            g.add((subj, pred, obj))
            g.add((subj, p, o))
            
g.serialize('/home/tmsincomb/Desktop/same.ttl', format='turtle')


CPU times: user 2min 7s, sys: 227 ms, total: 2min 7s
Wall time: 2min 7s

In [5]:
#g = Graph()
#g.parse('/home/tmsincomb/Desktop/same.ttl', format='turtle')
g = open_pickle(Path.home()/'Desktop/same.pickle')

In [8]:
preds = {p for s,p,o in g.triples((None, None, None))}
for pred in preds:
    prefix, namespace, name = g.compute_qname(pred)
    #print(prefix, name)
preds


Out[8]:
{rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#abbreviation'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#altLabel'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#annotation'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#casn1_label'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#entryVersion'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#frequency'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#historyNote'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#lexicalTag'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#nlmClassificationNumber'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#note'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#onlineNote'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#prefLabel'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#previousIndexing'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#publicMeSHNote'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#registryNumber'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#relatedRegistryNumber'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#scopeNote'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#sortVersion'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#source'),
 rdflib.term.URIRef('http://id.nlm.nih.gov/mesh/vocab#thesaurusID'),
 rdflib.term.URIRef('http://www.w3.org/1999/02/22-rdf-syntax-ns#type'),
 rdflib.term.URIRef('http://www.w3.org/2000/01/rdf-schema#label')}

In [6]:
ilx_label2row = sql.get_label2row()

In [7]:
from ilxutils.mydifflib import ratio

In [16]:
%%time
### LABEL
#ilx_objs = {str(o).lower().strip():True for s,p,o in ilx.triples((None, None, None))}
lquery = """
    select ?subj ?label
    where {
        ?subj rdf:type ns1:Concept ; 
              rdfs:label ?label ;
    } 
"""
dquery = """
    select ?definition
    where {
        %s rdf:type ns1:Concept ; 
           ns1:scopeNote ?definition ;
    } 
""" 
label_count = 0
def_count = 0
common_labels = []
data = []

for binding in g.query(lquery):
    subj, label = binding
    ilx_rows = ilx_label2row.get(str(label).lower().strip())
    
    if not ilx_rows: continue
    label_count += 1
    
    bindings = mesh.query(dquery % ("<"+str(subj)+">")).bindings
    if not bindings: continue
    def_count += 1
    definition = str(bindings[0][rdflib.term.Variable('definition')])

    for row in ilx_rows:
        hit = False
        _ratio = 0
        if definition and row['definition']:
            _ratio = ratio(definition.lower().strip(), row['definition'].lower().strip())
            if _ratio > .7:
                hit = True
                
        data.append({
            'accept':'',
            'equal':hit,
            'def_ratio':_ratio,
            'ilxdef':row['definition'],
            'meshdef':definition,
            'ilxlabel':row['label'],
            'meshlabel':label,
        })

print('Labels found:', label_count)
print('Labels w/def:', def_count)


Labels found: 2231
Labels w/def: 1501
CPU times: user 7.04 s, sys: 4.08 ms, total: 7.05 s
Wall time: 7.04 s

In [17]:
cols = ['accept', 'equal', 'def_ratio', 'ilxdef', 'meshdef', 'ilxlabel', 'meshlabel']

In [18]:
diff = pd.DataFrame(data, columns=cols)